Skip to content

Commit 2e30646

Browse files
chore: release main (#504)
🤖 I have created a release *beep* *boop* --- <details><summary>launchdarkly-cpp-client: 3.11.1</summary> ## [3.11.1](launchdarkly-cpp-client-v3.11.0...launchdarkly-cpp-client-v3.11.1) (2025-11-12) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-sse-client bumped from 0.6.0 to 0.6.1 </details> <details><summary>launchdarkly-cpp-server: 3.10.1</summary> ## [3.10.1](launchdarkly-cpp-server-v3.10.0...launchdarkly-cpp-server-v3.10.1) (2025-11-12) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-sse-client bumped from 0.6.0 to 0.6.1 </details> <details><summary>launchdarkly-cpp-server-otel: 0.1.1</summary> ## [0.1.1](launchdarkly-cpp-server-otel-v0.1.0...launchdarkly-cpp-server-otel-v0.1.1) (2025-11-12) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-server bumped from 3.10.0 to 3.10.1 </details> <details><summary>launchdarkly-cpp-server-redis-source: 2.2.2</summary> ## [2.2.2](launchdarkly-cpp-server-redis-source-v2.2.1...launchdarkly-cpp-server-redis-source-v2.2.2) (2025-11-12) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-server bumped from 3.10.0 to 3.10.1 </details> <details><summary>launchdarkly-cpp-sse-client: 0.6.1</summary> ## [0.6.1](launchdarkly-cpp-sse-client-v0.6.0...launchdarkly-cpp-sse-client-v0.6.1) (2025-11-12) ### Bug Fixes * Handle missing data field in SSE parsing. ([#503](#503)) ([03b1d11](03b1d11)) </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] > Publish patch releases for client/server SDKs and SSE client; update dependencies to `launchdarkly-cpp-sse-client@0.6.1`, adjust version constants/tests, and record SSE parsing bug fix. > > - **Releases**: > - `libs/client-sdk`: `3.11.1` > - `libs/server-sdk`: `3.10.1` > - `libs/server-sdk-redis-source`: `2.2.2` > - `libs/server-sdk-otel`: `0.1.1` > - `libs/server-sent-events`: `0.6.1` > - **Dependencies**: > - Client/Server SDKs now depend on `launchdarkly-cpp-sse-client@0.6.1`. > - Redis Source and OTEL now depend on `launchdarkly-cpp-server@3.10.1`. > - **Code/version updates**: > - Update SDK version constants and corresponding unit tests to new versions. > - Update `.release-please-manifest.json` and package/CMake versions. > - **Bug fix (SSE)**: > - Note fix for handling missing `data` field in SSE parsing. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit e598876. 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 5b8bbee commit 2e30646

File tree

20 files changed

+66
-23
lines changed

20 files changed

+66
-23
lines changed

.release-please-manifest.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"libs/client-sdk": "3.11.0",
3-
"libs/server-sent-events": "0.6.0",
2+
"libs/client-sdk": "3.11.1",
3+
"libs/server-sent-events": "0.6.1",
44
"libs/common": "1.11.0",
55
"libs/internal": "0.13.0",
6-
"libs/server-sdk": "3.10.0",
7-
"libs/server-sdk-redis-source": "2.2.1",
8-
"libs/server-sdk-otel": "0.1.0",
6+
"libs/server-sdk": "3.10.1",
7+
"libs/server-sdk-redis-source": "2.2.2",
8+
"libs/server-sdk-otel": "0.1.1",
99
"libs/networking": "0.2.0"
1010
}

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.11.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.11.0...launchdarkly-cpp-client-v3.11.1) (2025-11-12)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* launchdarkly-cpp-sse-client bumped from 0.6.0 to 0.6.1
11+
312
## [3.11.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.10.1...launchdarkly-cpp-client-v3.11.0) (2025-11-03)
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.11.0 # {x-release-please-version}
9+
VERSION 3.11.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.11.0"; // {x-release-please-version}
348+
"3.11.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,11 +1,11 @@
11
{
22
"name": "launchdarkly-cpp-client",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "3.11.0",
4+
"version": "3.11.1",
55
"private": true,
66
"dependencies": {
77
"launchdarkly-cpp-internal": "0.13.0",
88
"launchdarkly-cpp-common": "1.11.0",
9-
"launchdarkly-cpp-sse-client": "0.6.0"
9+
"launchdarkly-cpp-sse-client": "0.6.1"
1010
}
1111
}

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.11.0"); // {x-release-please-version}
30+
ASSERT_STREQ(version, "3.11.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.11.0"); // {x-release-please-version}
19+
ASSERT_STREQ(version, "3.11.1"); // {x-release-please-version}
2020
}
2121

2222
TEST(ClientTest, AllFlagsIsEmpty) {

libs/server-sdk-otel/CHANGELOG.md

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

3+
## [0.1.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-otel-v0.1.0...launchdarkly-cpp-server-otel-v0.1.1) (2025-11-12)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* launchdarkly-cpp-server bumped from 3.10.0 to 3.10.1
11+
312
## 0.1.0 (2025-11-03)
413

514

libs/server-sdk-otel/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "launchdarkly-cpp-server-otel",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-server": "3.10.0"
7+
"launchdarkly-cpp-server": "3.10.1"
88
}
99
}

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.2.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.2.1...launchdarkly-cpp-server-redis-source-v2.2.2) (2025-11-12)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* launchdarkly-cpp-server bumped from 3.10.0 to 3.10.1
11+
312
## [2.2.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.2.0...launchdarkly-cpp-server-redis-source-v2.2.1) (2025-11-03)
413

514

0 commit comments

Comments
 (0)