Skip to content

Commit 9fe10c2

Browse files
chore: release main (#478)
🤖 I have created a release *beep* *boop* --- <details><summary>launchdarkly-cpp-client: 3.10.0</summary> ## [3.10.0](launchdarkly-cpp-client-v3.9.0...launchdarkly-cpp-client-v3.10.0) (2025-06-04) ### Features * Inline context for custom events ([#477](#477)) ([6a96b13](6a96b13)) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-internal bumped from 0.11.0 to 0.12.0 </details> <details><summary>launchdarkly-cpp-internal: 0.12.0</summary> ## [0.12.0](launchdarkly-cpp-internal-v0.11.0...launchdarkly-cpp-internal-v0.12.0) (2025-06-04) ### Features * Inline context for custom events ([#477](#477)) ([6a96b13](6a96b13)) </details> <details><summary>launchdarkly-cpp-server: 3.9.0</summary> ## [3.9.0](launchdarkly-cpp-server-v3.8.2...launchdarkly-cpp-server-v3.9.0) (2025-06-04) ### Features * Inline context for custom events ([#477](#477)) ([6a96b13](6a96b13)) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-internal bumped from 0.11.0 to 0.12.0 </details> <details><summary>launchdarkly-cpp-server-redis-source: 2.1.19</summary> ## [2.1.19](launchdarkly-cpp-server-redis-source-v2.1.18...launchdarkly-cpp-server-redis-source-v2.1.19) (2025-06-04) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-server bumped from 3.8.2 to 3.9.0 </details> --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent dfc178b commit 9fe10c2

File tree

18 files changed

+64
-20
lines changed

18 files changed

+64
-20
lines changed

.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.9.0",
2+
"libs/client-sdk": "3.10.0",
33
"libs/server-sent-events": "0.5.5",
44
"libs/common": "1.10.0",
5-
"libs/internal": "0.11.0",
6-
"libs/server-sdk": "3.8.2",
7-
"libs/server-sdk-redis-source": "2.1.18"
5+
"libs/internal": "0.12.0",
6+
"libs/server-sdk": "3.9.0",
7+
"libs/server-sdk-redis-source": "2.1.19"
88
}

libs/client-sdk/CHANGELOG.md

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

3+
## [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)
4+
5+
6+
### Features
7+
8+
* Inline context for custom events ([#477](https://github.com/launchdarkly/cpp-sdks/issues/477)) ([6a96b13](https://github.com/launchdarkly/cpp-sdks/commit/6a96b135a2a02535c767de44b903ea51d905b1a3))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* launchdarkly-cpp-internal bumped from 0.11.0 to 0.12.0
16+
317
## [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)
418

519

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.9.0 # {x-release-please-version}
9+
VERSION 3.10.0 # {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.9.0"; // {x-release-please-version}
348+
"3.10.0"; // {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.9.0",
4+
"version": "3.10.0",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-internal": "0.11.0",
7+
"launchdarkly-cpp-internal": "0.12.0",
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.9.0"); // {x-release-please-version}
30+
ASSERT_STREQ(version, "3.10.0"); // {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.9.0"); // {x-release-please-version}
19+
ASSERT_STREQ(version, "3.10.0"); // {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.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.11.0...launchdarkly-cpp-internal-v0.12.0) (2025-06-04)
4+
5+
6+
### Features
7+
8+
* Inline context for custom events ([#477](https://github.com/launchdarkly/cpp-sdks/issues/477)) ([6a96b13](https://github.com/launchdarkly/cpp-sdks/commit/6a96b135a2a02535c767de44b903ea51d905b1a3))
9+
310
## [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)
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.11.0",
4+
"version": "0.12.0",
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.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)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* launchdarkly-cpp-server bumped from 3.8.2 to 3.9.0
11+
312
## [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)
413

514

libs/server-sdk-redis-source/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
LaunchDarklyCPPServerRedisSource
9-
VERSION 2.1.18 # {x-release-please-version}
9+
VERSION 2.1.19 # {x-release-please-version}
1010
DESCRIPTION "LaunchDarkly C++ Server SDK Redis Source"
1111
LANGUAGES CXX C
1212
)
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "launchdarkly-cpp-server-redis-source",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "2.1.18",
4+
"version": "2.1.19",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-server": "3.8.2"
7+
"launchdarkly-cpp-server": "3.9.0"
88
}
99
}

libs/server-sdk/CHANGELOG.md

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

3+
## [3.9.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.8.2...launchdarkly-cpp-server-v3.9.0) (2025-06-04)
4+
5+
6+
### Features
7+
8+
* Inline context for custom events ([#477](https://github.com/launchdarkly/cpp-sdks/issues/477)) ([6a96b13](https://github.com/launchdarkly/cpp-sdks/commit/6a96b135a2a02535c767de44b903ea51d905b1a3))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* launchdarkly-cpp-internal bumped from 0.11.0 to 0.12.0
16+
317
## [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)
418

519

libs/server-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
LaunchDarklyCPPServer
9-
VERSION 3.8.2 # {x-release-please-version}
9+
VERSION 3.9.0 # {x-release-please-version}
1010
DESCRIPTION "LaunchDarkly C++ Server SDK"
1111
LANGUAGES CXX C
1212
)

libs/server-sdk/include/launchdarkly/server_side/client.hpp

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

361361
private:
362362
inline static char const* const kVersion =
363-
"3.8.2"; // {x-release-please-version}
363+
"3.9.0"; // {x-release-please-version}
364364
std::unique_ptr<IClient> client;
365365
};
366366

libs/server-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-server",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "3.8.2",
4+
"version": "3.9.0",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-internal": "0.11.0",
7+
"launchdarkly-cpp-internal": "0.12.0",
88
"launchdarkly-cpp-common": "1.10.0",
99
"launchdarkly-cpp-sse-client": "0.5.5"
1010
}

libs/server-sdk/tests/client_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ClientTest : public ::testing::Test {
2020
TEST_F(ClientTest, ClientConstructedWithMinimalConfigAndContextT) {
2121
char const* version = client_.Version();
2222
ASSERT_TRUE(version);
23-
ASSERT_STREQ(version, "3.8.2"); // {x-release-please-version}
23+
ASSERT_STREQ(version, "3.9.0"); // {x-release-please-version}
2424
}
2525

2626
TEST_F(ClientTest, BoolVariationDefaultPassesThrough) {

libs/server-sdk/tests/server_c_bindings_test.cpp

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

2525
char const* version = LDServerSDK_Version();
2626
ASSERT_TRUE(version);
27-
ASSERT_STREQ(version, "3.8.2"); // {x-release-please-version}
27+
ASSERT_STREQ(version, "3.9.0"); // {x-release-please-version}
2828

2929
LDServerSDK_Free(sdk);
3030
}

0 commit comments

Comments
 (0)