From 05b4327d99eef9bc4e7054e9dab318fe8a33f59b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 22:30:21 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 12 ++++++------ libs/client-sdk/CHANGELOG.md | 9 +++++++++ libs/client-sdk/CMakeLists.txt | 2 +- .../include/launchdarkly/client_side/client.hpp | 2 +- libs/client-sdk/package.json | 4 ++-- libs/client-sdk/tests/client_c_bindings_test.cpp | 2 +- libs/client-sdk/tests/client_test.cpp | 2 +- libs/internal/CHANGELOG.md | 7 +++++++ libs/internal/package.json | 2 +- libs/server-sdk-dynamodb-source/CHANGELOG.md | 15 +++++++++++++++ libs/server-sdk-dynamodb-source/CMakeLists.txt | 2 +- libs/server-sdk-dynamodb-source/package.json | 4 ++-- libs/server-sdk-otel/CHANGELOG.md | 9 +++++++++ libs/server-sdk-otel/package.json | 4 ++-- libs/server-sdk-redis-source/CHANGELOG.md | 16 ++++++++++++++++ libs/server-sdk-redis-source/CMakeLists.txt | 2 +- libs/server-sdk-redis-source/package.json | 4 ++-- libs/server-sdk/CHANGELOG.md | 14 ++++++++++++++ libs/server-sdk/CMakeLists.txt | 2 +- .../include/launchdarkly/server_side/client.hpp | 2 +- libs/server-sdk/package.json | 4 ++-- libs/server-sdk/tests/client_test.cpp | 2 +- libs/server-sdk/tests/server_c_bindings_test.cpp | 2 +- 23 files changed, 97 insertions(+), 27 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8497c7f6c..d792a55be 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,11 +1,11 @@ { - "libs/client-sdk": "3.11.2", + "libs/client-sdk": "3.11.3", "libs/server-sent-events": "0.7.0", "libs/common": "1.12.0", - "libs/internal": "0.14.0", - "libs/server-sdk": "3.12.0", - "libs/server-sdk-redis-source": "2.3.1", - "libs/server-sdk-dynamodb-source": "0.2.1", - "libs/server-sdk-otel": "0.1.3", + "libs/internal": "0.14.1", + "libs/server-sdk": "3.13.0", + "libs/server-sdk-redis-source": "2.4.0", + "libs/server-sdk-dynamodb-source": "0.3.0", + "libs/server-sdk-otel": "0.1.4", "libs/networking": "0.2.0" } diff --git a/libs/client-sdk/CHANGELOG.md b/libs/client-sdk/CHANGELOG.md index f3538b29a..9cb570b4a 100644 --- a/libs/client-sdk/CHANGELOG.md +++ b/libs/client-sdk/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [3.11.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.11.2...launchdarkly-cpp-client-v3.11.3) (2026-07-24) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-internal bumped from 0.14.0 to 0.14.1 + ## [3.11.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.11.1...launchdarkly-cpp-client-v3.11.2) (2026-06-29) diff --git a/libs/client-sdk/CMakeLists.txt b/libs/client-sdk/CMakeLists.txt index 22b1248c8..e2dcab7bf 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.2 # {x-release-please-version} + VERSION 3.11.3 # {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 914446fa5..7c0d9b681 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.2"; // {x-release-please-version} + "3.11.3"; // {x-release-please-version} std::unique_ptr client; }; diff --git a/libs/client-sdk/package.json b/libs/client-sdk/package.json index 26ab98aec..6f8304d57 100644 --- a/libs/client-sdk/package.json +++ b/libs/client-sdk/package.json @@ -1,10 +1,10 @@ { "name": "@launchdarkly/cpp-client", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "3.11.2", + "version": "3.11.3", "private": true, "dependencies": { - "@launchdarkly/cpp-internal": "0.14.0", + "@launchdarkly/cpp-internal": "0.14.1", "@launchdarkly/cpp-common": "1.12.0", "@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 a0adae434..11fb20b94 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.2"); // {x-release-please-version} + ASSERT_STREQ(version, "3.11.3"); // {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 144540a6e..5e91b1a92 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.2"); // {x-release-please-version} + ASSERT_STREQ(version, "3.11.3"); // {x-release-please-version} } TEST(ClientTest, AllFlagsIsEmpty) { diff --git a/libs/internal/CHANGELOG.md b/libs/internal/CHANGELOG.md index 500e446f6..60d87514c 100644 --- a/libs/internal/CHANGELOG.md +++ b/libs/internal/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.14.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.14.0...launchdarkly-cpp-internal-v0.14.1) (2026-07-24) + + +### Bug Fixes + +* Redact anonymous context attributes in server-side custom events ([#583](https://github.com/launchdarkly/cpp-sdks/issues/583)) ([55f7eaf](https://github.com/launchdarkly/cpp-sdks/commit/55f7eaf60ec7e615e0ba11b60323db3743217488)) + ## [0.14.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.13.0...launchdarkly-cpp-internal-v0.14.0) (2026-06-29) diff --git a/libs/internal/package.json b/libs/internal/package.json index f1c795555..12c8a4224 100644 --- a/libs/internal/package.json +++ b/libs/internal/package.json @@ -1,7 +1,7 @@ { "name": "@launchdarkly/cpp-internal", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "0.14.0", + "version": "0.14.1", "private": true, "dependencies": { "@launchdarkly/cpp-common": "1.12.0", diff --git a/libs/server-sdk-dynamodb-source/CHANGELOG.md b/libs/server-sdk-dynamodb-source/CHANGELOG.md index 115754e20..ff75166f5 100644 --- a/libs/server-sdk-dynamodb-source/CHANGELOG.md +++ b/libs/server-sdk-dynamodb-source/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.3.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-dynamodb-source-v0.2.1...launchdarkly-cpp-server-dynamodb-source-v0.3.0) (2026-07-24) + + +### Features + +* Add C bindings for DynamoDB Big Segments store ([#579](https://github.com/launchdarkly/cpp-sdks/issues/579)) ([fc6c075](https://github.com/launchdarkly/cpp-sdks/commit/fc6c0752ebb70d206b7d506d1cfcbcb8862d0a9f)) +* Add C bindings for DynamoDB LazyLoad source ([#576](https://github.com/launchdarkly/cpp-sdks/issues/576)) ([65efc69](https://github.com/launchdarkly/cpp-sdks/commit/65efc6956945ee7c13f287da1555d296c245be66)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-server bumped from 3.12.0 to 3.13.0 + ## [0.2.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-dynamodb-source-v0.2.0...launchdarkly-cpp-server-dynamodb-source-v0.2.1) (2026-07-01) diff --git a/libs/server-sdk-dynamodb-source/CMakeLists.txt b/libs/server-sdk-dynamodb-source/CMakeLists.txt index e34459e7e..bda56651e 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.2.1 # {x-release-please-version} + VERSION 0.3.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 29a560a27..7ee57f041 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.2.1", + "version": "0.3.0", "private": true, "dependencies": { - "@launchdarkly/cpp-server": "3.12.0" + "@launchdarkly/cpp-server": "3.13.0" } } diff --git a/libs/server-sdk-otel/CHANGELOG.md b/libs/server-sdk-otel/CHANGELOG.md index ec4b88daa..f11a464a1 100644 --- a/libs/server-sdk-otel/CHANGELOG.md +++ b/libs/server-sdk-otel/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.1.4](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-otel-v0.1.3...launchdarkly-cpp-server-otel-v0.1.4) (2026-07-24) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-server bumped from 3.12.0 to 3.13.0 + ## [0.1.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-otel-v0.1.2...launchdarkly-cpp-server-otel-v0.1.3) (2026-07-01) diff --git a/libs/server-sdk-otel/package.json b/libs/server-sdk-otel/package.json index f5466fdd0..73d1e749a 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.3", + "version": "0.1.4", "private": true, "dependencies": { - "@launchdarkly/cpp-server": "3.12.0" + "@launchdarkly/cpp-server": "3.13.0" } } diff --git a/libs/server-sdk-redis-source/CHANGELOG.md b/libs/server-sdk-redis-source/CHANGELOG.md index 81b034d9f..82a6832ad 100644 --- a/libs/server-sdk-redis-source/CHANGELOG.md +++ b/libs/server-sdk-redis-source/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [2.4.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.3.1...launchdarkly-cpp-server-redis-source-v2.4.0) (2026-07-24) + + +### Features + +* Add C bindings for DynamoDB Big Segments store ([#579](https://github.com/launchdarkly/cpp-sdks/issues/579)) ([fc6c075](https://github.com/launchdarkly/cpp-sdks/commit/fc6c0752ebb70d206b7d506d1cfcbcb8862d0a9f)) +* Add C bindings for DynamoDB LazyLoad source ([#576](https://github.com/launchdarkly/cpp-sdks/issues/576)) ([65efc69](https://github.com/launchdarkly/cpp-sdks/commit/65efc6956945ee7c13f287da1555d296c245be66)) +* Add C bindings for Redis Big Segments store ([#574](https://github.com/launchdarkly/cpp-sdks/issues/574)) ([52a1898](https://github.com/launchdarkly/cpp-sdks/commit/52a1898621bcc65caab08c0e1f46b02655c5e5f3)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-server bumped from 3.12.0 to 3.13.0 + ## [2.3.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.3.0...launchdarkly-cpp-server-redis-source-v2.3.1) (2026-07-01) diff --git a/libs/server-sdk-redis-source/CMakeLists.txt b/libs/server-sdk-redis-source/CMakeLists.txt index cedf84b54..7cb70d8f7 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.3.1 # {x-release-please-version} + VERSION 2.4.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 3b9819401..d4fabf106 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.3.1", + "version": "2.4.0", "private": true, "dependencies": { - "@launchdarkly/cpp-server": "3.12.0" + "@launchdarkly/cpp-server": "3.13.0" } } diff --git a/libs/server-sdk/CHANGELOG.md b/libs/server-sdk/CHANGELOG.md index 3e639504c..379d7e14c 100644 --- a/libs/server-sdk/CHANGELOG.md +++ b/libs/server-sdk/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [3.13.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.12.0...launchdarkly-cpp-server-v3.13.0) (2026-07-24) + + +### Features + +* Add C bindings for Big Segments ([#573](https://github.com/launchdarkly/cpp-sdks/issues/573)) ([948878e](https://github.com/launchdarkly/cpp-sdks/commit/948878e376d2d4984775282bf32e4473ea976785)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-internal bumped from 0.14.0 to 0.14.1 + ## [3.12.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.11.0...launchdarkly-cpp-server-v3.12.0) (2026-07-01) diff --git a/libs/server-sdk/CMakeLists.txt b/libs/server-sdk/CMakeLists.txt index 31ba8834b..cef1c4391 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.12.0 # {x-release-please-version} + VERSION 3.13.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 e3ca42f5a..3a8e37568 100644 --- a/libs/server-sdk/include/launchdarkly/server_side/client.hpp +++ b/libs/server-sdk/include/launchdarkly/server_side/client.hpp @@ -671,7 +671,7 @@ class Client : public IClient { private: inline static char const* const kVersion = - "3.12.0"; // {x-release-please-version} + "3.13.0"; // {x-release-please-version} std::unique_ptr client; }; diff --git a/libs/server-sdk/package.json b/libs/server-sdk/package.json index f2c85e001..26687ec1f 100644 --- a/libs/server-sdk/package.json +++ b/libs/server-sdk/package.json @@ -1,10 +1,10 @@ { "name": "@launchdarkly/cpp-server", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "3.12.0", + "version": "3.13.0", "private": true, "dependencies": { - "@launchdarkly/cpp-internal": "0.14.0", + "@launchdarkly/cpp-internal": "0.14.1", "@launchdarkly/cpp-common": "1.12.0", "@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 dfa1ad06a..01d6e9f12 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.12.0"); // {x-release-please-version} + ASSERT_STREQ(version, "3.13.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 1a4b12369..b30de0564 100644 --- a/libs/server-sdk/tests/server_c_bindings_test.cpp +++ b/libs/server-sdk/tests/server_c_bindings_test.cpp @@ -43,7 +43,7 @@ TEST(ClientBindings, MinimalInstantiation) { char const* version = LDServerSDK_Version(); ASSERT_TRUE(version); - ASSERT_STREQ(version, "3.12.0"); // {x-release-please-version} + ASSERT_STREQ(version, "3.13.0"); // {x-release-please-version} LDServerSDK_Free(sdk); }