Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"libs/client-sdk": "3.11.2",
"libs/client-sdk": "3.11.3",
"libs/server-sent-events": "0.7.0",
"libs/common": "1.12.0",
"libs/internal": "0.14.0",
"libs/server-sdk": "3.12.0",
"libs/server-sdk-redis-source": "2.3.1",
"libs/server-sdk-dynamodb-source": "0.2.1",
"libs/server-sdk-otel": "0.1.3",
"libs/internal": "0.14.1",
"libs/server-sdk": "3.13.0",
"libs/server-sdk-redis-source": "2.4.0",
"libs/server-sdk-dynamodb-source": "0.3.0",
"libs/server-sdk-otel": "0.1.4",
"libs/networking": "0.2.0"
}
9 changes: 9 additions & 0 deletions libs/client-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [3.11.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.11.2...launchdarkly-cpp-client-v3.11.3) (2026-07-24)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @launchdarkly/cpp-internal bumped from 0.14.0 to 0.14.1

## [3.11.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.11.1...launchdarkly-cpp-client-v3.11.2) (2026-06-29)


Expand Down
2 changes: 1 addition & 1 deletion libs/client-sdk/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.19)

project(
LaunchDarklyCPPClient
VERSION 3.11.2 # {x-release-please-version}
VERSION 3.11.3 # {x-release-please-version}
DESCRIPTION "LaunchDarkly C++ Client SDK"
LANGUAGES CXX C
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ class Client : public IClient {

private:
inline static char const* const kVersion =
"3.11.2"; // {x-release-please-version}
"3.11.3"; // {x-release-please-version}
std::unique_ptr<IClient> client;
};

Expand Down
4 changes: 2 additions & 2 deletions libs/client-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@launchdarkly/cpp-client",
"description": "This package.json exists for modeling dependencies for the release process.",
"version": "3.11.2",
"version": "3.11.3",
"private": true,
"dependencies": {
"@launchdarkly/cpp-internal": "0.14.0",
"@launchdarkly/cpp-internal": "0.14.1",
"@launchdarkly/cpp-common": "1.12.0",
"@launchdarkly/cpp-sse-client": "0.7.0"
}
Expand Down
2 changes: 1 addition & 1 deletion libs/client-sdk/tests/client_c_bindings_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
TEST(ClientBindings, MinimalInstantiation) {
LDClientConfigBuilder cfg_builder = LDClientConfigBuilder_New("sdk-123");

LDClientConfig config;

Check warning on line 17 in libs/client-sdk/tests/client_c_bindings_test.cpp

View workflow job for this annotation

GitHub Actions / cpp-linter

libs/client-sdk/tests/client_c_bindings_test.cpp:17:20 [cppcoreguidelines-init-variables]

variable 'config' is not initialized
LDStatus status = LDClientConfigBuilder_Build(cfg_builder, &config);
ASSERT_TRUE(LDStatus_Ok(status));

Expand All @@ -27,13 +27,13 @@

char const* version = LDClientSDK_Version();
ASSERT_TRUE(version);
ASSERT_STREQ(version, "3.11.2"); // {x-release-please-version}
ASSERT_STREQ(version, "3.11.3"); // {x-release-please-version}

LDClientSDK_Free(sdk);
}

void FlagListenerFunction(char const* flag_key,
LDValue new_value,

Check warning on line 36 in libs/client-sdk/tests/client_c_bindings_test.cpp

View workflow job for this annotation

GitHub Actions / cpp-linter

libs/client-sdk/tests/client_c_bindings_test.cpp:36:27 [bugprone-easily-swappable-parameters]

2 adjacent parameters of 'FlagListenerFunction' of similar type ('LDValue') are easily swapped by mistake
LDValue old_value,
bool deleted,
void* user_data) {}
Expand All @@ -44,7 +44,7 @@
LDClientConfigBuilder cfg_builder = LDClientConfigBuilder_New("sdk-123");
LDClientConfigBuilder_Offline(cfg_builder, true);

LDClientConfig config;

Check warning on line 47 in libs/client-sdk/tests/client_c_bindings_test.cpp

View workflow job for this annotation

GitHub Actions / cpp-linter

libs/client-sdk/tests/client_c_bindings_test.cpp:47:20 [cppcoreguidelines-init-variables]

variable 'config' is not initialized
LDStatus status = LDClientConfigBuilder_Build(cfg_builder, &config);
ASSERT_TRUE(LDStatus_Ok(status));

Expand All @@ -56,19 +56,19 @@
LDClientSDK sdk = LDClientSDK_New(config, context);

bool success = false;
LDClientSDK_Start(sdk, 3000, &success);

Check warning on line 59 in libs/client-sdk/tests/client_c_bindings_test.cpp

View workflow job for this annotation

GitHub Actions / cpp-linter

libs/client-sdk/tests/client_c_bindings_test.cpp:59:28 [cppcoreguidelines-avoid-magic-numbers]

3000 is a magic number; consider replacing it with a named constant
EXPECT_TRUE(success);

struct LDFlagListener listener {
reinterpret_cast<FlagChangedCallbackFn>(0x123),

Check warning on line 63 in libs/client-sdk/tests/client_c_bindings_test.cpp

View workflow job for this annotation

GitHub Actions / cpp-linter

libs/client-sdk/tests/client_c_bindings_test.cpp:63:49 [cppcoreguidelines-avoid-magic-numbers]

0x123 is a magic number; consider replacing it with a named constant

Check warning on line 63 in libs/client-sdk/tests/client_c_bindings_test.cpp

View workflow job for this annotation

GitHub Actions / cpp-linter

libs/client-sdk/tests/client_c_bindings_test.cpp:63:9 [cppcoreguidelines-pro-type-reinterpret-cast]

do not use reinterpret_cast
reinterpret_cast<void*>(0x456)

Check warning on line 64 in libs/client-sdk/tests/client_c_bindings_test.cpp

View workflow job for this annotation

GitHub Actions / cpp-linter

libs/client-sdk/tests/client_c_bindings_test.cpp:64:37 [cppcoreguidelines-avoid-magic-numbers]

0x456 is a magic number; consider replacing it with a named constant

Check warning on line 64 in libs/client-sdk/tests/client_c_bindings_test.cpp

View workflow job for this annotation

GitHub Actions / cpp-linter

libs/client-sdk/tests/client_c_bindings_test.cpp:64:13 [cppcoreguidelines-pro-type-reinterpret-cast]

do not use reinterpret_cast
};

LDFlagListener_Init(&listener);
ASSERT_EQ(listener.FlagChanged, nullptr);
ASSERT_EQ(listener.UserData, nullptr);

listener.UserData = const_cast<char*>("Potato");

Check warning on line 71 in libs/client-sdk/tests/client_c_bindings_test.cpp

View workflow job for this annotation

GitHub Actions / cpp-linter

libs/client-sdk/tests/client_c_bindings_test.cpp:71:25 [cppcoreguidelines-pro-type-const-cast]

do not use const_cast
listener.FlagChanged = FlagListenerFunction;

LDListenerConnection connection =
Expand All @@ -90,7 +90,7 @@
LDClientConfigBuilder cfg_builder = LDClientConfigBuilder_New("sdk-123");
LDClientConfigBuilder_Offline(cfg_builder, true);

LDClientConfig config;

Check warning on line 93 in libs/client-sdk/tests/client_c_bindings_test.cpp

View workflow job for this annotation

GitHub Actions / cpp-linter

libs/client-sdk/tests/client_c_bindings_test.cpp:93:20 [cppcoreguidelines-init-variables]

variable 'config' is not initialized
LDStatus status = LDClientConfigBuilder_Build(cfg_builder, &config);
ASSERT_TRUE(LDStatus_Ok(status));

Expand Down
2 changes: 1 addition & 1 deletion libs/client-sdk/tests/client_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ TEST(ClientTest, ClientConstructedWithMinimalConfigAndContext) {

char const* version = client.Version();
ASSERT_TRUE(version);
ASSERT_STREQ(version, "3.11.2"); // {x-release-please-version}
ASSERT_STREQ(version, "3.11.3"); // {x-release-please-version}
}

TEST(ClientTest, AllFlagsIsEmpty) {
Expand Down
7 changes: 7 additions & 0 deletions libs/internal/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.14.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.14.0...launchdarkly-cpp-internal-v0.14.1) (2026-07-24)


### Bug Fixes

* Redact anonymous context attributes in server-side custom events ([#583](https://github.com/launchdarkly/cpp-sdks/issues/583)) ([55f7eaf](https://github.com/launchdarkly/cpp-sdks/commit/55f7eaf60ec7e615e0ba11b60323db3743217488))

## [0.14.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.13.0...launchdarkly-cpp-internal-v0.14.0) (2026-06-29)


Expand Down
2 changes: 1 addition & 1 deletion libs/internal/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@launchdarkly/cpp-internal",
"description": "This package.json exists for modeling dependencies for the release process.",
"version": "0.14.0",
"version": "0.14.1",
"private": true,
"dependencies": {
"@launchdarkly/cpp-common": "1.12.0",
Expand Down
15 changes: 15 additions & 0 deletions libs/server-sdk-dynamodb-source/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [0.3.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-dynamodb-source-v0.2.1...launchdarkly-cpp-server-dynamodb-source-v0.3.0) (2026-07-24)


### Features

* Add C bindings for DynamoDB Big Segments store ([#579](https://github.com/launchdarkly/cpp-sdks/issues/579)) ([fc6c075](https://github.com/launchdarkly/cpp-sdks/commit/fc6c0752ebb70d206b7d506d1cfcbcb8862d0a9f))
* Add C bindings for DynamoDB LazyLoad source ([#576](https://github.com/launchdarkly/cpp-sdks/issues/576)) ([65efc69](https://github.com/launchdarkly/cpp-sdks/commit/65efc6956945ee7c13f287da1555d296c245be66))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @launchdarkly/cpp-server bumped from 3.12.0 to 3.13.0

## [0.2.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-dynamodb-source-v0.2.0...launchdarkly-cpp-server-dynamodb-source-v0.2.1) (2026-07-01)


Expand Down
2 changes: 1 addition & 1 deletion libs/server-sdk-dynamodb-source/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.19)

project(
LaunchDarklyCPPServerDynamoDBSource
VERSION 0.2.1 # {x-release-please-version}
VERSION 0.3.0 # {x-release-please-version}
DESCRIPTION "LaunchDarkly C++ Server SDK DynamoDB Source"
LANGUAGES CXX C
)
Expand Down
4 changes: 2 additions & 2 deletions libs/server-sdk-dynamodb-source/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@launchdarkly/cpp-server-dynamodb-source",
"description": "This package.json exists for modeling dependencies for the release process.",
"version": "0.2.1",
"version": "0.3.0",
"private": true,
"dependencies": {
"@launchdarkly/cpp-server": "3.12.0"
"@launchdarkly/cpp-server": "3.13.0"
}
}
9 changes: 9 additions & 0 deletions libs/server-sdk-otel/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.1.4](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-otel-v0.1.3...launchdarkly-cpp-server-otel-v0.1.4) (2026-07-24)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @launchdarkly/cpp-server bumped from 3.12.0 to 3.13.0

## [0.1.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-otel-v0.1.2...launchdarkly-cpp-server-otel-v0.1.3) (2026-07-01)


Expand Down
4 changes: 2 additions & 2 deletions libs/server-sdk-otel/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@launchdarkly/cpp-server-otel",
"description": "This package.json exists for modeling dependencies for the release process.",
"version": "0.1.3",
"version": "0.1.4",
"private": true,
"dependencies": {
"@launchdarkly/cpp-server": "3.12.0"
"@launchdarkly/cpp-server": "3.13.0"
}
}
16 changes: 16 additions & 0 deletions libs/server-sdk-redis-source/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [2.4.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.3.1...launchdarkly-cpp-server-redis-source-v2.4.0) (2026-07-24)


### Features

* Add C bindings for DynamoDB Big Segments store ([#579](https://github.com/launchdarkly/cpp-sdks/issues/579)) ([fc6c075](https://github.com/launchdarkly/cpp-sdks/commit/fc6c0752ebb70d206b7d506d1cfcbcb8862d0a9f))
* Add C bindings for DynamoDB LazyLoad source ([#576](https://github.com/launchdarkly/cpp-sdks/issues/576)) ([65efc69](https://github.com/launchdarkly/cpp-sdks/commit/65efc6956945ee7c13f287da1555d296c245be66))
* Add C bindings for Redis Big Segments store ([#574](https://github.com/launchdarkly/cpp-sdks/issues/574)) ([52a1898](https://github.com/launchdarkly/cpp-sdks/commit/52a1898621bcc65caab08c0e1f46b02655c5e5f3))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @launchdarkly/cpp-server bumped from 3.12.0 to 3.13.0

## [2.3.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.3.0...launchdarkly-cpp-server-redis-source-v2.3.1) (2026-07-01)


Expand Down
2 changes: 1 addition & 1 deletion libs/server-sdk-redis-source/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.19)

project(
LaunchDarklyCPPServerRedisSource
VERSION 2.3.1 # {x-release-please-version}
VERSION 2.4.0 # {x-release-please-version}
DESCRIPTION "LaunchDarkly C++ Server SDK Redis Source"
LANGUAGES CXX C
)
Expand Down
4 changes: 2 additions & 2 deletions libs/server-sdk-redis-source/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@launchdarkly/cpp-server-redis-source",
"description": "This package.json exists for modeling dependencies for the release process.",
"version": "2.3.1",
"version": "2.4.0",
"private": true,
"dependencies": {
"@launchdarkly/cpp-server": "3.12.0"
"@launchdarkly/cpp-server": "3.13.0"
}
}
14 changes: 14 additions & 0 deletions libs/server-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [3.13.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.12.0...launchdarkly-cpp-server-v3.13.0) (2026-07-24)


### Features

* Add C bindings for Big Segments ([#573](https://github.com/launchdarkly/cpp-sdks/issues/573)) ([948878e](https://github.com/launchdarkly/cpp-sdks/commit/948878e376d2d4984775282bf32e4473ea976785))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @launchdarkly/cpp-internal bumped from 0.14.0 to 0.14.1

## [3.12.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.11.0...launchdarkly-cpp-server-v3.12.0) (2026-07-01)


Expand Down
2 changes: 1 addition & 1 deletion libs/server-sdk/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.19)

project(
LaunchDarklyCPPServer
VERSION 3.12.0 # {x-release-please-version}
VERSION 3.13.0 # {x-release-please-version}
DESCRIPTION "LaunchDarkly C++ Server SDK"
LANGUAGES CXX C
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ class Client : public IClient {

private:
inline static char const* const kVersion =
"3.12.0"; // {x-release-please-version}
"3.13.0"; // {x-release-please-version}
std::unique_ptr<IClient> client;
};

Expand Down
4 changes: 2 additions & 2 deletions libs/server-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@launchdarkly/cpp-server",
"description": "This package.json exists for modeling dependencies for the release process.",
"version": "3.12.0",
"version": "3.13.0",
"private": true,
"dependencies": {
"@launchdarkly/cpp-internal": "0.14.0",
"@launchdarkly/cpp-internal": "0.14.1",
"@launchdarkly/cpp-common": "1.12.0",
"@launchdarkly/cpp-sse-client": "0.7.0"
}
Expand Down
2 changes: 1 addition & 1 deletion libs/server-sdk/tests/client_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.12.0"); // {x-release-please-version}
ASSERT_STREQ(version, "3.13.0"); // {x-release-please-version}
}

TEST_F(ClientTest, BoolVariationDefaultPassesThrough) {
Expand Down
2 changes: 1 addition & 1 deletion libs/server-sdk/tests/server_c_bindings_test.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#include <gtest/gtest.h>

#include <launchdarkly/server_side/bindings/c/config/builder.h>
Expand Down Expand Up @@ -43,7 +43,7 @@

char const* version = LDServerSDK_Version();
ASSERT_TRUE(version);
ASSERT_STREQ(version, "3.12.0"); // {x-release-please-version}
ASSERT_STREQ(version, "3.13.0"); // {x-release-please-version}

LDServerSDK_Free(sdk);
}
Expand Down
Loading