diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3700d8a40..82f02d976 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,8 +1,8 @@ { - "libs/client-sdk": "3.8.2", + "libs/client-sdk": "3.9.0", "libs/server-sent-events": "0.5.5", - "libs/common": "1.9.0", - "libs/internal": "0.10.1", - "libs/server-sdk": "3.8.1", - "libs/server-sdk-redis-source": "2.1.17" + "libs/common": "1.10.0", + "libs/internal": "0.11.0", + "libs/server-sdk": "3.8.2", + "libs/server-sdk-redis-source": "2.1.18" } diff --git a/libs/client-sdk/CHANGELOG.md b/libs/client-sdk/CHANGELOG.md index 174215170..48d13d4ce 100644 --- a/libs/client-sdk/CHANGELOG.md +++ b/libs/client-sdk/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [3.9.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.8.2...launchdarkly-cpp-client-v3.9.0) (2025-05-02) + + +### Features + +* generate events for flag prerequisites ([#465](https://github.com/launchdarkly/cpp-sdks/issues/465)) ([30378a1](https://github.com/launchdarkly/cpp-sdks/commit/30378a10b97ac46591ffd6fd3db43be14a60fad6)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-internal bumped from 0.10.1 to 0.11.0 + * launchdarkly-cpp-common bumped from 1.9.0 to 1.10.0 + ## [3.8.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.8.1...launchdarkly-cpp-client-v3.8.2) (2025-01-28) diff --git a/libs/client-sdk/CMakeLists.txt b/libs/client-sdk/CMakeLists.txt index 1cf417275..410ee0aad 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.8.2 # {x-release-please-version} + VERSION 3.9.0 # {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 78b7cd522..24b02149d 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.8.2"; // {x-release-please-version} + "3.9.0"; // {x-release-please-version} std::unique_ptr client; }; diff --git a/libs/client-sdk/package.json b/libs/client-sdk/package.json index d96b3263b..ea6352fb5 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.8.2", + "version": "3.9.0", "private": true, "dependencies": { - "launchdarkly-cpp-internal": "0.10.1", - "launchdarkly-cpp-common": "1.9.0", + "launchdarkly-cpp-internal": "0.11.0", + "launchdarkly-cpp-common": "1.10.0", "launchdarkly-cpp-sse-client": "0.5.5" } } diff --git a/libs/client-sdk/tests/client_c_bindings_test.cpp b/libs/client-sdk/tests/client_c_bindings_test.cpp index 5dba3741b..ccf925043 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.8.2"); // {x-release-please-version} + ASSERT_STREQ(version, "3.9.0"); // {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 f00003d48..15854d256 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.8.2"); // {x-release-please-version} + ASSERT_STREQ(version, "3.9.0"); // {x-release-please-version} } TEST(ClientTest, AllFlagsIsEmpty) { diff --git a/libs/common/CHANGELOG.md b/libs/common/CHANGELOG.md index 0e8dc8482..59f8eac65 100644 --- a/libs/common/CHANGELOG.md +++ b/libs/common/CHANGELOG.md @@ -1,6 +1,18 @@ # Changelog +## [1.10.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v1.9.0...launchdarkly-cpp-common-v1.10.0) (2025-05-02) + + +### Features + +* generate events for flag prerequisites ([#465](https://github.com/launchdarkly/cpp-sdks/issues/465)) ([30378a1](https://github.com/launchdarkly/cpp-sdks/commit/30378a10b97ac46591ffd6fd3db43be14a60fad6)) + + +### Bug Fixes + +* handle setting protected/type-enforced attributes correctly ([#433](https://github.com/launchdarkly/cpp-sdks/issues/433)) ([d73de43](https://github.com/launchdarkly/cpp-sdks/commit/d73de432867a696be4fd7604eea21235ea9a6a9f)) + ## [1.9.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v1.8.0...launchdarkly-cpp-common-v1.9.0) (2024-10-30) diff --git a/libs/common/package.json b/libs/common/package.json index 9744b96fe..ee4b149dd 100644 --- a/libs/common/package.json +++ b/libs/common/package.json @@ -1,6 +1,6 @@ { "name": "launchdarkly-cpp-common", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "1.9.0", + "version": "1.10.0", "private": true } diff --git a/libs/internal/CHANGELOG.md b/libs/internal/CHANGELOG.md index a2e13f15c..d4fba8f8d 100644 --- a/libs/internal/CHANGELOG.md +++ b/libs/internal/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.11.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.10.1...launchdarkly-cpp-internal-v0.11.0) (2025-05-02) + + +### Features + +* generate events for flag prerequisites ([#465](https://github.com/launchdarkly/cpp-sdks/issues/465)) ([30378a1](https://github.com/launchdarkly/cpp-sdks/commit/30378a10b97ac46591ffd6fd3db43be14a60fad6)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-common bumped from 1.9.0 to 1.10.0 + ## [0.10.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.10.0...launchdarkly-cpp-internal-v0.10.1) (2025-01-28) diff --git a/libs/internal/package.json b/libs/internal/package.json index d3c02a16f..a07380df2 100644 --- a/libs/internal/package.json +++ b/libs/internal/package.json @@ -1,9 +1,9 @@ { "name": "launchdarkly-cpp-internal", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "0.10.1", + "version": "0.11.0", "private": true, "dependencies": { - "launchdarkly-cpp-common": "1.9.0" + "launchdarkly-cpp-common": "1.10.0" } } diff --git a/libs/server-sdk-redis-source/CHANGELOG.md b/libs/server-sdk-redis-source/CHANGELOG.md index e9f22ac82..27a551429 100644 --- a/libs/server-sdk-redis-source/CHANGELOG.md +++ b/libs/server-sdk-redis-source/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [2.1.18](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.1.17...launchdarkly-cpp-server-redis-source-v2.1.18) (2025-05-02) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-server bumped from 3.8.1 to 3.8.2 + ## [2.1.17](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.1.16...launchdarkly-cpp-server-redis-source-v2.1.17) (2025-01-28) diff --git a/libs/server-sdk-redis-source/CMakeLists.txt b/libs/server-sdk-redis-source/CMakeLists.txt index a9c046bf0..265dd3169 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.1.17 # {x-release-please-version} + VERSION 2.1.18 # {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 57276d5a9..5309bed95 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.1.17", + "version": "2.1.18", "private": true, "dependencies": { - "launchdarkly-cpp-server": "3.8.1" + "launchdarkly-cpp-server": "3.8.2" } } diff --git a/libs/server-sdk/CHANGELOG.md b/libs/server-sdk/CHANGELOG.md index b23ba61ed..c9a76f3aa 100644 --- a/libs/server-sdk/CHANGELOG.md +++ b/libs/server-sdk/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [3.8.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.8.1...launchdarkly-cpp-server-v3.8.2) (2025-05-02) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-internal bumped from 0.10.1 to 0.11.0 + * launchdarkly-cpp-common bumped from 1.9.0 to 1.10.0 + ## [3.8.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.8.0...launchdarkly-cpp-server-v3.8.1) (2025-01-28) diff --git a/libs/server-sdk/CMakeLists.txt b/libs/server-sdk/CMakeLists.txt index 96c3313c8..597fce467 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.8.1 # {x-release-please-version} + VERSION 3.8.2 # {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 f04d53cc4..75ba06d4e 100644 --- a/libs/server-sdk/include/launchdarkly/server_side/client.hpp +++ b/libs/server-sdk/include/launchdarkly/server_side/client.hpp @@ -360,7 +360,7 @@ class Client : public IClient { private: inline static char const* const kVersion = - "3.8.1"; // {x-release-please-version} + "3.8.2"; // {x-release-please-version} std::unique_ptr client; }; diff --git a/libs/server-sdk/package.json b/libs/server-sdk/package.json index c514ebca4..e5fc860aa 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.8.1", + "version": "3.8.2", "private": true, "dependencies": { - "launchdarkly-cpp-internal": "0.10.1", - "launchdarkly-cpp-common": "1.9.0", + "launchdarkly-cpp-internal": "0.11.0", + "launchdarkly-cpp-common": "1.10.0", "launchdarkly-cpp-sse-client": "0.5.5" } } diff --git a/libs/server-sdk/tests/client_test.cpp b/libs/server-sdk/tests/client_test.cpp index 1ab341f49..4c800a6ae 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.8.1"); // {x-release-please-version} + ASSERT_STREQ(version, "3.8.2"); // {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 7bd7daac0..e881cbd58 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.8.1"); // {x-release-please-version} + ASSERT_STREQ(version, "3.8.2"); // {x-release-please-version} LDServerSDK_Free(sdk); }