From 91a4477f798c31f598e8e49068c0cd973bc7d162 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Tue, 23 Jan 2024 10:11:34 +0100 Subject: [PATCH] dnsdist: Update Quiche to 0.20.0 This fixes CVE-2023-6193, in addition to smaller fixes. --- builder-support/helpers/install_quiche.sh | 4 ++-- tasks.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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', -- 2.47.2