From a0ee23724ff9c272061ab2622d014ce2290667ea Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Wed, 3 Jun 2026 23:35:26 +0200 Subject: [PATCH 1/2] Bump quic to 1.6.3 and webtransport to 0.3.1 webtransport 0.3.1 requires quic 1.6.3, so the two move together. No hackney code change needed. --- rebar.config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rebar.config b/rebar.config index 2a190081..56511478 100644 --- a/rebar.config +++ b/rebar.config @@ -53,11 +53,11 @@ {deps, [ %% Pure Erlang QUIC + HTTP/3 stack - {quic, "1.6.2"}, + {quic, "1.6.3"}, %% Pure Erlang HTTP/2 stack {h2, "0.8.0"}, %% WebTransport client (HTTP/3 and HTTP/2) - powers the wt_* API - {webtransport, "0.3.0"}, + {webtransport, "0.3.1"}, {idna, "~>7.1.0"}, {mimerl, "~>1.4"}, {certifi, "~>2.16.0"}, From 2e9b368ce0cef918a40518074a366ce9fe40d6ff Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Wed, 3 Jun 2026 23:49:59 +0200 Subject: [PATCH 2/2] Record quic 1.6.3 and webtransport 0.3.1 in the 4.2.0 changelog --- NEWS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index f7ee1820..9a52b45d 100644 --- a/NEWS.md +++ b/NEWS.md @@ -38,9 +38,9 @@ ### Dependencies -- quic 1.4.5 -> 1.6.2. +- quic 1.4.5 -> 1.6.3. - h2 0.6.1 -> 0.8.0. -- webtransport 0.2.6 -> 0.3.0. +- webtransport 0.2.6 -> 0.3.1. 4.1.0 - 2026-05-29 ------------------