diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9a27cc97c..07361ab86 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,8 +1,8 @@ { - "libs/client-sdk": "3.6.4", - "libs/server-sent-events": "0.5.2", + "libs/client-sdk": "3.7.0", + "libs/server-sent-events": "0.5.3", "libs/common": "1.8.0", - "libs/internal": "0.8.2", - "libs/server-sdk": "3.6.0", - "libs/server-sdk-redis-source": "2.1.12" + "libs/internal": "0.8.3", + "libs/server-sdk": "3.6.1", + "libs/server-sdk-redis-source": "2.1.13" } diff --git a/libs/client-sdk/CHANGELOG.md b/libs/client-sdk/CHANGELOG.md index 3e70a94a9..daa5afde1 100644 --- a/libs/client-sdk/CHANGELOG.md +++ b/libs/client-sdk/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [3.7.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.6.4...launchdarkly-cpp-client-v3.7.0) (2024-10-01) + + +### Features + +* add client-side C binding for fetching data source state ([#442](https://github.com/launchdarkly/cpp-sdks/issues/442)) ([e8ca616](https://github.com/launchdarkly/cpp-sdks/commit/e8ca616001558216f81b72c7f20a162449e8c6b9)) + + +### Bug Fixes + +* client init state should not regress when data source interrupted ([#441](https://github.com/launchdarkly/cpp-sdks/issues/441)) ([4a7f1f9](https://github.com/launchdarkly/cpp-sdks/commit/4a7f1f90c9eafc307b50eb1ce125e7728246f19a)) +* improve handling of streaming error state changes/logging ([#439](https://github.com/launchdarkly/cpp-sdks/issues/439)) ([04e7e0e](https://github.com/launchdarkly/cpp-sdks/commit/04e7e0ef64b1933a63ad8d071a0a8f95ce666dc8)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-internal bumped from 0.8.2 to 0.8.3 + * launchdarkly-cpp-sse-client bumped from 0.5.2 to 0.5.3 + ## [3.6.4](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.6.3...launchdarkly-cpp-client-v3.6.4) (2024-09-04) diff --git a/libs/client-sdk/CMakeLists.txt b/libs/client-sdk/CMakeLists.txt index d9135b5b1..c1b18a7b8 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.6.4 # {x-release-please-version} + VERSION 3.7.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 c9e2bd77e..abfdb228c 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.6.4"; // {x-release-please-version} + "3.7.0"; // {x-release-please-version} std::unique_ptr client; }; diff --git a/libs/client-sdk/package.json b/libs/client-sdk/package.json index 77ece3d98..da9d2f309 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.6.4", + "version": "3.7.0", "private": true, "dependencies": { - "launchdarkly-cpp-internal": "0.8.2", + "launchdarkly-cpp-internal": "0.8.3", "launchdarkly-cpp-common": "1.8.0", - "launchdarkly-cpp-sse-client": "0.5.2" + "launchdarkly-cpp-sse-client": "0.5.3" } } diff --git a/libs/client-sdk/tests/client_c_bindings_test.cpp b/libs/client-sdk/tests/client_c_bindings_test.cpp index 82bb0e0f5..6c3a43765 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.6.4"); // {x-release-please-version} + ASSERT_STREQ(version, "3.7.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 b61fa527c..83af88c42 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.6.4"); // {x-release-please-version} + ASSERT_STREQ(version, "3.7.0"); // {x-release-please-version} } TEST(ClientTest, AllFlagsIsEmpty) { diff --git a/libs/internal/CHANGELOG.md b/libs/internal/CHANGELOG.md index db64cebea..ad1a89bb2 100644 --- a/libs/internal/CHANGELOG.md +++ b/libs/internal/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.8.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.8.2...launchdarkly-cpp-internal-v0.8.3) (2024-10-01) + + +### Bug Fixes + +* improve handling of streaming error state changes/logging ([#439](https://github.com/launchdarkly/cpp-sdks/issues/439)) ([04e7e0e](https://github.com/launchdarkly/cpp-sdks/commit/04e7e0ef64b1933a63ad8d071a0a8f95ce666dc8)) + ## [0.8.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.8.1...launchdarkly-cpp-internal-v0.8.2) (2024-09-04) diff --git a/libs/internal/package.json b/libs/internal/package.json index 40d2e494a..e05a59cd9 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.8.2", + "version": "0.8.3", "private": true, "dependencies": { "launchdarkly-cpp-common": "1.8.0" diff --git a/libs/server-sdk-redis-source/CHANGELOG.md b/libs/server-sdk-redis-source/CHANGELOG.md index 2688f7b32..d79d92a05 100644 --- a/libs/server-sdk-redis-source/CHANGELOG.md +++ b/libs/server-sdk-redis-source/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [2.1.13](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.1.12...launchdarkly-cpp-server-redis-source-v2.1.13) (2024-10-01) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-server bumped from 3.6.0 to 3.6.1 + ## [2.1.12](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.1.11...launchdarkly-cpp-server-redis-source-v2.1.12) (2024-09-04) diff --git a/libs/server-sdk-redis-source/CMakeLists.txt b/libs/server-sdk-redis-source/CMakeLists.txt index 44e25191e..ef2ddf247 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.12 # {x-release-please-version} + VERSION 2.1.13 # {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 5e8f97253..316e5bc62 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.12", + "version": "2.1.13", "private": true, "dependencies": { - "launchdarkly-cpp-server": "3.6.0" + "launchdarkly-cpp-server": "3.6.1" } } diff --git a/libs/server-sdk/CHANGELOG.md b/libs/server-sdk/CHANGELOG.md index b43bcd0bb..289636b64 100644 --- a/libs/server-sdk/CHANGELOG.md +++ b/libs/server-sdk/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [3.6.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.6.0...launchdarkly-cpp-server-v3.6.1) (2024-10-01) + + +### Bug Fixes + +* improve caching behavior of database integration ([#444](https://github.com/launchdarkly/cpp-sdks/issues/444)) ([5f47864](https://github.com/launchdarkly/cpp-sdks/commit/5f4786467888bdb15b10d342e12a1c7fb9094ca6)) +* improve handling of streaming error state changes/logging ([#439](https://github.com/launchdarkly/cpp-sdks/issues/439)) ([04e7e0e](https://github.com/launchdarkly/cpp-sdks/commit/04e7e0ef64b1933a63ad8d071a0a8f95ce666dc8)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-internal bumped from 0.8.2 to 0.8.3 + * launchdarkly-cpp-sse-client bumped from 0.5.2 to 0.5.3 + ## [3.6.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.5.3...launchdarkly-cpp-server-v3.6.0) (2024-09-04) diff --git a/libs/server-sdk/CMakeLists.txt b/libs/server-sdk/CMakeLists.txt index d68ecbaad..0b6bf9118 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.6.0 # {x-release-please-version} + VERSION 3.6.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 f6981433e..4bf1e135e 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.6.0"; // {x-release-please-version} + "3.6.1"; // {x-release-please-version} std::unique_ptr client; }; diff --git a/libs/server-sdk/package.json b/libs/server-sdk/package.json index e48ede981..2ce9496b0 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.6.0", + "version": "3.6.1", "private": true, "dependencies": { - "launchdarkly-cpp-internal": "0.8.2", + "launchdarkly-cpp-internal": "0.8.3", "launchdarkly-cpp-common": "1.8.0", - "launchdarkly-cpp-sse-client": "0.5.2" + "launchdarkly-cpp-sse-client": "0.5.3" } } diff --git a/libs/server-sdk/tests/client_test.cpp b/libs/server-sdk/tests/client_test.cpp index 52f2d9d06..2f89b9ac6 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.6.0"); // {x-release-please-version} + ASSERT_STREQ(version, "3.6.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 b103c31eb..ea369a466 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.6.0"); // {x-release-please-version} + ASSERT_STREQ(version, "3.6.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 cdc74a191..0a7ea4111 100644 --- a/libs/server-sent-events/CHANGELOG.md +++ b/libs/server-sent-events/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.5.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-sse-client-v0.5.2...launchdarkly-cpp-sse-client-v0.5.3) (2024-10-01) + + +### Bug Fixes + +* improve handling of streaming error state changes/logging ([#439](https://github.com/launchdarkly/cpp-sdks/issues/439)) ([04e7e0e](https://github.com/launchdarkly/cpp-sdks/commit/04e7e0ef64b1933a63ad8d071a0a8f95ce666dc8)) + ## [0.5.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-sse-client-v0.5.1...launchdarkly-cpp-sse-client-v0.5.2) (2024-07-25) diff --git a/libs/server-sent-events/package.json b/libs/server-sent-events/package.json index 874598761..059935102 100644 --- a/libs/server-sent-events/package.json +++ b/libs/server-sent-events/package.json @@ -2,6 +2,6 @@ "name": "launchdarkly-cpp-sse-client", "description": "This package.json exists for modeling dependencies for the release process.", "private": true, - "version": "0.5.2", + "version": "0.5.3", "dependencies": {} }