dependabot[bot] opened a new pull request, #951: URL: https://github.com/apache/dubbo-go-samples/pull/951
Bumps [github.com/quic-go/quic-go](https://github.com/quic-go/quic-go) from 0.52.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.52.0...v0.54.1">compare view</a></li> </ul> </details> <br /> [](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 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/apache/dubbo-go-samples/network/alerts). </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
