diff --git a/CHANGELOG.md b/CHANGELOG.md index 611babda868..bd03a88950f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## Unreleased - feat: Support custom CA roots ([#27062](https://github.com/getsentry/sentry/pull/27062)), see the [docs](https://develop.sentry.dev/self-hosted/custom-ca-roots/) for more details. +- fix: Fix `curl` image to version 7.77.0 ## 21.7.0 diff --git a/install/install-wal2json.sh b/install/install-wal2json.sh index 47e390ea6ff..2973c0034df 100644 --- a/install/install-wal2json.sh +++ b/install/install-wal2json.sh @@ -7,7 +7,7 @@ FILE_NAME="wal2json-Linux-$ARCH-glibc.so" docker_curl() { # The environment variables can be specified in lower case or upper case. # The lower case version has precedence. http_proxy is an exception as it is only available in lower case. - docker run --rm -e http_proxy -e https_proxy -e HTTPS_PROXY -e no_proxy -e NO_PROXY curlimages/curl "$@" + docker run --rm -e http_proxy -e https_proxy -e HTTPS_PROXY -e no_proxy -e NO_PROXY curlimages/curl:7.77.0 "$@" } if [[ $WAL2JSON_VERSION == "latest" ]]; then