From: Remi Gacogne Date: Tue, 23 Jan 2024 09:11:34 +0000 (+0100) Subject: dnsdist: Update Quiche to 0.20.0 X-Git-Tag: dnsdist-1.9.0-rc1~9^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91a4477f798c31f598e8e49068c0cd973bc7d162;p=thirdparty%2Fpdns.git dnsdist: Update Quiche to 0.20.0 This fixes CVE-2023-6193, in addition to smaller fixes. --- diff --git a/builder-support/helpers/install_quiche.sh b/builder-support/helpers/install_quiche.sh index 82f2501fba..77a3fea80a 100755 --- a/builder-support/helpers/install_quiche.sh +++ b/builder-support/helpers/install_quiche.sh @@ -2,10 +2,10 @@ set -v set -e -readonly QUICHE_VERSION='0.18.0' +readonly QUICHE_VERSION='0.20.0' readonly QUICHE_TARBALL="${QUICHE_VERSION}.tar.gz" readonly QUICHE_TARBALL_URL="https://github.com/cloudflare/quiche/archive/${QUICHE_TARBALL}" -readonly QUICHE_TARBALL_HASH='eb242a14c4d801a90b57b6021dd29f7a62099f3a4d7a7ba889e105f8328e6c1f' +readonly QUICHE_TARBALL_HASH='7125bc82ddcf38fbfbc69882ccb2723bfb4d5bfeb42718b8291d26ec06042e38' INSTALL_PREFIX=/usr SOEXT=so diff --git a/tasks.py b/tasks.py index 599f769056..e9ef19ed4d 100644 --- a/tasks.py +++ b/tasks.py @@ -8,8 +8,8 @@ import time auth_backend_ip_addr = os.getenv('AUTH_BACKEND_IP_ADDR', '127.0.0.1') clang_version = os.getenv('CLANG_VERSION', '13') -quiche_version = '0.18.0' -quiche_hash = 'eb242a14c4d801a90b57b6021dd29f7a62099f3a4d7a7ba889e105f8328e6c1f' +quiche_version = '0.20.0' +quiche_hash = '7125bc82ddcf38fbfbc69882ccb2723bfb4d5bfeb42718b8291d26ec06042e38' all_build_deps = [ 'ccache',