Skip to content

chore(deps): update module github.com/lucas-clemente/quic-go to v0.48.2 - autoclosed #71

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 16, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/lucas-clemente/quic-go v0.25.0 -> v0.48.2 age adoption passing confidence

Release Notes

lucas-clemente/quic-go (github.com/lucas-clemente/quic-go)

v0.48.2

Compare Source

This patch release contains fixes for three bugs.

Changelog

Full Changelog: quic-go/quic-go@v0.48.1...v0.48.2

v0.48.1

Compare Source

This patch releases fixes a panic in the shutdown logic of the http3.Server that was introduced in v0.48.0. Thanks to @​WeidiDeng for the fix!

Changelog

Full Changelog: quic-go/quic-go@v0.48.0...v0.48.1

v0.48.0

Compare Source

New Features

The http3.Server now supports graceful shutdown: calling Shutdown stops the server from accepting new connections, and new HTTP requests on existing connections. It continues serving existing connections until all active requests have completed (or the context is canceled).

On the wire, graceful shutdown is signaled by sending a GOAWAY frame. This tells the client that the server will not accept any new requests. Clients are expected to finish existing requests and then close the QUIC connection.

Client-side support for graceful shutdown is not implemented yet (see #​153).

Breaking Changes

  • The HTTP/3 client API was made more consistent with the Go standard library's HTTP/1 and HTTP/2 naming: #​4693
  • The deprecated qlog.DefaultTracer function was removed: #​4697
  • The deprecated http3.Server.SetQuicHeader method and http3.ListenAndServe were removed: #​4698
  • http3.Server.Close now closes immediately all QUIC connections: #​4689

Note that all connection passed to http3.Server.ServeQUICConn need to be closed by the caller, before calling http3.Server.Close.

Notable Fixes

  • Canceling a stream after connection termination now doesn't change the error returned from Stream.Write and Stream.Read (thanks to @​sukunrt for the fix): #​4673
  • HTTP/3 Capsule Parsing logic didn't work for capsules that weren't read with a single Read call: #​4683

Behind The Scenes

We've started migrating our test suite away from Ginkgo (tracking issue: #​3652), and towards a more idiomatic approach to testing Go code (using require). This is a massive endevour, as our test suite is around 47k LOC.

In this release, a large number of Go packages were translated: #​4640, #​4641, #​4642, #​4643, #​4649, #​4650, #​4652, #​4662, #​4670, #​4671, #​4675, #​4667, #​4676, #​4680, #​4681.

In the upcoming release(s), we will continue this work.

Changelog

Full Changelog: quic-go/quic-go@v0.47.0...v0.48.0

v0.47.0

Compare Source

New Features

This release adds support for HTTP/3 Trailers, for both the server and the client side (#​4581, #​4630, #​4656, #​4639). Trailers work exactly the same way as for HTTP/1.1 and HTTP/2.

A big thank you to @​sudorandom for contributing this feature!

Fixes

  • idle timeout calculation when the peer sends a max_idle_timeout of 0 (or omits the transport parameter): #​4666
  • fix handling of corrupted coalesced 1-RTT packets: #​4663
  • qpack: don't reject literal field lines with name references if N bit is set to 1: https://github.com/quic-go/qpack/pull/52
  • http3: correctly set the http.Response.ContentLength on responses that don't set the Content-Length header: #​4645
  • http3: reject connection-specific header fields (Connection, Keep-Alive, Proxy-Connection, Transfer-Encoding, Upgrade and TE != "trailers"): #​4646, #​4655

Breaking Changes

  • quic.VersionNumber and logging.VersionNumber were removed: #​4627

Heads-Up

@​sukunrt recently discovered and reported a race condition in the new time.Timer stopping logic introduced in Go 1.23. This manifests as a connection deadlock in quic-go. See #​4659 and https://github.com/golang/go/issues/69312 for more details. The new behavior is enabled when compiling with Go 1.23.x, and when the Go version in go.mod is set to Go 1.23.x.

Until this issue is fixed, it is recommended to either use Go 1.22.x, or to use GODEBUG="asynctimerchan=1" when compiling quic-go.

Update (Oct 1st 2024)

The Go project backported the fix (https://github.com/golang/go/issues/69333) to the 1.23 branch, and released it in Go 1.23.2. This resolves above-mentioned issue. quic-go can now be built with Go 1.23.2, without the need to set any GODEBUG flags.

Changelog

New Contributors

Full Changelog: quic-go/quic-go@v0.46.0...v0.47.0

v0.46.0

Compare Source

New Features

  • The http3.Server now has an IdleTimeout field: #​4587. It works analogous to its HTTP/2 standard library equivalent: If no requests are received for the idle timeout period, the underlying QUIC connection is closed. Thanks to @​rs for implementing.
  • The qlog file format was updated to the current qlog draft, which now uses JSON sequences (JSON-SEQ): #​4609. qlog files now have the file extension .sqlog.

Breaking Changes

  • logging.VersionNumber was renamed to logging.Version (#​4621), mirroring a similar renaming of quic.VersionNumber to quic.Version introduced in an earlier release
  • internal_error TLS alerts are now sent as QUIC CRYPTO_ERRORs (and not INTERNAL_ERRORs): #​4601

Other Notable Changes

The stream logic for queueing stream-related control frames (RESET_STREAM, STOP_SENDING, MAX_STREAM_DATA, STREAM_DATA_BLOCKED) was completely rewritten. This makes quic-go more resilient to memory exhaustion attacks similar to those that we've seen earlier this year (1 and 2). It also enables further frame packing optimizations in the future.

Changelog

Full Changelog: quic-go/quic-go@v0.45.0...v0.46.0

v0.45.2

Compare Source

This patch release fixes a bug in the stream state machine, which could lead to streams not being properly marked completed: #​4605.

Thanks to @​sukunrt for discovering and fixing this bug.

v0.45.1

Compare Source

This patch release contains two fixes:

  • The new Prometheus metrics DefaultConnectionTracer was implemented incorrectly, leading to incorrect metrics being collected: #​4560
  • The http3.RoundTripper was caching the dial error (#​4561). Instead, we should re-dial the QUIC connection: #​4573

Full Changelog: quic-go/quic-go@v0.45.0...v0.45.1

v0.45.0

Compare Source

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

Full Changelog: quic-go/quic-go@v0.44.0...v0.45.0

v0.44.0

Compare Source

v0.44 contains a lot of fixes related to HTTP Datagrams, new logic to determine (and configure) the QUIC packet size, as well as a significant speedup of the various parsers.

HTTP Datagram-related Fixes

The last release introduced support for HTTP Datagrams (RFC 9297). This release resolves a number of problems we discovered in the initial implementation:

QUIC Packet Size and Path MTU Discovery

Speeding up Parsing the variable-length Integers

The QUIC varint parser was rewritten to act on byte slices instead of a bytes.Reader. This is significantly faster (https://github.com/quic-go/quic-go/pull/4475). The new parser is now used for parsing QUIC frames (https://github.com/quic-go/quic-go/pull/4484), the QUIC packet header (https://github.com/quic-go/quic-go/pull/4481), the QUIC transport parameters (https://github.com/quic-go/quic-go/pull/4483) and HTTP datagrams (https://github.com/quic-go/quic-go/pull/4478).

Other Notable Changes

quic-go needs your support!

Is your project / company relying on quic-go?
Please consider funding the project. Any support is highly appreciated!

What's Changed

New Contributors

Full Changelog: quic-go/quic-go@v0.43.0...v0.44.0

v0.43.1

Compare Source

This is a patch release that fixes a regression when calling http3.Server.ConnContext introduced in v0.43.0.

Changelog

Full Changelog: quic-go/quic-go@v0.43.0...v0.43.1

v0.43.0

Compare Source

quic-go.net: Launching a new Documentation Site

With this release, we're launching a new documentation site for the quic-go projects (quic-go itself, HTTP/3, webtransport-go, and soon, masque-go): quic-go.net.

The documentation site aims to explain QUIC concepts and how they are made accessible using quic-go's API. This site replaces the wiki, and the ever-growing README files.

A lot of work has gone into the documentation already, but we're by no means done yet. The entire source is public in https://github.com/quic-go/docs/, and we're happy about community contributions.

HTTP Datagrams (RFC 9297)

This release adds support for HTTP Datagrams (RFC 9297), both on the client and on the server side (#​4452). HTTP Datagrams are used in WebTransport in CONNECT-UDP (RFC 9298), among others.

The new API for HTTP Datagrams is described on the new documentation page: HTTP Datagrams. The integration of HTTP Datagram support necessitated a comprehensive refactor of the HTTP/3 package, resulting in several breaking API changes listed below.

Breaking Changes

  • quicvarint: functions now return an int instead the internal protocol.ByteCount (#​4365)
  • http3: Server.SetQuicHeaders was renamed to SetQUICHeaders (#​4377)
  • http3: Server.QuicConfig was renamed to QUICConfig (#​4384)
  • http3: RoundTripper.QuicConfig was renamed to QUICConfig (#​4385)
  • http3: RoundTripOpt.CheckSettings was removed (#​4416). Use the newSingleDestinationRoundTripper API instead.
  • http3: the HTTPStreamer interface is now implemented by the http.ResponseWriter (and not the http.Request.Body) (#​4469)
  • include the maximum payload size in the DatagramTooLargeError (#​4470)

Other Notable Changes

  • GSO and ECN is disabled on kernel versions older than 5 (#​4456)
  • http3: logging can be controlled using an slog.Logger (#​4449)
  • http3: HEAD requests can now be sent in 0-RTT (#​4378)
  • http3: duplicate QPACK encoder and decoder streams are not rejected as required by the RFC (#​4388)
  • http3: Extended CONNECT are blocked until the server's SETTINGS are received, as required by the RFC (#​4450)
  • http3: HTTP/3 client connections aren't removed if RoundTrip errors due to a cancelled context (#​4448). Thanks to @​GeorgeMac!
  • http3: sniff Content-Type when flushing the ResponseWriter (#​4412). Thanks to @​WeidiDeng!
  • The Context exposed on the quic.Stream is now derived from the connection's context (#​4414)
  • The UDP send and receive buffer size was increased to 7 MiB (#​4455). Thanks to @​bt90!

Clarifications on the QUIC Stream State Machine

Calling CancelWrite after Close

After a long and fruitful discussion (#​4404), we decided to clarify that calling CancelWrite after Close on a SendStream (or a bidirectional stream) should cause a state transition from the "Data Sent" to the "Reset Sent" state, as described in section 3.1 of RFC 9000. This matches the current behavior of quic-go, however, it didn't match the API documentation (fixed in #​4419).

This means that stream data will not be delivered reliably if CancelWrite is called, and that this applies even if Close was called before.

Garbage Collection of Streams

This release also changes the way streams are garbage-collected (and the peer is granted additional limit to open a new stream), once they're not needed anymore, in a subtle way:

  • for the send direction of streams: #​4445
  • for the receive direction of a stream: #​4460

Thanks to @​sukunrt for extremely thorough and helpful reviews on both these PRs!

quic-go needs your support!

Is your project / company relying on quic-go?
Please consider funding the project. Any support is highly appreciated!

Changelog


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@trafico-bot trafico-bot bot added the 🔍 Ready for Review Pull Request is not reviewed yet label Dec 16, 2022
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch 3 times, most recently from ee22187 to d7e3dcc Compare December 17, 2022 13:28
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.31.1 Update module github.com/lucas-clemente/quic-go to v0.31.1 Dec 17, 2022
@renovate renovate bot changed the title Update module github.com/lucas-clemente/quic-go to v0.31.1 chore(deps): update module github.com/lucas-clemente/quic-go to v0.31.1 Dec 17, 2022
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from d7e3dcc to da12246 Compare December 18, 2022 08:31
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from da12246 to d0f3daf Compare December 25, 2022 19:46
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from d0f3daf to aaaefd0 Compare January 17, 2023 20:24
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from aaaefd0 to 4aa2d8f Compare January 25, 2023 18:01
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from 4aa2d8f to 8cbfa79 Compare February 2, 2023 03:54
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.31.1 chore(deps): update module github.com/lucas-clemente/quic-go to v0.32.0 Feb 2, 2023
@renovate
Copy link
Contributor Author

renovate bot commented Feb 2, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: old/config/go/go.sum
Command failed: go get -d -t ./...
go: github.com/lucas-clemente/[email protected] (replaced by github.com/lucas-clemente/[email protected]): parsing go.mod:
	module declares its path as: github.com/quic-go/quic-go
	        but was required as: github.com/lucas-clemente/quic-go

@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from 8cbfa79 to e591ec2 Compare February 22, 2023 09:21
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.32.0 chore(deps): update module github.com/lucas-clemente/quic-go to v0.33.0 Feb 22, 2023
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from e591ec2 to b09f470 Compare April 20, 2023 10:30
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.33.0 chore(deps): update module github.com/lucas-clemente/quic-go to v0.34.0 Apr 20, 2023
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from b09f470 to 877dd66 Compare May 30, 2023 08:01
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.34.0 chore(deps): update module github.com/lucas-clemente/quic-go to v0.35.0 May 30, 2023
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from 877dd66 to 59a9afa Compare June 1, 2023 10:54
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.35.0 chore(deps): update module github.com/lucas-clemente/quic-go to v0.35.1 Jun 1, 2023
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from 59a9afa to 8c41f8f Compare June 21, 2023 12:24
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.35.1 chore(deps): update module github.com/lucas-clemente/quic-go to v0.36.0 Jun 21, 2023
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from 8c41f8f to ae573c2 Compare July 1, 2023 19:16
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.36.0 chore(deps): update module github.com/lucas-clemente/quic-go to v0.36.1 Jul 1, 2023
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from ae573c2 to f4c3ddd Compare July 12, 2023 19:00
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.36.1 chore(deps): update module github.com/lucas-clemente/quic-go to v0.36.2 Jul 12, 2023
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from f4c3ddd to 9548e41 Compare July 21, 2023 19:21
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.36.2 chore(deps): update module github.com/lucas-clemente/quic-go to v0.37.0 Jul 21, 2023
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from 9548e41 to b89702a Compare August 1, 2023 07:53
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.40.1 chore(deps): update module github.com/lucas-clemente/quic-go to v0.41.0 Jan 17, 2024
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from ca10746 to 575c888 Compare March 18, 2024 01:35
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.41.0 chore(deps): update module github.com/lucas-clemente/quic-go to v0.42.0 Mar 18, 2024
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from 575c888 to 57aab8d Compare April 27, 2024 15:53
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.42.0 chore(deps): update module github.com/lucas-clemente/quic-go to v0.43.0 Apr 27, 2024
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from 57aab8d to 4fbc1f7 Compare May 4, 2024 23:07
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.43.0 chore(deps): update module github.com/lucas-clemente/quic-go to v0.43.1 May 4, 2024
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from 4fbc1f7 to cc5660e Compare May 19, 2024 03:56
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.43.1 chore(deps): update module github.com/lucas-clemente/quic-go to v0.44.0 May 19, 2024
Copy link
Contributor Author

renovate bot commented May 19, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: old/config/go/go.sum
Command failed: go get -d -t ./...
go: -d flag is deprecated. -d=true is a no-op
go: github.com/lucas-clemente/[email protected] (replaced by github.com/lucas-clemente/[email protected]): parsing go.mod:
	module declares its path as: github.com/quic-go/quic-go
	        but was required as: github.com/lucas-clemente/quic-go

@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from cc5660e to f297d1f Compare June 6, 2024 13:28
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.44.0 chore(deps): update module github.com/lucas-clemente/quic-go to v0.45.0 Jun 6, 2024
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from f297d1f to be640b6 Compare June 23, 2024 07:12
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.45.0 chore(deps): update module github.com/lucas-clemente/quic-go to v0.45.1 Jun 23, 2024
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from be640b6 to dbc0047 Compare August 1, 2024 22:52
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.45.1 chore(deps): update module github.com/lucas-clemente/quic-go to v0.45.2 Aug 1, 2024
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from dbc0047 to b83bd9a Compare August 7, 2024 02:40
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.45.2 chore(deps): update module github.com/lucas-clemente/quic-go to v0.46.0 Aug 7, 2024
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from b83bd9a to 072ee74 Compare September 8, 2024 13:00
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.46.0 chore(deps): update module github.com/lucas-clemente/quic-go to v0.47.0 Sep 8, 2024
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from 072ee74 to 452e547 Compare October 15, 2024 09:49
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.47.0 chore(deps): update module github.com/lucas-clemente/quic-go to v0.48.0 Oct 15, 2024
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from 452e547 to e9332b1 Compare October 22, 2024 09:05
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.48.0 chore(deps): update module github.com/lucas-clemente/quic-go to v0.48.1 Oct 22, 2024
@renovate renovate bot force-pushed the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch from e9332b1 to 7caeb84 Compare November 26, 2024 07:38
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.48.1 chore(deps): update module github.com/lucas-clemente/quic-go to v0.48.2 Nov 26, 2024
@renovate renovate bot changed the title chore(deps): update module github.com/lucas-clemente/quic-go to v0.48.2 chore(deps): update module github.com/lucas-clemente/quic-go to v0.48.2 - autoclosed Dec 4, 2024
@renovate renovate bot closed this Dec 4, 2024
@renovate renovate bot deleted the renovate/github.jparrowsec.cn-lucas-clemente-quic-go-0.x branch December 4, 2024 14:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🔍 Ready for Review Pull Request is not reviewed yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants