Skip to content

Commit d075dbf

Browse files
chore: release main
1 parent 505ee46 commit d075dbf

25 files changed

Lines changed: 131 additions & 31 deletions

File tree

.release-please-manifest.json

Lines changed: 7 additions & 7 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",
2+
"libs/client-sdk": "3.11.2",
3+
"libs/server-sent-events": "0.7.0",
44
"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",
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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
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-12)
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-sse-client bumped from 0.6.1 to 0.7.0
12+
313
## [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)
414

515

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: 3 additions & 3 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",
7+
"@launchdarkly/cpp-internal": "0.14.0",
88
"@launchdarkly/cpp-common": "1.11.0",
9-
"@launchdarkly/cpp-sse-client": "0.6.1"
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/internal/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
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-12)
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+
316
## [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)
417

518

libs/internal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@launchdarkly/cpp-internal",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "0.13.0",
4+
"version": "0.14.0",
55
"private": true,
66
"dependencies": {
77
"@launchdarkly/cpp-common": "1.11.0",
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,20 @@
11
# Changelog
2+
3+
## [0.2.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-dynamodb-source-v0.1.0...launchdarkly-cpp-server-dynamodb-source-v0.2.0) (2026-06-12)
4+
5+
6+
### Features
7+
8+
* add IBigSegmentStore interface + Redis and DynamoDB stores ([#536](https://github.com/launchdarkly/cpp-sdks/issues/536)) ([136aca7](https://github.com/launchdarkly/cpp-sdks/commit/136aca7ea0bc1a057db0bd7aac7838d2bc838d74))
9+
* 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))
10+
* implement DynamoDBDataSource + tests ([#534](https://github.com/launchdarkly/cpp-sdks/issues/534)) ([a0c2790](https://github.com/launchdarkly/cpp-sdks/commit/a0c2790b9d0e4c888ced8307222b0ed2371b5eb8))
11+
* scaffold libs/server-sdk-dynamodb-source ([#533](https://github.com/launchdarkly/cpp-sdks/issues/533)) ([df386c1](https://github.com/launchdarkly/cpp-sdks/commit/df386c1b837d915a0a1cab468b3b0da798d4b4ad))
12+
13+
14+
### Dependencies
15+
16+
* The following workspace dependencies were updated
17+
* dependencies
18+
* @launchdarkly/cpp-server bumped from 3.10.1 to 3.11.0
19+
20+
## Changelog

0 commit comments

Comments
 (0)