diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f31c3a854..5c82dc56a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,11 +1,11 @@ { - "libs/client-sdk": "3.11.1", - "libs/server-sent-events": "0.6.1", + "libs/client-sdk": "3.11.2", + "libs/server-sent-events": "0.7.0", "libs/common": "1.11.0", "libs/internal": "0.13.0", - "libs/server-sdk": "3.10.1", - "libs/server-sdk-redis-source": "2.2.2", - "libs/server-sdk-dynamodb-source": "0.1.0", - "libs/server-sdk-otel": "0.1.1", + "libs/server-sdk": "3.11.0", + "libs/server-sdk-redis-source": "2.3.0", + "libs/server-sdk-dynamodb-source": "0.2.0", + "libs/server-sdk-otel": "0.1.2", "libs/networking": "0.2.0" } diff --git a/libs/client-sdk/CHANGELOG.md b/libs/client-sdk/CHANGELOG.md index 5eaa66cfc..73fa24d24 100644 --- a/libs/client-sdk/CHANGELOG.md +++ b/libs/client-sdk/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [3.11.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.11.1...launchdarkly-cpp-client-v3.11.2) (2026-06-04) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-sse-client bumped from 0.6.1 to 0.7.0 + ## [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) diff --git a/libs/client-sdk/CMakeLists.txt b/libs/client-sdk/CMakeLists.txt index f6a4bd26b..22b1248c8 100644 --- a/libs/client-sdk/CMakeLists.txt +++ b/libs/client-sdk/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.19) project( LaunchDarklyCPPClient - VERSION 3.11.1 # {x-release-please-version} + VERSION 3.11.2 # {x-release-please-version} DESCRIPTION "LaunchDarkly C++ Client SDK" LANGUAGES CXX C ) diff --git a/libs/client-sdk/include/launchdarkly/client_side/client.hpp b/libs/client-sdk/include/launchdarkly/client_side/client.hpp index bcd71cf4a..914446fa5 100644 --- a/libs/client-sdk/include/launchdarkly/client_side/client.hpp +++ b/libs/client-sdk/include/launchdarkly/client_side/client.hpp @@ -345,7 +345,7 @@ class Client : public IClient { private: inline static char const* const kVersion = - "3.11.1"; // {x-release-please-version} + "3.11.2"; // {x-release-please-version} std::unique_ptr client; }; diff --git a/libs/client-sdk/package.json b/libs/client-sdk/package.json index f624cc6f3..34f98b0da 100644 --- a/libs/client-sdk/package.json +++ b/libs/client-sdk/package.json @@ -1,11 +1,11 @@ { "name": "@launchdarkly/cpp-client", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "3.11.1", + "version": "3.11.2", "private": true, "dependencies": { "@launchdarkly/cpp-internal": "0.13.0", "@launchdarkly/cpp-common": "1.11.0", - "@launchdarkly/cpp-sse-client": "0.6.1" + "@launchdarkly/cpp-sse-client": "0.7.0" } } diff --git a/libs/client-sdk/tests/client_c_bindings_test.cpp b/libs/client-sdk/tests/client_c_bindings_test.cpp index a40594466..a0adae434 100644 --- a/libs/client-sdk/tests/client_c_bindings_test.cpp +++ b/libs/client-sdk/tests/client_c_bindings_test.cpp @@ -27,7 +27,7 @@ TEST(ClientBindings, MinimalInstantiation) { char const* version = LDClientSDK_Version(); ASSERT_TRUE(version); - ASSERT_STREQ(version, "3.11.1"); // {x-release-please-version} + ASSERT_STREQ(version, "3.11.2"); // {x-release-please-version} LDClientSDK_Free(sdk); } diff --git a/libs/client-sdk/tests/client_test.cpp b/libs/client-sdk/tests/client_test.cpp index bbc197559..144540a6e 100644 --- a/libs/client-sdk/tests/client_test.cpp +++ b/libs/client-sdk/tests/client_test.cpp @@ -16,7 +16,7 @@ TEST(ClientTest, ClientConstructedWithMinimalConfigAndContext) { char const* version = client.Version(); ASSERT_TRUE(version); - ASSERT_STREQ(version, "3.11.1"); // {x-release-please-version} + ASSERT_STREQ(version, "3.11.2"); // {x-release-please-version} } TEST(ClientTest, AllFlagsIsEmpty) { diff --git a/libs/server-sdk-dynamodb-source/CHANGELOG.md b/libs/server-sdk-dynamodb-source/CHANGELOG.md index 825c32f0d..904e5aecb 100644 --- a/libs/server-sdk-dynamodb-source/CHANGELOG.md +++ b/libs/server-sdk-dynamodb-source/CHANGELOG.md @@ -1 +1,19 @@ # Changelog + +## [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-04) + + +### Features + +* 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)) +* implement DynamoDBDataSource + tests ([#534](https://github.com/launchdarkly/cpp-sdks/issues/534)) ([a0c2790](https://github.com/launchdarkly/cpp-sdks/commit/a0c2790b9d0e4c888ced8307222b0ed2371b5eb8)) +* scaffold libs/server-sdk-dynamodb-source ([#533](https://github.com/launchdarkly/cpp-sdks/issues/533)) ([df386c1](https://github.com/launchdarkly/cpp-sdks/commit/df386c1b837d915a0a1cab468b3b0da798d4b4ad)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-server bumped from 3.10.1 to 3.11.0 + +## Changelog diff --git a/libs/server-sdk-dynamodb-source/CMakeLists.txt b/libs/server-sdk-dynamodb-source/CMakeLists.txt index 5fc2eefec..e03b0d723 100644 --- a/libs/server-sdk-dynamodb-source/CMakeLists.txt +++ b/libs/server-sdk-dynamodb-source/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.19) project( LaunchDarklyCPPServerDynamoDBSource - VERSION 0.1.0 # {x-release-please-version} + VERSION 0.2.0 # {x-release-please-version} DESCRIPTION "LaunchDarkly C++ Server SDK DynamoDB Source" LANGUAGES CXX C ) diff --git a/libs/server-sdk-dynamodb-source/package.json b/libs/server-sdk-dynamodb-source/package.json index a37a36eb9..cd2badeec 100644 --- a/libs/server-sdk-dynamodb-source/package.json +++ b/libs/server-sdk-dynamodb-source/package.json @@ -1,9 +1,9 @@ { "name": "@launchdarkly/cpp-server-dynamodb-source", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "0.1.0", + "version": "0.2.0", "private": true, "dependencies": { - "@launchdarkly/cpp-server": "3.10.1" + "@launchdarkly/cpp-server": "3.11.0" } } diff --git a/libs/server-sdk-otel/CHANGELOG.md b/libs/server-sdk-otel/CHANGELOG.md index 3be8f8888..4c9626802 100644 --- a/libs/server-sdk-otel/CHANGELOG.md +++ b/libs/server-sdk-otel/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.1.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-otel-v0.1.1...launchdarkly-cpp-server-otel-v0.1.2) (2026-06-04) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-server bumped from 3.10.1 to 3.11.0 + ## [0.1.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-otel-v0.1.0...launchdarkly-cpp-server-otel-v0.1.1) (2025-11-12) diff --git a/libs/server-sdk-otel/package.json b/libs/server-sdk-otel/package.json index 942fda357..ba5be7dd4 100644 --- a/libs/server-sdk-otel/package.json +++ b/libs/server-sdk-otel/package.json @@ -1,9 +1,9 @@ { "name": "@launchdarkly/cpp-server-otel", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "0.1.1", + "version": "0.1.2", "private": true, "dependencies": { - "@launchdarkly/cpp-server": "3.10.1" + "@launchdarkly/cpp-server": "3.11.0" } } diff --git a/libs/server-sdk-redis-source/CHANGELOG.md b/libs/server-sdk-redis-source/CHANGELOG.md index a9dcebd9c..0fb80c3e4 100644 --- a/libs/server-sdk-redis-source/CHANGELOG.md +++ b/libs/server-sdk-redis-source/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [2.3.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.2.2...launchdarkly-cpp-server-redis-source-v2.3.0) (2026-06-04) + + +### Features + +* 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)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-server bumped from 3.10.1 to 3.11.0 + ## [2.2.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.2.1...launchdarkly-cpp-server-redis-source-v2.2.2) (2025-11-12) diff --git a/libs/server-sdk-redis-source/CMakeLists.txt b/libs/server-sdk-redis-source/CMakeLists.txt index ec8fc3b24..f97367e42 100644 --- a/libs/server-sdk-redis-source/CMakeLists.txt +++ b/libs/server-sdk-redis-source/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.19) project( LaunchDarklyCPPServerRedisSource - VERSION 2.2.2 # {x-release-please-version} + VERSION 2.3.0 # {x-release-please-version} DESCRIPTION "LaunchDarkly C++ Server SDK Redis Source" LANGUAGES CXX C ) diff --git a/libs/server-sdk-redis-source/package.json b/libs/server-sdk-redis-source/package.json index 8915011a8..845bc045f 100644 --- a/libs/server-sdk-redis-source/package.json +++ b/libs/server-sdk-redis-source/package.json @@ -1,9 +1,9 @@ { "name": "@launchdarkly/cpp-server-redis-source", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "2.2.2", + "version": "2.3.0", "private": true, "dependencies": { - "@launchdarkly/cpp-server": "3.10.1" + "@launchdarkly/cpp-server": "3.11.0" } } diff --git a/libs/server-sdk/CHANGELOG.md b/libs/server-sdk/CHANGELOG.md index 6f931446c..fdd34ff09 100644 --- a/libs/server-sdk/CHANGELOG.md +++ b/libs/server-sdk/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [3.11.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.10.1...launchdarkly-cpp-server-v3.11.0) (2026-06-04) + + +### Features + +* 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)) +* add internal BigSegmentsBuilder + config struct ([#541](https://github.com/launchdarkly/cpp-sdks/issues/541)) ([3c88c2a](https://github.com/launchdarkly/cpp-sdks/commit/3c88c2a7a1f4262ecbdf36b7039bffcbf452738a)) +* add server FDv2 data system orchestrator ([#529](https://github.com/launchdarkly/cpp-sdks/issues/529)) ([65e110f](https://github.com/launchdarkly/cpp-sdks/commit/65e110fe118aa9f291c68a7d2e63435797ddcf73)) +* add X-LaunchDarkly-Instance-Id header to server SDK (SDK-2353) ([#532](https://github.com/launchdarkly/cpp-sdks/issues/532)) ([fd0c761](https://github.com/launchdarkly/cpp-sdks/commit/fd0c76194542be654aa21b45c8aac3e84418b3ff)) +* propagate FDv1 fallback directive from FDv2 polling and streaming sources ([#538](https://github.com/launchdarkly/cpp-sdks/issues/538)) ([edd96fe](https://github.com/launchdarkly/cpp-sdks/commit/edd96fe54a18286b5066db040fed4a2135da240f)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-sse-client bumped from 0.6.1 to 0.7.0 + ## [3.10.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.10.0...launchdarkly-cpp-server-v3.10.1) (2025-11-12) diff --git a/libs/server-sdk/CMakeLists.txt b/libs/server-sdk/CMakeLists.txt index 09294fe75..cefb203ef 100644 --- a/libs/server-sdk/CMakeLists.txt +++ b/libs/server-sdk/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.19) project( LaunchDarklyCPPServer - VERSION 3.10.1 # {x-release-please-version} + VERSION 3.11.0 # {x-release-please-version} DESCRIPTION "LaunchDarkly C++ Server SDK" LANGUAGES CXX C ) diff --git a/libs/server-sdk/include/launchdarkly/server_side/client.hpp b/libs/server-sdk/include/launchdarkly/server_side/client.hpp index 9107d562e..d1c0d985b 100644 --- a/libs/server-sdk/include/launchdarkly/server_side/client.hpp +++ b/libs/server-sdk/include/launchdarkly/server_side/client.hpp @@ -658,7 +658,7 @@ class Client : public IClient { private: inline static char const* const kVersion = - "3.10.1"; // {x-release-please-version} + "3.11.0"; // {x-release-please-version} std::unique_ptr client; }; diff --git a/libs/server-sdk/package.json b/libs/server-sdk/package.json index 0c485aa08..0e71093db 100644 --- a/libs/server-sdk/package.json +++ b/libs/server-sdk/package.json @@ -1,11 +1,11 @@ { "name": "@launchdarkly/cpp-server", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "3.10.1", + "version": "3.11.0", "private": true, "dependencies": { "@launchdarkly/cpp-internal": "0.13.0", "@launchdarkly/cpp-common": "1.11.0", - "@launchdarkly/cpp-sse-client": "0.6.1" + "@launchdarkly/cpp-sse-client": "0.7.0" } } diff --git a/libs/server-sdk/tests/client_test.cpp b/libs/server-sdk/tests/client_test.cpp index b6be8ecdf..7e6493fd0 100644 --- a/libs/server-sdk/tests/client_test.cpp +++ b/libs/server-sdk/tests/client_test.cpp @@ -20,7 +20,7 @@ class ClientTest : public ::testing::Test { TEST_F(ClientTest, ClientConstructedWithMinimalConfigAndContextT) { char const* version = client_.Version(); ASSERT_TRUE(version); - ASSERT_STREQ(version, "3.10.1"); // {x-release-please-version} + ASSERT_STREQ(version, "3.11.0"); // {x-release-please-version} } TEST_F(ClientTest, BoolVariationDefaultPassesThrough) { diff --git a/libs/server-sdk/tests/server_c_bindings_test.cpp b/libs/server-sdk/tests/server_c_bindings_test.cpp index 447ccf522..36b0a2d6b 100644 --- a/libs/server-sdk/tests/server_c_bindings_test.cpp +++ b/libs/server-sdk/tests/server_c_bindings_test.cpp @@ -24,7 +24,7 @@ TEST(ClientBindings, MinimalInstantiation) { char const* version = LDServerSDK_Version(); ASSERT_TRUE(version); - ASSERT_STREQ(version, "3.10.1"); // {x-release-please-version} + ASSERT_STREQ(version, "3.11.0"); // {x-release-please-version} LDServerSDK_Free(sdk); } diff --git a/libs/server-sent-events/CHANGELOG.md b/libs/server-sent-events/CHANGELOG.md index 1a70d7dff..060eba909 100644 --- a/libs/server-sent-events/CHANGELOG.md +++ b/libs/server-sent-events/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.7.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-sse-client-v0.6.1...launchdarkly-cpp-sse-client-v0.7.0) (2026-06-04) + + +### Features + +* propagate FDv1 fallback directive from FDv2 polling and streaming sources ([#538](https://github.com/launchdarkly/cpp-sdks/issues/538)) ([edd96fe](https://github.com/launchdarkly/cpp-sdks/commit/edd96fe54a18286b5066db040fed4a2135da240f)) + ## [0.6.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-sse-client-v0.6.0...launchdarkly-cpp-sse-client-v0.6.1) (2025-11-12) diff --git a/libs/server-sent-events/package.json b/libs/server-sent-events/package.json index ecc766c17..558d9fba1 100644 --- a/libs/server-sent-events/package.json +++ b/libs/server-sent-events/package.json @@ -2,7 +2,7 @@ "name": "@launchdarkly/cpp-sse-client", "description": "This package.json exists for modeling dependencies for the release process.", "private": true, - "version": "0.6.1", + "version": "0.7.0", "dependencies": { "@launchdarkly/cpp-networking": "0.2.0" }