Skip to content

Commit 1d8888d

Browse files
authored
fix: Bump SDK and redis source (#112)
1 parent 98b0754 commit 1d8888d

File tree

7 files changed

+11
-7
lines changed

7 files changed

+11
-7
lines changed

.github/actions/ci/action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ runs:
2727
luaVersion: ${{ inputs.lua-version }}
2828
- name: Install LuaRocks
2929
uses: luarocks/gh-actions-luarocks@8acd6db166a0162c375fa8647a0350fbec46940e
30+
with:
31+
luarocksVersion: "3.12.0"
3032
- name: Install Boost
3133
id: install-boost
3234
uses: MarkusJx/install-boost@v2.4.4
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
sdk=3.8.0
2-
redis_source=2.1.16
1+
sdk=3.9.0
2+
redis_source=2.1.19

.github/workflows/install-lua-sdk.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ jobs:
6161

6262
- name: Install LuaRocks
6363
uses: leafo/gh-actions-luarocks@e65774a6386cb4f24e293dca7fc4ff89165b64c5
64+
with:
65+
luarocksVersion: "3.12.0"
6466

6567
- name: Install Boost
6668
id: install-boost

README.md

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

2727
| Dependency | Minimum Version | Notes |
2828
|--------------------------------|--------------------------------------------------------------------------------------------------------------|--------------------------------------------|
29-
| C++ Server-Side SDK | [3.8.0](https://github.com/launchdarkly/cpp-sdks/releases/tag/launchdarkly-cpp-server-v3.8.0) | Required dependency. |
30-
| C++ Server-Side SDK with Redis | [2.1.16](https://github.com/launchdarkly/cpp-sdks/releases/tag/launchdarkly-cpp-server-redis-source-v2.1.16) | Optional, if using Redis as a data source. |
29+
| C++ Server-Side SDK | [3.9.0](https://github.com/launchdarkly/cpp-sdks/releases/tag/launchdarkly-cpp-server-v3.9.0) | Required dependency. |
30+
| 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. |
3131

3232

3333
3rd Party Dependencies

examples/hello-debian/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM debian:bookworm
44
ARG VERSION=2.1.2
55
# {{ x-release-please-end }}
66

7-
ARG CPP_SDK_VERSION=3.8.0
7+
ARG CPP_SDK_VERSION=3.9.0
88

99
# For unknown reasons, it appears that boost.json and boost.url aren't included in the
1010
# libboost-all package.

examples/hello-haproxy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM ubuntu:22.04
44
ARG VERSION=2.1.2
55
# {{ x-release-please-end }}
66

7-
ARG CPP_SDK_VERSION=3.8.0
7+
ARG CPP_SDK_VERSION=3.9.0
88

99
RUN apt-get update && apt-get install -y \
1010
curl luarocks lua5.3 lua5.3-dev \

examples/hello-nginx/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM openresty/openresty:1.21.4.1-0-jammy
77
ARG VERSION=2.1.2
88
# {{ x-release-please-end }}
99

10-
ARG CPP_SDK_VERSION=3.8.0
10+
ARG CPP_SDK_VERSION=3.9.0
1111

1212
RUN apt-get update && apt-get install -y \
1313
git netbase curl libssl-dev apt-transport-https ca-certificates \

0 commit comments

Comments
 (0)