From: Otto Moerbeek Date: Wed, 13 Mar 2024 06:59:54 +0000 (+0100) Subject: dnsdist: update to quiche 0.20.1 X-Git-Tag: dnsdist-1.10.0-alpha0^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F13909%2Fhead;p=thirdparty%2Fpdns.git dnsdist: update to quiche 0.20.1 --- 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',