[PR #6337] Bump github.com/quic-go/quic-go from 0.55.0 to 0.59.1 #29390

Closed
opened 2026-08-05 08:07:59 -04:00 by saavagebueno · 0 comments
Owner

Original Pull Request: https://github.com/netbirdio/netbird/pull/6337

State: closed
Merged: No


Bumps github.com/quic-go/quic-go from 0.55.0 to 0.59.1.

Release notes

Sourced from github.com/quic-go/quic-go's releases.

v0.59.1

This patch release backports quic-go/quic-go#5642, which adds validation for HTTP/3 trailers.

v0.59.0

This release adds a couple of new features:

  • Adds an API to peek stream data on ReceiveStream and Stream: #5501
  • Adds an API to peek the next varint on a stream: #5502
  • Reworks the API exposed by the HTTP/3 package for WebTransport: #5509, #5512. Regular HTTP/3 use cases should not be affected by these changes.
  • Adds support for HTTP request trailers (trailers sent by the client): #5507

Breaking Changes

  • Removes the deprecated ClientHelloInfo: #5497
  • Removes the deprecated ConnectionTracingID and ConnectionTracingKey: #5521
  • http3: the qlogger is now closed after all streams have been handled: #5524
  • The ConnectionState now reports both the local and the remote status of the QUIC Datagram and Reliable Stream Reset extensions: #5533

Other Notable Fixes

  • Fixes an infinite loop of PING-only packets caused by a bug in the PTO queueing logic: #5538 and #5539
  • http3: Fixes a race condition between new request streams and GOAWAY: #5522
  • qlog: Fixes a race condition between RecordEvent and Close: #5523

Changelog

Full Changelog: https://github.com/quic-go/quic-go/compare/v0.58.0...v0.59.0

... (truncated)

Commits
  • 438abf0 http3: implement trailer validation logic (#5642)
  • 7659dd8 ackhandler: fix counting of packets queued for PTO probing (#5539)
  • bd4aea9 ackhandler: fix qlogging of outstanding packet count (#5538)
  • 76b3e07 ackhandler: remove unused declaredLost field in the packet (#5537)
  • 2020668 expose local and remote settings in ConnectionState (#5533)
  • d082d9f fix flaky TestHTTP3Qlog (#5532)
  • c5f15f2 http3: close qlogger after all streams have been handled (#5524)
  • f6dbf89 polish the security policy (#5526)
  • 29cb6ff qlogwriter: fix race between RecordEvent and Close (#5523)
  • e8a6e37 http3: fix race between new streams and GOAWAY (#5522)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.
**Original Pull Request:** https://github.com/netbirdio/netbird/pull/6337 **State:** closed **Merged:** No --- Bumps [github.com/quic-go/quic-go](https://github.com/quic-go/quic-go) from 0.55.0 to 0.59.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/quic-go/quic-go/releases">github.com/quic-go/quic-go's releases</a>.</em></p> <blockquote> <h2>v0.59.1</h2> <p>This patch release backports <a href="https://redirect.github.com/quic-go/quic-go/pull/5642">quic-go/quic-go#5642</a>, which adds validation for HTTP/3 trailers.</p> <h2>v0.59.0</h2> <p>This release adds a couple of new features:</p> <ul> <li>Adds an API to peek stream data on <code>ReceiveStream</code> and <code>Stream</code>: <a href="https://redirect.github.com/quic-go/quic-go/issues/5501">#5501</a></li> <li>Adds an API to peek the next varint on a stream: <a href="https://redirect.github.com/quic-go/quic-go/issues/5502">#5502</a></li> <li>Reworks the API exposed by the HTTP/3 package for WebTransport: <a href="https://redirect.github.com/quic-go/quic-go/issues/5509">#5509</a>, <a href="https://redirect.github.com/quic-go/quic-go/issues/5512">#5512</a>. Regular HTTP/3 use cases should not be affected by these changes.</li> <li>Adds support for HTTP request trailers (trailers sent by the client): <a href="https://redirect.github.com/quic-go/quic-go/issues/5507">#5507</a></li> </ul> <h2>Breaking Changes</h2> <ul> <li>Removes the deprecated <code>ClientHelloInfo</code>: <a href="https://redirect.github.com/quic-go/quic-go/issues/5497">#5497</a></li> <li>Removes the deprecated <code>ConnectionTracingID</code> and <code>ConnectionTracingKey</code>: <a href="https://redirect.github.com/quic-go/quic-go/issues/5521">#5521</a></li> <li>http3: the qlogger is now closed after all streams have been handled: <a href="https://redirect.github.com/quic-go/quic-go/issues/5524">#5524</a></li> <li>The <code>ConnectionState</code> now reports both the local and the remote status of the QUIC Datagram and Reliable Stream Reset extensions: <a href="https://redirect.github.com/quic-go/quic-go/issues/5533">#5533</a></li> </ul> <h2>Other Notable Fixes</h2> <ul> <li>Fixes an infinite loop of PING-only packets caused by a bug in the PTO queueing logic: <a href="https://redirect.github.com/quic-go/quic-go/issues/5538">#5538</a> and <a href="https://redirect.github.com/quic-go/quic-go/issues/5539">#5539</a></li> <li>http3: Fixes a race condition between new request streams and GOAWAY: <a href="https://redirect.github.com/quic-go/quic-go/issues/5522">#5522</a></li> <li>qlog: Fixes a race condition between <code>RecordEvent</code> and <code>Close</code>: <a href="https://redirect.github.com/quic-go/quic-go/issues/5523">#5523</a></li> </ul> <h2>Changelog</h2> <ul> <li>remove deprecated ClientHelloInfo by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5497">quic-go/quic-go#5497</a></li> <li>expose SetReliableBoundary method on the Stream by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5498">quic-go/quic-go#5498</a></li> <li>simplify ReceiveStream.Read implementation by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5500">quic-go/quic-go#5500</a></li> <li>ci: use codecov-action instead of codecov/test-results-action by <a href="https://github.com/Copilot"><code>@​Copilot</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5504">quic-go/quic-go#5504</a></li> <li>http3: add support for request trailers by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5507">quic-go/quic-go#5507</a></li> <li>http3: remove stream hijacking API by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5508">quic-go/quic-go#5508</a></li> <li>http3: remove Hijacker, add Settingser interface by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5509">quic-go/quic-go#5509</a></li> <li>implement a stream peeking API by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5501">quic-go/quic-go#5501</a></li> <li>ci: fix Codecov upload by untracking integrationtests before removal by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5511">quic-go/quic-go#5511</a></li> <li>quicvarint: implement function to peek the next varint by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5502">quic-go/quic-go#5502</a></li> <li>http3: implement new API to allow fine-grained control of connections by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5512">quic-go/quic-go#5512</a></li> <li>remove deprecated ConnectionTracingID and ConnectionTracingKey by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5521">quic-go/quic-go#5521</a></li> <li>http3: fix race between new streams and GOAWAY by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5522">quic-go/quic-go#5522</a></li> <li>qlogwriter: fix race between RecordEvent and Close by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5523">quic-go/quic-go#5523</a></li> <li>polish the security policy by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5526">quic-go/quic-go#5526</a></li> <li>http3: close qlogger after all streams have been handled by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5524">quic-go/quic-go#5524</a></li> <li>fix flaky TestHTTP3Qlog by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5532">quic-go/quic-go#5532</a></li> <li>expose local and remote settings in ConnectionState by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5533">quic-go/quic-go#5533</a></li> <li>ackhandler: fix qlogging of outstanding packet count by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5538">quic-go/quic-go#5538</a></li> <li>ackhandler: fix counting of packets queued for PTO probing by <a href="https://github.com/marten-seemann"><code>@​marten-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5539">quic-go/quic-go#5539</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/quic-go/quic-go/compare/v0.58.0...v0.59.0">https://github.com/quic-go/quic-go/compare/v0.58.0...v0.59.0</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/quic-go/quic-go/commit/438abf0e467326af9fd964636b4cc18cfbaf5298"><code>438abf0</code></a> http3: implement trailer validation logic (<a href="https://redirect.github.com/quic-go/quic-go/issues/5642">#5642</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/7659dd8e0fa06b41290ad29af323d93d673c6b36"><code>7659dd8</code></a> ackhandler: fix counting of packets queued for PTO probing (<a href="https://redirect.github.com/quic-go/quic-go/issues/5539">#5539</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/bd4aea9a35a20136850d49e085c74f4f712b5915"><code>bd4aea9</code></a> ackhandler: fix qlogging of outstanding packet count (<a href="https://redirect.github.com/quic-go/quic-go/issues/5538">#5538</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/76b3e072a1a50d6554730466ac191b344545d0e6"><code>76b3e07</code></a> ackhandler: remove unused declaredLost field in the packet (<a href="https://redirect.github.com/quic-go/quic-go/issues/5537">#5537</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/2020668fa071bc278891dc8c56c3f4367d988ad6"><code>2020668</code></a> expose local and remote settings in ConnectionState (<a href="https://redirect.github.com/quic-go/quic-go/issues/5533">#5533</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/d082d9f7e7e1b327c42bf761afcd5b5e82575245"><code>d082d9f</code></a> fix flaky TestHTTP3Qlog (<a href="https://redirect.github.com/quic-go/quic-go/issues/5532">#5532</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/c5f15f2d06b5bfdfbddb3ba2e429ed002e0d4200"><code>c5f15f2</code></a> http3: close qlogger after all streams have been handled (<a href="https://redirect.github.com/quic-go/quic-go/issues/5524">#5524</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/f6dbf89060d66880a8872083a64797945d87c999"><code>f6dbf89</code></a> polish the security policy (<a href="https://redirect.github.com/quic-go/quic-go/issues/5526">#5526</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/29cb6ff5bdbd06266e836f3312bc4d4a40b88396"><code>29cb6ff</code></a> qlogwriter: fix race between RecordEvent and Close (<a href="https://redirect.github.com/quic-go/quic-go/issues/5523">#5523</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/e8a6e37ed997ddccd45f983a1d2d352915d2c8d3"><code>e8a6e37</code></a> http3: fix race between new streams and GOAWAY (<a href="https://redirect.github.com/quic-go/quic-go/issues/5522">#5522</a>)</li> <li>Additional commits viewable in <a href="https://github.com/quic-go/quic-go/compare/v0.55.0...v0.59.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/quic-go/quic-go&package-manager=go_modules&previous-version=0.55.0&new-version=0.59.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/netbirdio/netbird/network/alerts). </details>
saavagebueno added the pull-request label 2026-08-05 08:07:59 -04:00
Sign in to join this conversation.
No Label pull-request
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: DYNR/netbird#29390