From e77b7b777c1898f195148edb16d74005d770e792 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Wed, 12 Aug 2026 07:43:37 +0200 Subject: [PATCH] Bump h2 to 0.12.0 and webtransport to 0.4.5 h2 0.12.0 adds serve_socket/2 and moves the TLS handshake into the per-connection process. Both are server side, so the client is unaffected. --- rebar.config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rebar.config b/rebar.config index 94b99821..cc009f0b 100644 --- a/rebar.config +++ b/rebar.config @@ -55,9 +55,9 @@ %% Pure Erlang QUIC + HTTP/3 stack {quic, "~>1.8.0"}, %% Pure Erlang HTTP/2 stack - {h2, "~>0.11.0"}, + {h2, "~>0.12.0"}, %% WebTransport client (HTTP/3 and HTTP/2) - powers the wt_* API - {webtransport, "~>0.4.4"}, + {webtransport, "~>0.4.5"}, {idna, "~>7.1.0"}, {mimerl, "~>1.5"}, {certifi, "~>2.17.0"},