Skip to content

Commit 308523f

Browse files
chore: release main
1 parent accb379 commit 308523f

27 files changed

Lines changed: 157 additions & 36 deletions

File tree

.release-please-manifest.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"libs/client-sdk": "3.11.1",
3-
"libs/server-sent-events": "0.6.1",
4-
"libs/common": "1.11.0",
5-
"libs/internal": "0.13.0",
6-
"libs/server-sdk": "3.10.1",
7-
"libs/server-sdk-redis-source": "2.2.2",
8-
"libs/server-sdk-dynamodb-source": "0.1.0",
9-
"libs/server-sdk-otel": "0.1.1",
2+
"libs/client-sdk": "3.11.2",
3+
"libs/server-sent-events": "0.7.0",
4+
"libs/common": "1.12.0",
5+
"libs/internal": "0.14.0",
6+
"libs/server-sdk": "3.11.0",
7+
"libs/server-sdk-redis-source": "2.3.0",
8+
"libs/server-sdk-dynamodb-source": "0.2.0",
9+
"libs/server-sdk-otel": "0.1.2",
1010
"libs/networking": "0.2.0"
1111
}

libs/client-sdk/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [3.11.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.11.1...launchdarkly-cpp-client-v3.11.2) (2026-06-24)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @launchdarkly/cpp-internal bumped from 0.13.0 to 0.14.0
11+
* @launchdarkly/cpp-common bumped from 1.11.0 to 1.12.0
12+
* @launchdarkly/cpp-sse-client bumped from 0.6.1 to 0.7.0
13+
314
## [3.11.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.11.0...launchdarkly-cpp-client-v3.11.1) (2025-11-12)
415

516

libs/client-sdk/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.19)
66

77
project(
88
LaunchDarklyCPPClient
9-
VERSION 3.11.1 # {x-release-please-version}
9+
VERSION 3.11.2 # {x-release-please-version}
1010
DESCRIPTION "LaunchDarkly C++ Client SDK"
1111
LANGUAGES CXX C
1212
)

libs/client-sdk/include/launchdarkly/client_side/client.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ class Client : public IClient {
345345

346346
private:
347347
inline static char const* const kVersion =
348-
"3.11.1"; // {x-release-please-version}
348+
"3.11.2"; // {x-release-please-version}
349349
std::unique_ptr<IClient> client;
350350
};
351351

libs/client-sdk/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@launchdarkly/cpp-client",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "3.11.1",
4+
"version": "3.11.2",
55
"private": true,
66
"dependencies": {
7-
"@launchdarkly/cpp-internal": "0.13.0",
8-
"@launchdarkly/cpp-common": "1.11.0",
9-
"@launchdarkly/cpp-sse-client": "0.6.1"
7+
"@launchdarkly/cpp-internal": "0.14.0",
8+
"@launchdarkly/cpp-common": "1.12.0",
9+
"@launchdarkly/cpp-sse-client": "0.7.0"
1010
}
1111
}

libs/client-sdk/tests/client_c_bindings_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ TEST(ClientBindings, MinimalInstantiation) {
2727

2828
char const* version = LDClientSDK_Version();
2929
ASSERT_TRUE(version);
30-
ASSERT_STREQ(version, "3.11.1"); // {x-release-please-version}
30+
ASSERT_STREQ(version, "3.11.2"); // {x-release-please-version}
3131

3232
LDClientSDK_Free(sdk);
3333
}

libs/client-sdk/tests/client_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ TEST(ClientTest, ClientConstructedWithMinimalConfigAndContext) {
1616

1717
char const* version = client.Version();
1818
ASSERT_TRUE(version);
19-
ASSERT_STREQ(version, "3.11.1"); // {x-release-please-version}
19+
ASSERT_STREQ(version, "3.11.2"); // {x-release-please-version}
2020
}
2121

2222
TEST(ClientTest, AllFlagsIsEmpty) {

libs/common/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22

33

4+
## [1.12.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v1.11.0...launchdarkly-cpp-common-v1.12.0) (2026-06-24)
5+
6+
7+
### Features
8+
9+
* expose Big Segments via public Client and Config APIs ([#552](https://github.com/launchdarkly/cpp-sdks/issues/552)) ([c5fd239](https://github.com/launchdarkly/cpp-sdks/commit/c5fd23900c461e342fd4c2813c466565e799392a))
10+
411
## [1.11.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v1.10.0...launchdarkly-cpp-common-v1.11.0) (2025-11-03)
512

613

libs/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@launchdarkly/cpp-common",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "1.11.0",
4+
"version": "1.12.0",
55
"private": true
66
}

libs/internal/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## [0.14.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.13.0...launchdarkly-cpp-internal-v0.14.0) (2026-06-24)
4+
5+
6+
### Features
7+
8+
* add internal BigSegmentStoreWrapper with caching and status polling ([#543](https://github.com/launchdarkly/cpp-sdks/issues/543)) ([47fa5c2](https://github.com/launchdarkly/cpp-sdks/commit/47fa5c25054372fa3fca2b2149a0695866316e87))
9+
* orchestrator switches to FDv1 fallback on directive ([#539](https://github.com/launchdarkly/cpp-sdks/issues/539)) ([44f2522](https://github.com/launchdarkly/cpp-sdks/commit/44f2522d56227fd4d2d0b8f84592c5ef8e51a532))
10+
11+
12+
### Bug Fixes
13+
14+
* FDv2 fixes surfaced by v3 contract test harness ([#547](https://github.com/launchdarkly/cpp-sdks/issues/547)) ([e9c3c04](https://github.com/launchdarkly/cpp-sdks/commit/e9c3c04f83a5d16520c4790afa540262a17614cf))
15+
* handle FDv2 intentCode none as listening, reject unknown codes ([#555](https://github.com/launchdarkly/cpp-sdks/issues/555)) ([42e8ecd](https://github.com/launchdarkly/cpp-sdks/commit/42e8ecd3282279e7b7937bb31df75f94a324cfb3))
16+
17+
18+
### Dependencies
19+
20+
* The following workspace dependencies were updated
21+
* dependencies
22+
* @launchdarkly/cpp-common bumped from 1.11.0 to 1.12.0
23+
324
## [0.13.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.12.1...launchdarkly-cpp-internal-v0.13.0) (2025-11-03)
425

526

0 commit comments

Comments
 (0)