From 92b01e8a90a3e3426ac2d62594a556361eae55a1 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Wed, 4 Aug 2021 21:19:48 +0300 Subject: [PATCH] fix: Fix `curl` image to version 7.77.0 Turns out the latest, `7.78.0` may have issues with DNS resolution from time to time (I experienced this locally). It is also a good practice to fix it to a specific version. --- CHANGELOG.md | 1 + install/install-wal2json.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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