From 7d5a2792c199611ab26e8821a31a2cd0912f34d9 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Wed, 13 Mar 2024 07:59:54 +0100 Subject: [PATCH] dnsdist: update to quiche 0.20.1 --- 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 77a3fea80a..4bdb547e8a 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.20.0' +readonly QUICHE_VERSION='0.20.1' readonly QUICHE_TARBALL="${QUICHE_VERSION}.tar.gz" readonly QUICHE_TARBALL_URL="https://github.com/cloudflare/quiche/archive/${QUICHE_TARBALL}" -readonly QUICHE_TARBALL_HASH='7125bc82ddcf38fbfbc69882ccb2723bfb4d5bfeb42718b8291d26ec06042e38' +readonly QUICHE_TARBALL_HASH='9c460d8ecf6c80c06bf9b42f91201ef33f912e2615a871ff2d0e50197b901c71' INSTALL_PREFIX=/usr SOEXT=so diff --git a/tasks.py b/tasks.py index 9c5fe5b305..99204880a3 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.20.0' -quiche_hash = '7125bc82ddcf38fbfbc69882ccb2723bfb4d5bfeb42718b8291d26ec06042e38' +quiche_version = '0.20.1' +quiche_hash = '9c460d8ecf6c80c06bf9b42f91201ef33f912e2615a871ff2d0e50197b901c71' all_build_deps = [ 'ccache', -- 2.47.2