From 01fac9e2f80948efbe10885ae053dae3f23d67e6 Mon Sep 17 00:00:00 2001 From: Casey Waldren Date: Mon, 15 Jul 2024 14:44:07 -0700 Subject: [PATCH] fix(deps): bump C++ Server to 3.5.2 (#105) This pulls in a bugfix which significantly improves the logging experience when given an incorrect SDK key. --- .github/variables/cpp-sdk-versions.env | 4 ++-- examples/hello-debian/Dockerfile | 2 +- examples/hello-haproxy/Dockerfile | 2 +- examples/hello-nginx/Dockerfile | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/variables/cpp-sdk-versions.env b/.github/variables/cpp-sdk-versions.env index 7ce4884..c4d3b1b 100644 --- a/.github/variables/cpp-sdk-versions.env +++ b/.github/variables/cpp-sdk-versions.env @@ -1,2 +1,2 @@ -sdk=3.3.3 -redis_source=2.1.3 +sdk=3.5.2 +redis_source=2.1.10 diff --git a/examples/hello-debian/Dockerfile b/examples/hello-debian/Dockerfile index c6182e3..c189b84 100644 --- a/examples/hello-debian/Dockerfile +++ b/examples/hello-debian/Dockerfile @@ -4,7 +4,7 @@ FROM debian:bookworm ARG VERSION=2.1.0 # {{ x-release-please-end }} -ARG CPP_SDK_VERSION=3.3.3 +ARG CPP_SDK_VERSION=3.5.2 # 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 1e0b504..f68ec6d 100644 --- a/examples/hello-haproxy/Dockerfile +++ b/examples/hello-haproxy/Dockerfile @@ -4,7 +4,7 @@ FROM ubuntu:22.04 ARG VERSION=2.1.0 # {{ x-release-please-end }} -ARG CPP_SDK_VERSION=3.3.3 +ARG CPP_SDK_VERSION=3.5.2 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 e7960bc..67db5bb 100644 --- a/examples/hello-nginx/Dockerfile +++ b/examples/hello-nginx/Dockerfile @@ -4,7 +4,7 @@ FROM openresty/openresty:jammy ARG VERSION=2.1.0 # {{ x-release-please-end }} -ARG CPP_SDK_VERSION=3.3.3 +ARG CPP_SDK_VERSION=3.5.2 RUN apt-get update && apt-get install -y \ git netbase curl libssl-dev apt-transport-https ca-certificates \