Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): Bump github.com/quic-go/quic-go from 0.44.0 to 0.45.0 #6019

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 7, 2024

Bumps github.com/quic-go/quic-go from 0.44.0 to 0.45.0.

Release notes

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

v0.45.0

New Features

Prometheus

quic-go now exports a few Prometheus metrics, allowing users to get an aggregate picture of what's going on inside their QUIC stack. Currently, only a basic set of metrics is exposed, but we plan to track more metrics in the future (#4554). Head to the documentation to learn how to enable metrics collection.

Prometheus metrics can be used (among others) to build Grafana dashboards, and we provide a sample Grafana dashboard in metrics/dashboard.

Tracing Handshake Progression using a custom context.Context

Users can now set and modify the context that's used on all callbacks called during the handshake, and returned from Connection.Context (#4507 and #4536). This allows identifying the connection as it progresses through the different handshake stages. The documentation has more details and code samples.

Better Path MTU Discovery

Path MTU Discovery is used to automatically determine the available MTU of the path, which allows us to send full-size packets. This is especially relevant for high-bandwidth transfers.

Our old PMTUD algorithm was susceptible to packet loss, leading to suboptimal results if an MTU probe packet experienced packet loss in the network. The new algorithm (#4545) is now resilient to the consecutive loss of up to two probe packets.

Breaking Changes

  • Connection.NextConnection now takes a context and correctly handles handshake failures (#4551)
  • qlog: DefaultTracer was renamed to DefaultConnectionTracer (#4556)
  • The ConnectionTracingKey is now deprecated. Use Transport.ConnContext to set your own tracing key (#4532)

Fixes

  • The server now correctly restores its QUIC transport parameters when resuming 0-RTT using a tls.Config that sets GetConfigForClient: (#4550)

Changelog

... (truncated)

Commits
  • 4d0562d metrics: add an example Grafana dashboard (#4559)
  • 0c84297 fix incorrect statement about Config.DisablePathMTUDiscovery (#4558)
  • cc9a5ee qlog: rename DefaultTracer to DefaultConnectionTracer (#4556)
  • 91221b4 metrics: simplify constructor for the default connection tracer (#4555)
  • 44e0147 pass a context to Transport.ConnContext (#4536)
  • 07acaad add context to EarlyConnection.NextConnection, handle handshake failures (#4551)
  • 0db3544 make Path MTU Discovery resilient to random packet loss (#4545)
  • 950de0d Merge pull request #4534 from quic-go/prometheus
  • a620f1a metrics: save the reason a connection was closed
  • 685c132 metrics: measure the handshake duration
  • 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 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)

@dependabot dependabot bot requested review from dshulyak and fasmat as code owners June 7, 2024 01:45
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 7, 2024
@dependabot dependabot bot requested a review from poszu as a code owner June 7, 2024 01:45
@dependabot dependabot bot added the go Pull requests that update Go code label Jun 7, 2024
@dependabot dependabot bot requested a review from ivan4th as a code owner June 7, 2024 01:45
@fasmat
Copy link
Member

fasmat commented Jun 7, 2024

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/go_modules/github.com/quic-go/quic-go-0.45.0 branch from 50fe5c2 to 7e9a674 Compare June 7, 2024 13:35
@fasmat fasmat self-requested a review June 7, 2024 15:01
Copy link
Contributor

@ivan4th ivan4th left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Blocked for now b/c it conflicts with #6018 and older go-libp2p can't use newer quic-go

@dependabot dependabot bot force-pushed the dependabot/go_modules/github.com/quic-go/quic-go-0.45.0 branch 5 times, most recently from e46cf95 to 67210c8 Compare June 13, 2024 10:27
@dependabot dependabot bot requested a review from acud as a code owner June 13, 2024 10:27
@dependabot dependabot bot force-pushed the dependabot/go_modules/github.com/quic-go/quic-go-0.45.0 branch 4 times, most recently from 11e59ec to 3528619 Compare June 19, 2024 11:01
Bumps [github.com/quic-go/quic-go](https://github.com/quic-go/quic-go) from 0.44.0 to 0.45.0.
- [Release notes](https://github.com/quic-go/quic-go/releases)
- [Changelog](https://github.com/quic-go/quic-go/blob/master/Changelog.md)
- [Commits](quic-go/quic-go@v0.44.0...v0.45.0)

---
updated-dependencies:
- dependency-name: github.com/quic-go/quic-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/github.com/quic-go/quic-go-0.45.0 branch from 3528619 to 689608e Compare June 21, 2024 14:11
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 24, 2024

Superseded by #6064.

@dependabot dependabot bot closed this Jun 24, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/github.com/quic-go/quic-go-0.45.0 branch June 24, 2024 01:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants