From f5fb6fbb9e3937fc811c896ab1b11866bc8c8e04 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 09:12:04 +0000 Subject: [PATCH] chore: update C++ server-side SDK from 3.10.1 to 3.12.0 and Redis Source from 2.1.19 to 2.3.1 Co-Authored-By: rlamb@launchdarkly.com <4955475+kinyoklion@users.noreply.github.com> --- .github/variables/cpp-sdk-versions.env | 4 ++-- README.md | 4 ++-- examples/hello-debian/Dockerfile | 2 +- examples/hello-haproxy/Dockerfile | 2 +- examples/hello-nginx/Dockerfile | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/variables/cpp-sdk-versions.env b/.github/variables/cpp-sdk-versions.env index 5831dda..565dbae 100644 --- a/.github/variables/cpp-sdk-versions.env +++ b/.github/variables/cpp-sdk-versions.env @@ -1,2 +1,2 @@ -sdk=3.10.1 -redis_source=2.1.19 +sdk=3.12.0 +redis_source=2.3.1 diff --git a/README.md b/README.md index a4862a5..8915586 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,8 @@ If Redis support is desired, then it optionally depends on the C++ server-side S | Dependency | Minimum Version | Notes | |--------------------------------|--------------------------------------------------------------------------------------------------------------|--------------------------------------------| -| C++ Server-Side SDK | [3.9.0](https://github.com/launchdarkly/cpp-sdks/releases/tag/launchdarkly-cpp-server-v3.9.0) | Required dependency. | -| C++ Server-Side SDK with Redis | [2.1.19](https://github.com/launchdarkly/cpp-sdks/releases/tag/launchdarkly-cpp-server-redis-source-v2.1.19) | Optional, if using Redis as a data source. | +| C++ Server-Side SDK | [3.12.0](https://github.com/launchdarkly/cpp-sdks/releases/tag/launchdarkly-cpp-server-v3.12.0) | Required dependency. | +| C++ Server-Side SDK with Redis | [2.3.1](https://github.com/launchdarkly/cpp-sdks/releases/tag/launchdarkly-cpp-server-redis-source-v2.3.1) | Optional, if using Redis as a data source. | 3rd Party Dependencies diff --git a/examples/hello-debian/Dockerfile b/examples/hello-debian/Dockerfile index b5b6402..598d9b0 100644 --- a/examples/hello-debian/Dockerfile +++ b/examples/hello-debian/Dockerfile @@ -4,7 +4,7 @@ FROM debian:bookworm ARG VERSION=2.1.3 # {{ x-release-please-end }} -ARG CPP_SDK_VERSION=3.10.1 +ARG CPP_SDK_VERSION=3.12.0 # For unknown reasons, it appears that boost.json and boost.url aren't included in the # libboost-all package. diff --git a/examples/hello-haproxy/Dockerfile b/examples/hello-haproxy/Dockerfile index bad2c0a..fa700e2 100644 --- a/examples/hello-haproxy/Dockerfile +++ b/examples/hello-haproxy/Dockerfile @@ -4,7 +4,7 @@ FROM ubuntu:22.04 ARG VERSION=2.1.3 # {{ x-release-please-end }} -ARG CPP_SDK_VERSION=3.10.1 +ARG CPP_SDK_VERSION=3.12.0 RUN apt-get update && apt-get install -y \ curl luarocks lua5.3 lua5.3-dev \ diff --git a/examples/hello-nginx/Dockerfile b/examples/hello-nginx/Dockerfile index e7f14f4..7d128a6 100644 --- a/examples/hello-nginx/Dockerfile +++ b/examples/hello-nginx/Dockerfile @@ -7,7 +7,7 @@ FROM openresty/openresty:1.21.4.1-0-jammy ARG VERSION=2.1.3 # {{ x-release-please-end }} -ARG CPP_SDK_VERSION=3.10.1 +ARG CPP_SDK_VERSION=3.12.0 RUN apt-get update && apt-get install -y \ git netbase curl libssl-dev apt-transport-https ca-certificates \