Skip to content

Commit d5c3ed2

Browse files
authored
ci: bump cpp SDK to bring in user-agent fix (#92)
CPP server had a bug where it was sending a `CPPClient` as its user-agent. This bumps the default version used in Lua's CI and examples. This also updates the README minimum versions since this bug affects usage statistics.
1 parent 6d1259f commit d5c3ed2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/actions/install-cpp-sdk-redis/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ inputs:
44
version:
55
required: true
66
description: "Version of the C++ SDK with Redis Source."
7-
default: "launchdarkly-cpp-server-redis-source-v2.1.0"
7+
default: "launchdarkly-cpp-server-redis-source-v2.1.2"
88
path:
99
description: "Where to download the SDK."
1010
default: "cpp-sdk"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ If Redis support is desired, then it optionally depends on the C++ server-side S
2525

2626
| Dependency | Minimum Version | Notes |
2727
|--------------------------------|------------------------------------------------------------------------------------------------------------|--------------------------------------------|
28-
| C++ Server-Side SDK | [3.3.0](https://github.com/launchdarkly/cpp-sdks/releases/tag/launchdarkly-cpp-server-v3.3.0) | Required dependency. |
29-
| C++ Server-Side SDK with Redis | [2.1.0](https://github.com/launchdarkly/cpp-sdks/releases/tag/launchdarkly-cpp-server-redis-source-v2.1.0) | Optional, if using Redis as a data source. |
28+
| C++ Server-Side SDK | [3.3.2](https://github.com/launchdarkly/cpp-sdks/releases/tag/launchdarkly-cpp-server-v3.3.2) | Required dependency. |
29+
| C++ Server-Side SDK with Redis | [2.1.2](https://github.com/launchdarkly/cpp-sdks/releases/tag/launchdarkly-cpp-server-redis-source-v2.1.2) | Optional, if using Redis as a data source. |
3030

3131

3232
3rd Party Dependencies

examples/hello-haproxy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN add-apt-repository ppa:mhier/libboost-latest && \
1313
apt-get update && \
1414
apt-get install -y boost1.81
1515

16-
RUN curl https://github.com/launchdarkly/cpp-sdks/releases/download/launchdarkly-cpp-server-v3.3.1/linux-gcc-x64-dynamic.zip -L -o /tmp/sdk.zip && \
16+
RUN curl https://github.com/launchdarkly/cpp-sdks/releases/download/launchdarkly-cpp-server-v3.3.2/linux-gcc-x64-dynamic.zip -L -o /tmp/sdk.zip && \
1717
mkdir ./cpp-sdk && \
1818
unzip /tmp/sdk.zip -d ./cpp-sdk && \
1919
rm /tmp/sdk.zip

examples/hello-nginx/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN add-apt-repository ppa:mhier/libboost-latest && \
1515

1616

1717
RUN mkdir cpp-sdk-libs
18-
RUN git clone --branch launchdarkly-cpp-server-v3.3.1 https://github.com/launchdarkly/cpp-sdks.git && \
18+
RUN git clone --branch launchdarkly-cpp-server-v3.3.2 https://github.com/launchdarkly/cpp-sdks.git && \
1919
cd cpp-sdks && \
2020
mkdir build-dynamic && \
2121
cd build-dynamic && \

0 commit comments

Comments
 (0)