From 703e842b1373bfc133cad34b07cdb2db1f2cc6a4 Mon Sep 17 00:00:00 2001 From: Vsevolod Strukchinsky Date: Sat, 26 Sep 2026 17:12:24 +0500 Subject: [PATCH] deps: bump quic-go to v0.63.0 The v0.63.0 http3 breaking changes do not reach this module or webtransport-go v0.13.0. Extended CONNECT now leaves URL.Host and URL.Scheme empty, but only r.Host and r.URL.Path are read here, and both are still set. Stream errors now arrive as *http3.Error, but webtransport-go already handles both that and *quic.StreamError, and WebTransport data streams are plain QUIC streams. Verified with go test ./..., go test -race over session/relay/cmd, golangci-lint, and make interop-loopback (moqt:// and https://, 12/12). Co-Authored-By: Claude Opus 5.5 (1M context) --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 65f2a6da..134a1685 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ toolchain go1.27.0 require ( github.com/Eyevinn/mp4ff v0.56.0 github.com/lmittmann/tint v1.2.0 - github.com/quic-go/quic-go v0.62.0 + github.com/quic-go/quic-go v0.63.0 github.com/quic-go/webtransport-go v0.13.0 golang.org/x/sync v0.23.0 ) diff --git a/go.sum b/go.sum index 6fdd07eb..fb53e530 100644 --- a/go.sum +++ b/go.sum @@ -10,8 +10,8 @@ github.com/quic-go/go-ossfuzz-seeds v0.1.0 h1:APacT+iIaNF6fd8AGEiN3bT/Jtkd2jz4v4 github.com/quic-go/go-ossfuzz-seeds v0.1.0/go.mod h1:3IOHRbJIc+L6YKMwfDtJAM9Vj9k0YY4muhuyUYk5tbk= github.com/quic-go/qpack v0.6.0 h1:g7W+BMYynC1LbYLSqRt8PBg5Tgwxn214ZZR34VIOjz8= github.com/quic-go/qpack v0.6.0/go.mod h1:lUpLKChi8njB4ty2bFLX2x4gzDqXwUpaO1DP9qMDZII= -github.com/quic-go/quic-go v0.62.0 h1:ZHDjCk5OacATwGvs8PWE97CTvX7AqZiVoW7++ZOXTf8= -github.com/quic-go/quic-go v0.62.0/go.mod h1:RAro2j2yN9a9EiPACLHT9IB2NXCvGQmmo/alT0yYI0w= +github.com/quic-go/quic-go v0.63.0 h1:LIFGHI4PFUhhw2dDD1ARHdCff143ffMHwZtbnbuJ78A= +github.com/quic-go/quic-go v0.63.0/go.mod h1:RAro2j2yN9a9EiPACLHT9IB2NXCvGQmmo/alT0yYI0w= github.com/quic-go/webtransport-go v0.13.0 h1:RJLrTUHlTj8jJaQlQJUy0z0Mf7u1fVM0I6L1b9pe2M0= github.com/quic-go/webtransport-go v0.13.0/go.mod h1:K83X9YHbAqgSLO6ikS6BXCMdWOvqh9JTHALulvb2JVk= github.com/stretchr/testify v1.12.1 h1:EuwCh5fleGS7H32xRwO3wRGT7DxrDhLAT6FF8MpWDWE=