Bump github.com/quic-go/quic-go from 0.51.0 to 0.54.1 #74

Closed
dependabot[bot] wants to merge 1 commit from dependabot/go_modules/github.com/quic-go/quic-go-0.54.1 into master
dependabot[bot] commented 2025-10-10 13:05:26 -04:00 (Migrated from github.com)

Bumps github.com/quic-go/quic-go from 0.51.0 to 0.54.1.

Release notes

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

v0.54.0

This release adds support for QUIC Stream Resets with Partial Delivery, a QUIC extension that allows resetting a stream, while guaranteeing delivery of stream data up to a certain byte offset (#5155, #5158, #5160, #5235, #5242, #5243). This extension is a requirement of newer versions of WebTransport over HTTP/3.

Other Notable Changes

  • http3: the package now doesn't depend on any internal quic-go packages: #5256
  • wire: return concrete structs (instead of a wire.Frame) for common frame types (STREAM, DATAGRAM, ACK), speeding up STREAM frame parsing by ~18%: #5253, #5227, thanks to @​jannis-seemann

Fixes

  • fix retransmission logic for path probing packets: #5241
  • close the Transport when DialAddr fails: #5259, thanks to @​rbqvq

Changelog

New Contributors

Full Changelog: https://github.com/quic-go/quic-go/compare/v0.53.0...v0.54.0

v0.53.0

This release introduces a massive overhaul of the quic-go API. See this blog post for more details about the motivation. Most users will need to make some changes when upgrading to this version.

  • The Connection interface was removed in favor of a Conn struct (#5195).
  • The ReceiveStream, SendStream and Stream interfaces were replaced with structs of the same name (#5149, #5172, #5173, #5214).

In most cases, migrating downstream code should be fairly straightforward. For example, a method that used to accept a quic.Connection as a parameter now needs to accept a *quic.Conn, and a function handling a quic.Stream now needs to handle a *quic.Stream. Of course, consumers of quic-go are free to define their own interfaces.

Similarly, on the HTTP/3 layer:

  • The Connection interface was replaced with a Conn struct (#5204).
  • The RequestStream interface was converted to a struct (#5153, #5216).
  • The Stream interface was converted to a struct (#5154).

... (truncated)

Commits
  • 0264fbc drop initial packets when the handshake is confirmed
  • c2e784a wire: optimize parsing logic for STREAM, DATAGRAM and ACK frames (#5227)
  • 893a594 wire: improve frame parsing benchmarks (#5263)
  • afe01ef close Transport when DialAddr fails (#5259)
  • 0a9c6ea http3: remove dependency on quic internal packages (#5256)
  • fd32cf5 fix flaky TestPostQuantumClientHello (#5253)
  • 0eb237f add a Config and ConnectionState flag for RESET_STREAM_AT (#5243)
  • 61d2fa5 http3: fix flaky TestConnGoAwayFailures (#5252)
  • dadc8db fix flaky TestServerReceiveQueue (#5249)
  • 3f3d309 fix flaky TestDrainServerAcceptQueue (#5247)
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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.

Note

Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [github.com/quic-go/quic-go](https://github.com/quic-go/quic-go) from 0.51.0 to 0.54.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.54.0</h2> <p>This release adds support for <a href="https://datatracker.ietf.org/doc/html/draft-ietf-quic-reliable-stream-reset-07">QUIC Stream Resets with Partial Delivery</a>, a QUIC extension that allows resetting a stream, while guaranteeing delivery of stream data up to a certain byte offset (<a href="https://redirect.github.com/quic-go/quic-go/issues/5155">#5155</a>, <a href="https://redirect.github.com/quic-go/quic-go/issues/5158">#5158</a>, <a href="https://redirect.github.com/quic-go/quic-go/issues/5160">#5160</a>, <a href="https://redirect.github.com/quic-go/quic-go/issues/5235">#5235</a>, <a href="https://redirect.github.com/quic-go/quic-go/issues/5242">#5242</a>, <a href="https://redirect.github.com/quic-go/quic-go/issues/5243">#5243</a>). This extension is a requirement of newer versions of <a href="https://datatracker.ietf.org/doc/draft-ietf-webtrans-http3/">WebTransport over HTTP/3</a>.</p> <h2>Other Notable Changes</h2> <ul> <li>http3: the package now doesn't depend on any internal quic-go packages: <a href="https://redirect.github.com/quic-go/quic-go/issues/5256">#5256</a></li> <li>wire: return concrete structs (instead of a <code>wire.Frame</code>) for common frame types (STREAM, DATAGRAM, ACK), speeding up STREAM frame parsing by ~18%: <a href="https://redirect.github.com/quic-go/quic-go/issues/5253">#5253</a>, <a href="https://redirect.github.com/quic-go/quic-go/issues/5227">#5227</a>, thanks to <a href="https://github.com/jannis-seemann"><code>@​jannis-seemann</code></a></li> </ul> <h2>Fixes</h2> <ul> <li>fix retransmission logic for path probing packets: <a href="https://redirect.github.com/quic-go/quic-go/issues/5241">#5241</a></li> <li>close the<code> Transport</code> when <code>DialAddr</code> fails: <a href="https://redirect.github.com/quic-go/quic-go/issues/5259">#5259</a>, thanks to <a href="https://github.com/rbqvq"><code>@​rbqvq</code></a></li> </ul> <h2>Changelog</h2> <ul> <li>fix retransmission logic for path probing packets 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/5241">quic-go/quic-go#5241</a></li> <li>implement receiver side behavior for RESET_STREAM_AT 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/5235">quic-go/quic-go#5235</a></li> <li>implement sender side behavior for RESET_STREAM_AT 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/5242">quic-go/quic-go#5242</a></li> <li>fix flaky TestTransportReplaceWithClosed 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/5245">quic-go/quic-go#5245</a></li> <li>fix flaky TestDrainServerAcceptQueue 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/5247">quic-go/quic-go#5247</a></li> <li>fix flaky TestServerReceiveQueue 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/5249">quic-go/quic-go#5249</a></li> <li>http3: fix flaky TestConnGoAwayFailures 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/5252">quic-go/quic-go#5252</a></li> <li>add a Config and ConnectionState flag for RESET_STREAM_AT 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/5243">quic-go/quic-go#5243</a></li> <li>fix flaky TestPostQuantumClientHello 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/5253">quic-go/quic-go#5253</a></li> <li>http3: Remove dependency on quic internal package by <a href="https://github.com/rthellend"><code>@​rthellend</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5256">quic-go/quic-go#5256</a></li> <li>close Transport when DialAddr fails by <a href="https://github.com/rbqvq"><code>@​rbqvq</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5259">quic-go/quic-go#5259</a></li> <li>wire: improve frame parsing benchmarks by <a href="https://github.com/jannis-seemann"><code>@​jannis-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5263">quic-go/quic-go#5263</a></li> <li>optimize parsing logic for STREAM, DATAGRAM and ACK frames by <a href="https://github.com/jannis-seemann"><code>@​jannis-seemann</code></a> in <a href="https://redirect.github.com/quic-go/quic-go/pull/5227">quic-go/quic-go#5227</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/rbqvq"><code>@​rbqvq</code></a> made their first contribution in <a href="https://redirect.github.com/quic-go/quic-go/pull/5259">quic-go/quic-go#5259</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/quic-go/quic-go/compare/v0.53.0...v0.54.0">https://github.com/quic-go/quic-go/compare/v0.53.0...v0.54.0</a></p> <h2>v0.53.0</h2> <p>This release introduces a massive overhaul of the quic-go API. See this <a href="https://seemann.io/posts/2025-06-25---quic-go-api-revamp/">blog post</a> for more details about the motivation. Most users will need to make some changes when upgrading to this version.</p> <ul> <li>The <code>Connection</code> interface was removed in favor of a <code>Conn</code> struct (<a href="https://redirect.github.com/quic-go/quic-go/issues/5195">#5195</a>).</li> <li>The <code>ReceiveStream</code>, <code>SendStream</code> and <code>Stream</code> interfaces were replaced with structs of the same name (<a href="https://redirect.github.com/quic-go/quic-go/issues/5149">#5149</a>, <a href="https://redirect.github.com/quic-go/quic-go/issues/5172">#5172</a>, <a href="https://redirect.github.com/quic-go/quic-go/issues/5173">#5173</a>, <a href="https://redirect.github.com/quic-go/quic-go/issues/5214">#5214</a>).</li> </ul> <p>In most cases, migrating downstream code should be fairly straightforward. For example, a method that used to accept a <code>quic.Connection</code> as a parameter now needs to accept a <code>*quic.Conn</code>, and a function handling a <code>quic.Stream</code> now needs to handle a <code>*quic.Stream</code>. Of course, consumers of quic-go are free to define their own interfaces.</p> <p>Similarly, on the HTTP/3 layer:</p> <ul> <li>The <code>Connection</code> interface was replaced with a <code>Conn</code> struct (<a href="https://redirect.github.com/quic-go/quic-go/issues/5204">#5204</a>).</li> <li>The <code>RequestStream</code> interface was converted to a struct (<a href="https://redirect.github.com/quic-go/quic-go/issues/5153">#5153</a>, <a href="https://redirect.github.com/quic-go/quic-go/issues/5216">#5216</a>).</li> <li>The <code>Stream</code> interface was converted to a struct (<a href="https://redirect.github.com/quic-go/quic-go/issues/5154">#5154</a>).</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/quic-go/quic-go/commit/0264fbc02e94a24370ff68005e02aa53f10add58"><code>0264fbc</code></a> drop initial packets when the handshake is confirmed</li> <li><a href="https://github.com/quic-go/quic-go/commit/c2e784aaf21fe66f55b166249d8c9dc9b0aa0fc7"><code>c2e784a</code></a> wire: optimize parsing logic for STREAM, DATAGRAM and ACK frames (<a href="https://redirect.github.com/quic-go/quic-go/issues/5227">#5227</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/893a5941fbb077255d14e93dd5b5c13c7e05fe4a"><code>893a594</code></a> wire: improve frame parsing benchmarks (<a href="https://redirect.github.com/quic-go/quic-go/issues/5263">#5263</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/afe01ef103a52e842adf7560662aa076458e0e16"><code>afe01ef</code></a> close Transport when DialAddr fails (<a href="https://redirect.github.com/quic-go/quic-go/issues/5259">#5259</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/0a9c6ea4c8c55e9c0616eb6efc571a420905e370"><code>0a9c6ea</code></a> http3: remove dependency on quic internal packages (<a href="https://redirect.github.com/quic-go/quic-go/issues/5256">#5256</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/fd32cf5c69a5941890d55041313a71a2e42a7773"><code>fd32cf5</code></a> fix flaky TestPostQuantumClientHello (<a href="https://redirect.github.com/quic-go/quic-go/issues/5253">#5253</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/0eb237f7973e232c73f58a4ebc7227c27070cbaa"><code>0eb237f</code></a> add a Config and ConnectionState flag for RESET_STREAM_AT (<a href="https://redirect.github.com/quic-go/quic-go/issues/5243">#5243</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/61d2fa57ac6e31baa363498325033fb73356096e"><code>61d2fa5</code></a> http3: fix flaky TestConnGoAwayFailures (<a href="https://redirect.github.com/quic-go/quic-go/issues/5252">#5252</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/dadc8db8360e09ef60ad164840d0812253d83daa"><code>dadc8db</code></a> fix flaky TestServerReceiveQueue (<a href="https://redirect.github.com/quic-go/quic-go/issues/5249">#5249</a>)</li> <li><a href="https://github.com/quic-go/quic-go/commit/3f3d3099b777207e312de49bdd062490fef0cae1"><code>3f3d309</code></a> fix flaky TestDrainServerAcceptQueue (<a href="https://redirect.github.com/quic-go/quic-go/issues/5247">#5247</a>)</li> <li>Additional commits viewable in <a href="https://github.com/quic-go/quic-go/compare/v0.51.0...v0.54.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.51.0&new-version=0.54.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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/esrrhs/pingtunnel/network/alerts). </details> > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
SATIT2540 (Migrated from github.com) approved these changes 2025-12-02 11:58:32 -05:00
belallay884-ship-it (Migrated from github.com) approved these changes 2025-12-09 07:47:56 -05:00
belallay884-ship-it (Migrated from github.com) left a comment

****
dependabot[bot] commented 2025-12-11 11:51:54 -05:00 (Migrated from github.com)

Superseded by #76.

Superseded by #76.

Pull request closed

Sign in to join this conversation.
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
esrrhs/pingtunnel!74
No description provided.