From b5355279e36e57f90f79ebd655373930645404cd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 17:25:25 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 10 +++++----- 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/common/CHANGELOG.md | 7 +++++++ libs/common/package.json | 2 +- libs/internal/CHANGELOG.md | 14 ++++++++++++++ libs/internal/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 | 15 +++++++++++++++ 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 +- 20 files changed, 85 insertions(+), 25 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5395ad7b7..b455adec1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,8 +1,8 @@ { - "libs/client-sdk": "3.7.1", + "libs/client-sdk": "3.8.0", "libs/server-sent-events": "0.5.4", - "libs/common": "1.8.0", - "libs/internal": "0.8.3", - "libs/server-sdk": "3.6.2", - "libs/server-sdk-redis-source": "2.1.14" + "libs/common": "1.9.0", + "libs/internal": "0.9.0", + "libs/server-sdk": "3.7.0", + "libs/server-sdk-redis-source": "2.1.15" } diff --git a/libs/client-sdk/CHANGELOG.md b/libs/client-sdk/CHANGELOG.md index a8e18adf8..41c6b4d34 100644 --- a/libs/client-sdk/CHANGELOG.md +++ b/libs/client-sdk/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [3.8.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.7.1...launchdarkly-cpp-client-v3.8.0) (2024-10-30) + + +### Features + +* add LDValue_SerializeJSON C binding ([90eb880](https://github.com/launchdarkly/cpp-sdks/commit/90eb880b7b769ba491c9da5734f5db7eda31f15e)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-internal bumped from 0.8.3 to 0.9.0 + * launchdarkly-cpp-common bumped from 1.8.0 to 1.9.0 + ## [3.7.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.7.0...launchdarkly-cpp-client-v3.7.1) (2024-10-08) diff --git a/libs/client-sdk/CMakeLists.txt b/libs/client-sdk/CMakeLists.txt index 65a1fe802..0eb10913f 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.7.1 # {x-release-please-version} + VERSION 3.8.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 04b179454..1872a6255 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.7.1"; // {x-release-please-version} + "3.8.0"; // {x-release-please-version} std::unique_ptr client; }; diff --git a/libs/client-sdk/package.json b/libs/client-sdk/package.json index e758898b2..fa47dd358 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.7.1", + "version": "3.8.0", "private": true, "dependencies": { - "launchdarkly-cpp-internal": "0.8.3", - "launchdarkly-cpp-common": "1.8.0", + "launchdarkly-cpp-internal": "0.9.0", + "launchdarkly-cpp-common": "1.9.0", "launchdarkly-cpp-sse-client": "0.5.4" } } diff --git a/libs/client-sdk/tests/client_c_bindings_test.cpp b/libs/client-sdk/tests/client_c_bindings_test.cpp index b9895ad0a..a3aed786e 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.7.1"); // {x-release-please-version} + ASSERT_STREQ(version, "3.8.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 aa1c1277a..8a04e5d91 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.7.1"); // {x-release-please-version} + ASSERT_STREQ(version, "3.8.0"); // {x-release-please-version} } TEST(ClientTest, AllFlagsIsEmpty) { diff --git a/libs/common/CHANGELOG.md b/libs/common/CHANGELOG.md index c7ee49acc..0e8dc8482 100644 --- a/libs/common/CHANGELOG.md +++ b/libs/common/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog +## [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) + + +### Features + +* add LDValue_SerializeJSON C binding ([90eb880](https://github.com/launchdarkly/cpp-sdks/commit/90eb880b7b769ba491c9da5734f5db7eda31f15e)) + ## [1.8.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v1.7.0...launchdarkly-cpp-common-v1.8.0) (2024-09-04) diff --git a/libs/common/package.json b/libs/common/package.json index a9c7e416f..9744b96fe 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.8.0", + "version": "1.9.0", "private": true } diff --git a/libs/internal/CHANGELOG.md b/libs/internal/CHANGELOG.md index ad1a89bb2..0771dd4c7 100644 --- a/libs/internal/CHANGELOG.md +++ b/libs/internal/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.9.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.8.3...launchdarkly-cpp-internal-v0.9.0) (2024-10-30) + + +### Features + +* add LDValue_SerializeJSON C binding ([90eb880](https://github.com/launchdarkly/cpp-sdks/commit/90eb880b7b769ba491c9da5734f5db7eda31f15e)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-common bumped from 1.8.0 to 1.9.0 + ## [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) diff --git a/libs/internal/package.json b/libs/internal/package.json index e05a59cd9..a764d4e61 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.8.3", + "version": "0.9.0", "private": true, "dependencies": { - "launchdarkly-cpp-common": "1.8.0" + "launchdarkly-cpp-common": "1.9.0" } } diff --git a/libs/server-sdk-redis-source/CHANGELOG.md b/libs/server-sdk-redis-source/CHANGELOG.md index e82e2ddb6..dbfa155c8 100644 --- a/libs/server-sdk-redis-source/CHANGELOG.md +++ b/libs/server-sdk-redis-source/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [2.1.15](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.1.14...launchdarkly-cpp-server-redis-source-v2.1.15) (2024-10-30) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-server bumped from 3.6.2 to 3.7.0 + ## [2.1.14](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.1.13...launchdarkly-cpp-server-redis-source-v2.1.14) (2024-10-08) diff --git a/libs/server-sdk-redis-source/CMakeLists.txt b/libs/server-sdk-redis-source/CMakeLists.txt index bcad8b4eb..202c210cb 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.14 # {x-release-please-version} + VERSION 2.1.15 # {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 3efacecd5..29cd5da3f 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.14", + "version": "2.1.15", "private": true, "dependencies": { - "launchdarkly-cpp-server": "3.6.2" + "launchdarkly-cpp-server": "3.7.0" } } diff --git a/libs/server-sdk/CHANGELOG.md b/libs/server-sdk/CHANGELOG.md index a9cfeed4c..10d612c88 100644 --- a/libs/server-sdk/CHANGELOG.md +++ b/libs/server-sdk/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [3.7.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.6.2...launchdarkly-cpp-server-v3.7.0) (2024-10-30) + + +### Features + +* add LDValue_SerializeJSON C binding ([90eb880](https://github.com/launchdarkly/cpp-sdks/commit/90eb880b7b769ba491c9da5734f5db7eda31f15e)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-internal bumped from 0.8.3 to 0.9.0 + * launchdarkly-cpp-common bumped from 1.8.0 to 1.9.0 + ## [3.6.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.6.1...launchdarkly-cpp-server-v3.6.2) (2024-10-08) diff --git a/libs/server-sdk/CMakeLists.txt b/libs/server-sdk/CMakeLists.txt index 94614f628..b6fbff1ad 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.2 # {x-release-please-version} + VERSION 3.7.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 e3157c340..73d8189ca 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.2"; // {x-release-please-version} + "3.7.0"; // {x-release-please-version} std::unique_ptr client; }; diff --git a/libs/server-sdk/package.json b/libs/server-sdk/package.json index cac8ba7c7..9e50d5c63 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.2", + "version": "3.7.0", "private": true, "dependencies": { - "launchdarkly-cpp-internal": "0.8.3", - "launchdarkly-cpp-common": "1.8.0", + "launchdarkly-cpp-internal": "0.9.0", + "launchdarkly-cpp-common": "1.9.0", "launchdarkly-cpp-sse-client": "0.5.4" } } diff --git a/libs/server-sdk/tests/client_test.cpp b/libs/server-sdk/tests/client_test.cpp index 2309cb979..20a36f8f2 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.2"); // {x-release-please-version} + ASSERT_STREQ(version, "3.7.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 a207b8167..c4d0956fb 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.2"); // {x-release-please-version} + ASSERT_STREQ(version, "3.7.0"); // {x-release-please-version} LDServerSDK_Free(sdk); }