Skip to content

Commit 8c255b6

Browse files
chore: release main (#440)
🤖 I have created a release *beep* *boop* --- <details><summary>launchdarkly-cpp-client: 3.7.0</summary> ## [3.7.0](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](#442)) ([e8ca616](e8ca616)) ### Bug Fixes * client init state should not regress when data source interrupted ([#441](#441)) ([4a7f1f9](4a7f1f9)) * improve handling of streaming error state changes/logging ([#439](#439)) ([04e7e0e](04e7e0e)) ### 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 </details> <details><summary>launchdarkly-cpp-internal: 0.8.3</summary> ## [0.8.3](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](#439)) ([04e7e0e](04e7e0e)) </details> <details><summary>launchdarkly-cpp-server: 3.6.1</summary> ## [3.6.1](launchdarkly-cpp-server-v3.6.0...launchdarkly-cpp-server-v3.6.1) (2024-10-01) ### Bug Fixes * improve caching behavior of database integration ([#444](#444)) ([5f47864](5f47864)) * improve handling of streaming error state changes/logging ([#439](#439)) ([04e7e0e](04e7e0e)) ### 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 </details> <details><summary>launchdarkly-cpp-server-redis-source: 2.1.13</summary> ## [2.1.13](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 </details> <details><summary>launchdarkly-cpp-sse-client: 0.5.3</summary> ## [0.5.3](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](#439)) ([04e7e0e](04e7e0e)) </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 5f47864 commit 8c255b6

File tree

20 files changed

+84
-24
lines changed

20 files changed

+84
-24
lines changed

.release-please-manifest.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"libs/client-sdk": "3.6.4",
3-
"libs/server-sent-events": "0.5.2",
2+
"libs/client-sdk": "3.7.0",
3+
"libs/server-sent-events": "0.5.3",
44
"libs/common": "1.8.0",
5-
"libs/internal": "0.8.2",
6-
"libs/server-sdk": "3.6.0",
7-
"libs/server-sdk-redis-source": "2.1.12"
5+
"libs/internal": "0.8.3",
6+
"libs/server-sdk": "3.6.1",
7+
"libs/server-sdk-redis-source": "2.1.13"
88
}

libs/client-sdk/CHANGELOG.md

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

3+
## [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)
4+
5+
6+
### Features
7+
8+
* 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))
9+
10+
11+
### Bug Fixes
12+
13+
* 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))
14+
* 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))
15+
16+
17+
### Dependencies
18+
19+
* The following workspace dependencies were updated
20+
* dependencies
21+
* launchdarkly-cpp-internal bumped from 0.8.2 to 0.8.3
22+
* launchdarkly-cpp-sse-client bumped from 0.5.2 to 0.5.3
23+
324
## [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)
425

526

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.6.4 # {x-release-please-version}
9+
VERSION 3.7.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.6.4"; // {x-release-please-version}
348+
"3.7.0"; // {x-release-please-version}
349349
std::unique_ptr<IClient> client;
350350
};
351351

libs/client-sdk/package.json

Lines changed: 3 additions & 3 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.6.4",
4+
"version": "3.7.0",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-internal": "0.8.2",
7+
"launchdarkly-cpp-internal": "0.8.3",
88
"launchdarkly-cpp-common": "1.8.0",
9-
"launchdarkly-cpp-sse-client": "0.5.2"
9+
"launchdarkly-cpp-sse-client": "0.5.3"
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.6.4"); // {x-release-please-version}
30+
ASSERT_STREQ(version, "3.7.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.6.4"); // {x-release-please-version}
19+
ASSERT_STREQ(version, "3.7.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.8.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.8.2...launchdarkly-cpp-internal-v0.8.3) (2024-10-01)
4+
5+
6+
### Bug Fixes
7+
8+
* 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))
9+
310
## [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)
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.8.2",
4+
"version": "0.8.3",
55
"private": true,
66
"dependencies": {
77
"launchdarkly-cpp-common": "1.8.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.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)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* launchdarkly-cpp-server bumped from 3.6.0 to 3.6.1
11+
312
## [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)
413

514

0 commit comments

Comments
 (0)