Skip to content

Commit e33f2b1

Browse files
chore: release main (#484)
🤖 I have created a release *beep* *boop* --- <details><summary>launchdarkly-cpp-client: 3.10.1</summary> ## [3.10.1](launchdarkly-cpp-client-v3.10.0...launchdarkly-cpp-client-v3.10.1) (2025-10-10) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-internal bumped from 0.12.0 to 0.12.1 </details> <details><summary>launchdarkly-cpp-internal: 0.12.1</summary> ## [0.12.1](launchdarkly-cpp-internal-v0.12.0...launchdarkly-cpp-internal-v0.12.1) (2025-10-10) ### Bug Fixes * Ensure that serialization of a variation or rollout uses the correct overload. ([#483](#483)) ([b598803](b598803)) </details> <details><summary>launchdarkly-cpp-server: 3.9.1</summary> ## [3.9.1](launchdarkly-cpp-server-v3.9.0...launchdarkly-cpp-server-v3.9.1) (2025-10-10) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-internal bumped from 0.12.0 to 0.12.1 </details> <details><summary>launchdarkly-cpp-server-redis-source: 2.1.20</summary> ## [2.1.20](launchdarkly-cpp-server-redis-source-v2.1.19...launchdarkly-cpp-server-redis-source-v2.1.20) (2025-10-10) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-server bumped from 3.9.0 to 3.9.1 </details> --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Bumps SDK versions and dependencies across client, server, internal, and redis-source; updates changelogs, CMake/package metadata, and version assertions in tests. > > - **Releases/Versions**: > - `libs/client-sdk`: `3.10.1` (CMake `VERSION`, `kVersion`, tests, `package.json`, `CHANGELOG.md`). > - `libs/server-sdk`: `3.9.1` (CMake `VERSION`, `kVersion`, tests, `package.json`, `CHANGELOG.md`). > - `libs/internal`: `0.12.1` (`package.json`, `CHANGELOG.md`). > - `libs/server-sdk-redis-source`: `2.1.20` (CMake `VERSION`, `package.json`, `CHANGELOG.md`). > - `.release-please-manifest.json` updated to reflect new versions. > - **Dependencies**: > - Update workspace deps: `launchdarkly-cpp-internal` to `0.12.1` in client/server; `launchdarkly-cpp-server` to `3.9.1` in redis-source. > - **Tests**: > - Update expected SDK version strings in client/server C++ and C binding tests. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 8a371be. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY --> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent b598803 commit e33f2b1

18 files changed

Lines changed: 54 additions & 20 deletions

File tree

.release-please-manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"libs/client-sdk": "3.10.0",
2+
"libs/client-sdk": "3.10.1",
33
"libs/server-sent-events": "0.5.5",
44
"libs/common": "1.10.0",
5-
"libs/internal": "0.12.0",
6-
"libs/server-sdk": "3.9.0",
7-
"libs/server-sdk-redis-source": "2.1.19"
5+
"libs/internal": "0.12.1",
6+
"libs/server-sdk": "3.9.1",
7+
"libs/server-sdk-redis-source": "2.1.20"
88
}

libs/client-sdk/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [3.10.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.10.0...launchdarkly-cpp-client-v3.10.1) (2025-10-10)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* launchdarkly-cpp-internal bumped from 0.12.0 to 0.12.1
11+
312
## [3.10.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.9.0...launchdarkly-cpp-client-v3.10.0) (2025-06-04)
413

514

libs/client-sdk/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.19)
66

77
project(
88
LaunchDarklyCPPClient
9-
VERSION 3.10.0 # {x-release-please-version}
9+
VERSION 3.10.1 # {x-release-please-version}
1010
DESCRIPTION "LaunchDarkly C++ Client SDK"
1111
LANGUAGES CXX C
1212
)

libs/client-sdk/include/launchdarkly/client_side/client.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ class Client : public IClient {
345345

346346
private:
347347
inline static char const* const kVersion =
348-
"3.10.0"; // {x-release-please-version}
348+
"3.10.1"; // {x-release-please-version}
349349
std::unique_ptr<IClient> client;
350350
};
351351

libs/client-sdk/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "launchdarkly-cpp-client",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "3.10.0",
4+
"version": "3.10.1",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-internal": "0.12.0",
7+
"launchdarkly-cpp-internal": "0.12.1",
88
"launchdarkly-cpp-common": "1.10.0",
99
"launchdarkly-cpp-sse-client": "0.5.5"
1010
}

libs/client-sdk/tests/client_c_bindings_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ TEST(ClientBindings, MinimalInstantiation) {
2727

2828
char const* version = LDClientSDK_Version();
2929
ASSERT_TRUE(version);
30-
ASSERT_STREQ(version, "3.10.0"); // {x-release-please-version}
30+
ASSERT_STREQ(version, "3.10.1"); // {x-release-please-version}
3131

3232
LDClientSDK_Free(sdk);
3333
}

libs/client-sdk/tests/client_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ TEST(ClientTest, ClientConstructedWithMinimalConfigAndContext) {
1616

1717
char const* version = client.Version();
1818
ASSERT_TRUE(version);
19-
ASSERT_STREQ(version, "3.10.0"); // {x-release-please-version}
19+
ASSERT_STREQ(version, "3.10.1"); // {x-release-please-version}
2020
}
2121

2222
TEST(ClientTest, AllFlagsIsEmpty) {

libs/internal/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.12.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.12.0...launchdarkly-cpp-internal-v0.12.1) (2025-10-10)
4+
5+
6+
### Bug Fixes
7+
8+
* Ensure that serialization of a variation or rollout uses the correct overload. ([#483](https://github.com/launchdarkly/cpp-sdks/issues/483)) ([b598803](https://github.com/launchdarkly/cpp-sdks/commit/b5988039e986ea50c5a165bd5c388f205a7876bd))
9+
310
## [0.12.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.11.0...launchdarkly-cpp-internal-v0.12.0) (2025-06-04)
411

512

libs/internal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "launchdarkly-cpp-internal",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "0.12.0",
4+
"version": "0.12.1",
55
"private": true,
66
"dependencies": {
77
"launchdarkly-cpp-common": "1.10.0"

libs/server-sdk-redis-source/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [2.1.20](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.1.19...launchdarkly-cpp-server-redis-source-v2.1.20) (2025-10-10)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* launchdarkly-cpp-server bumped from 3.9.0 to 3.9.1
11+
312
## [2.1.19](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.1.18...launchdarkly-cpp-server-redis-source-v2.1.19) (2025-06-04)
413

514

0 commit comments

Comments
 (0)