]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist: Update Quiche to 0.20.0 13736/head
authorRemi Gacogne <remi.gacogne@powerdns.com>
Tue, 23 Jan 2024 09:11:34 +0000 (10:11 +0100)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Tue, 23 Jan 2024 09:46:56 +0000 (10:46 +0100)
This fixes CVE-2023-6193, in addition to smaller fixes.

builder-support/helpers/install_quiche.sh
tasks.py

index 82f2501fbaa8cb23859e829ce5fb503367d21439..77a3fea80a3395e24a03d63208bf6b5a39d47afc 100755 (executable)
@@ -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
index 599f7690565d7e69d6a5cbf078a6fe0e41abf065..e9ef19ed4d10692b572383c8a80451b59476606f 100644 (file)
--- 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',