From d75af83e4bb612d4b9447f691ea04482e54c034e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2026 17:57:18 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 16 ++++++++-------- libs/client-sdk/CHANGELOG.md | 15 +++++++++++++++ libs/client-sdk/CMakeLists.txt | 2 +- .../include/launchdarkly/client_side/client.hpp | 2 +- libs/client-sdk/package.json | 6 +++--- libs/client-sdk/tests/client_c_bindings_test.cpp | 2 +- libs/client-sdk/tests/client_test.cpp | 2 +- libs/internal/CHANGELOG.md | 9 +++++++++ libs/internal/package.json | 4 ++-- libs/networking/CHANGELOG.md | 7 +++++++ libs/networking/package.json | 2 +- libs/server-sdk-dynamodb-source/CHANGELOG.md | 9 +++++++++ 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 | 9 +++++++++ libs/server-sdk-redis-source/CMakeLists.txt | 2 +- libs/server-sdk-redis-source/package.json | 4 ++-- libs/server-sdk/CHANGELOG.md | 10 ++++++++++ libs/server-sdk/CMakeLists.txt | 2 +- .../include/launchdarkly/server_side/client.hpp | 2 +- libs/server-sdk/package.json | 6 +++--- libs/server-sdk/tests/client_test.cpp | 2 +- libs/server-sdk/tests/server_c_bindings_test.cpp | 2 +- libs/server-sent-events/CHANGELOG.md | 9 +++++++++ libs/server-sent-events/package.json | 4 ++-- 27 files changed, 112 insertions(+), 35 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d792a55be..554ab002c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,11 +1,11 @@ { - "libs/client-sdk": "3.11.3", - "libs/server-sent-events": "0.7.0", + "libs/client-sdk": "3.11.4", + "libs/server-sent-events": "0.7.1", "libs/common": "1.12.0", - "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" + "libs/internal": "0.14.2", + "libs/server-sdk": "3.13.1", + "libs/server-sdk-redis-source": "2.4.1", + "libs/server-sdk-dynamodb-source": "0.3.1", + "libs/server-sdk-otel": "0.1.5", + "libs/networking": "0.2.1" } diff --git a/libs/client-sdk/CHANGELOG.md b/libs/client-sdk/CHANGELOG.md index 9cb570b4a..e4630f4f9 100644 --- a/libs/client-sdk/CHANGELOG.md +++ b/libs/client-sdk/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [3.11.4](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.11.3...launchdarkly-cpp-client-v3.11.4) (2026-08-04) + + +### Bug Fixes + +* add defensive cycle guard to prerequisite evaluation ([#582](https://github.com/launchdarkly/cpp-sdks/issues/582)) ([c43057c](https://github.com/launchdarkly/cpp-sdks/commit/c43057c7b2d3578959d97198a6a7a5a354077527)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-internal bumped from 0.14.1 to 0.14.2 + * @launchdarkly/cpp-sse-client bumped from 0.7.0 to 0.7.1 + ## [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) diff --git a/libs/client-sdk/CMakeLists.txt b/libs/client-sdk/CMakeLists.txt index e2dcab7bf..07f765a8d 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.3 # {x-release-please-version} + VERSION 3.11.4 # {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 7c0d9b681..f651fa2a1 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.3"; // {x-release-please-version} + "3.11.4"; // {x-release-please-version} std::unique_ptr client; }; diff --git a/libs/client-sdk/package.json b/libs/client-sdk/package.json index 6f8304d57..1eb616a7c 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.3", + "version": "3.11.4", "private": true, "dependencies": { - "@launchdarkly/cpp-internal": "0.14.1", + "@launchdarkly/cpp-internal": "0.14.2", "@launchdarkly/cpp-common": "1.12.0", - "@launchdarkly/cpp-sse-client": "0.7.0" + "@launchdarkly/cpp-sse-client": "0.7.1" } } diff --git a/libs/client-sdk/tests/client_c_bindings_test.cpp b/libs/client-sdk/tests/client_c_bindings_test.cpp index 11fb20b94..ac89bb3e7 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.3"); // {x-release-please-version} + ASSERT_STREQ(version, "3.11.4"); // {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 5e91b1a92..093d14cf9 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.3"); // {x-release-please-version} + ASSERT_STREQ(version, "3.11.4"); // {x-release-please-version} } TEST(ClientTest, AllFlagsIsEmpty) { diff --git a/libs/internal/CHANGELOG.md b/libs/internal/CHANGELOG.md index 60d87514c..59dc3fd25 100644 --- a/libs/internal/CHANGELOG.md +++ b/libs/internal/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.14.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.14.1...launchdarkly-cpp-internal-v0.14.2) (2026-08-04) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-networking bumped from 0.2.0 to 0.2.1 + ## [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) diff --git a/libs/internal/package.json b/libs/internal/package.json index 12c8a4224..e74b7953a 100644 --- a/libs/internal/package.json +++ b/libs/internal/package.json @@ -1,10 +1,10 @@ { "name": "@launchdarkly/cpp-internal", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "0.14.1", + "version": "0.14.2", "private": true, "dependencies": { "@launchdarkly/cpp-common": "1.12.0", - "@launchdarkly/cpp-networking": "0.2.0" + "@launchdarkly/cpp-networking": "0.2.1" } } diff --git a/libs/networking/CHANGELOG.md b/libs/networking/CHANGELOG.md index b8d75a972..4e1d74d88 100644 --- a/libs/networking/CHANGELOG.md +++ b/libs/networking/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-networking-v0.2.0...launchdarkly-cpp-networking-v0.2.1) (2026-08-04) + + +### Bug Fixes + +* Disable Foxy separate compilation to avoid Boost.Asio ODR crash ([#591](https://github.com/launchdarkly/cpp-sdks/issues/591)) ([7332a7a](https://github.com/launchdarkly/cpp-sdks/commit/7332a7abb03614dc21a1d9f6a828f5706cb27e48)) + ## [0.2.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-networking-v0.1.0...launchdarkly-cpp-networking-v0.2.0) (2025-11-03) diff --git a/libs/networking/package.json b/libs/networking/package.json index a4b87a6a4..71d268eed 100644 --- a/libs/networking/package.json +++ b/libs/networking/package.json @@ -1,6 +1,6 @@ { "name": "@launchdarkly/cpp-networking", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "0.2.0", + "version": "0.2.1", "private": true } diff --git a/libs/server-sdk-dynamodb-source/CHANGELOG.md b/libs/server-sdk-dynamodb-source/CHANGELOG.md index ff75166f5..0abbabda6 100644 --- a/libs/server-sdk-dynamodb-source/CHANGELOG.md +++ b/libs/server-sdk-dynamodb-source/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.3.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-dynamodb-source-v0.3.0...launchdarkly-cpp-server-dynamodb-source-v0.3.1) (2026-08-04) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-server bumped from 3.13.0 to 3.13.1 + ## [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) diff --git a/libs/server-sdk-dynamodb-source/CMakeLists.txt b/libs/server-sdk-dynamodb-source/CMakeLists.txt index bda56651e..26ba88630 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.3.0 # {x-release-please-version} + VERSION 0.3.1 # {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 7ee57f041..9dc91678b 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.3.0", + "version": "0.3.1", "private": true, "dependencies": { - "@launchdarkly/cpp-server": "3.13.0" + "@launchdarkly/cpp-server": "3.13.1" } } diff --git a/libs/server-sdk-otel/CHANGELOG.md b/libs/server-sdk-otel/CHANGELOG.md index f11a464a1..ad4af182c 100644 --- a/libs/server-sdk-otel/CHANGELOG.md +++ b/libs/server-sdk-otel/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.1.5](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-otel-v0.1.4...launchdarkly-cpp-server-otel-v0.1.5) (2026-08-04) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-server bumped from 3.13.0 to 3.13.1 + ## [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) diff --git a/libs/server-sdk-otel/package.json b/libs/server-sdk-otel/package.json index 73d1e749a..d76e98b73 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.4", + "version": "0.1.5", "private": true, "dependencies": { - "@launchdarkly/cpp-server": "3.13.0" + "@launchdarkly/cpp-server": "3.13.1" } } diff --git a/libs/server-sdk-redis-source/CHANGELOG.md b/libs/server-sdk-redis-source/CHANGELOG.md index 82a6832ad..7cb93bcf7 100644 --- a/libs/server-sdk-redis-source/CHANGELOG.md +++ b/libs/server-sdk-redis-source/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [2.4.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.4.0...launchdarkly-cpp-server-redis-source-v2.4.1) (2026-08-04) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-server bumped from 3.13.0 to 3.13.1 + ## [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) diff --git a/libs/server-sdk-redis-source/CMakeLists.txt b/libs/server-sdk-redis-source/CMakeLists.txt index 7cb70d8f7..5fb36bf87 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.4.0 # {x-release-please-version} + VERSION 2.4.1 # {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 d4fabf106..a6e29c178 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.4.0", + "version": "2.4.1", "private": true, "dependencies": { - "@launchdarkly/cpp-server": "3.13.0" + "@launchdarkly/cpp-server": "3.13.1" } } diff --git a/libs/server-sdk/CHANGELOG.md b/libs/server-sdk/CHANGELOG.md index 379d7e14c..01b780ca2 100644 --- a/libs/server-sdk/CHANGELOG.md +++ b/libs/server-sdk/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [3.13.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.13.0...launchdarkly-cpp-server-v3.13.1) (2026-08-04) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-internal bumped from 0.14.1 to 0.14.2 + * @launchdarkly/cpp-sse-client bumped from 0.7.0 to 0.7.1 + ## [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) diff --git a/libs/server-sdk/CMakeLists.txt b/libs/server-sdk/CMakeLists.txt index cef1c4391..a54893869 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.13.0 # {x-release-please-version} + VERSION 3.13.1 # {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 3a8e37568..69a54d8d3 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.13.0"; // {x-release-please-version} + "3.13.1"; // {x-release-please-version} std::unique_ptr client; }; diff --git a/libs/server-sdk/package.json b/libs/server-sdk/package.json index 26687ec1f..5047aece6 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.13.0", + "version": "3.13.1", "private": true, "dependencies": { - "@launchdarkly/cpp-internal": "0.14.1", + "@launchdarkly/cpp-internal": "0.14.2", "@launchdarkly/cpp-common": "1.12.0", - "@launchdarkly/cpp-sse-client": "0.7.0" + "@launchdarkly/cpp-sse-client": "0.7.1" } } diff --git a/libs/server-sdk/tests/client_test.cpp b/libs/server-sdk/tests/client_test.cpp index 01d6e9f12..46366f23f 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.13.0"); // {x-release-please-version} + ASSERT_STREQ(version, "3.13.1"); // {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 b30de0564..a7e994eca 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.13.0"); // {x-release-please-version} + ASSERT_STREQ(version, "3.13.1"); // {x-release-please-version} LDServerSDK_Free(sdk); } diff --git a/libs/server-sent-events/CHANGELOG.md b/libs/server-sent-events/CHANGELOG.md index 40b26e722..8081df4db 100644 --- a/libs/server-sent-events/CHANGELOG.md +++ b/libs/server-sent-events/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.7.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-sse-client-v0.7.0...launchdarkly-cpp-sse-client-v0.7.1) (2026-08-04) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @launchdarkly/cpp-networking bumped from 0.2.0 to 0.2.1 + ## [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-29) diff --git a/libs/server-sent-events/package.json b/libs/server-sent-events/package.json index 558d9fba1..5f83d6632 100644 --- a/libs/server-sent-events/package.json +++ b/libs/server-sent-events/package.json @@ -2,8 +2,8 @@ "name": "@launchdarkly/cpp-sse-client", "description": "This package.json exists for modeling dependencies for the release process.", "private": true, - "version": "0.7.0", + "version": "0.7.1", "dependencies": { - "@launchdarkly/cpp-networking": "0.2.0" + "@launchdarkly/cpp-networking": "0.2.1" } }