From 3ba2d5659f093400fb23790d585c072231fd38d6 Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Fri, 17 Jul 2026 11:09:26 +0200 Subject: [PATCH] Bump quic to 1.7.1 A clean QUIC connection close no longer emits ERROR and CRASH reports from quic_h3_connection nor propagates an abnormal exit to the owner. Removes the teardown noise on idle pooled HTTP/3 connections and the intermittent eunit group cancellation in the h3/wt suites. --- NEWS.md | 11 +++++++++++ rebar.config | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index e919dc2d..fa19cb06 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,16 @@ # NEWS +unreleased +---------- + +### Changed + +- Bump `quic` to 1.7.1. A clean QUIC connection close (idle pooled HTTP/3 + connections, orderly shutdown) no longer emits ERROR and CRASH reports from + `quic_h3_connection` nor propagates an abnormal exit to the connection + owner. This also removes the intermittent eunit group cancellation in the + h3/wt test suites. + 4.7.1 - 2026-07-17 ------------------ diff --git a/rebar.config b/rebar.config index 00936e31..9c697951 100644 --- a/rebar.config +++ b/rebar.config @@ -53,7 +53,7 @@ {deps, [ %% Pure Erlang QUIC + HTTP/3 stack - {quic, "~>1.7.0"}, + {quic, "~>1.7.1"}, %% Pure Erlang HTTP/2 stack {h2, "~>0.11.0"}, %% WebTransport client (HTTP/3 and HTTP/2) - powers the wt_* API