From ca349e3d4580ee0310546cfa723285cb68d9c0ea Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Wed, 3 Jun 2026 22:09:37 +0200 Subject: [PATCH] Bump h2 to 0.8.0 and webtransport to 0.3.0 webtransport 0.3.0 requires h2 0.8.0 and quic 1.6.2, which hackney already pins, so the three line up. No hackney code change needed. --- rebar.config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rebar.config b/rebar.config index 7684ee60..2a190081 100644 --- a/rebar.config +++ b/rebar.config @@ -55,9 +55,9 @@ %% Pure Erlang QUIC + HTTP/3 stack {quic, "1.6.2"}, %% Pure Erlang HTTP/2 stack - {h2, "0.6.1"}, + {h2, "0.8.0"}, %% WebTransport client (HTTP/3 and HTTP/2) - powers the wt_* API - {webtransport, "0.2.6"}, + {webtransport, "0.3.0"}, {idna, "~>7.1.0"}, {mimerl, "~>1.4"}, {certifi, "~>2.16.0"},