Conversation
d01093e to
8a90a20
Compare
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
fff4a4b to
847774a
Compare
847774a to
4cf616f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v0.52.0->v0.53.0v3.29.0->v3.29.13.6.0->3.6.2Release Notes
quic-go/quic-go (github.com/quic-go/quic-go)
v0.53.0Compare Source
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.
Connectioninterface was removed in favor of aConnstruct (#5195).ReceiveStream,SendStreamandStreaminterfaces 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.Connectionas a parameter now needs to accept a*quic.Conn, and a function handling aquic.Streamnow 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:
Connectioninterface was replaced with aConnstruct (#5204).RequestStreaminterface was converted to a struct (#5153, #5216).Streaminterface was converted to a struct (#5154).We expect that most HTTP/3 users won't need to adjust their code, if they use the package to run an HTTP/3 server and dial HTTP/3 connection. More advanced use cases, such as WebTransport and the various MASQUE protocols, will require updates. We have already released new versions of webtransport-go and masque-go to support these changes.
Other Breaking Changes
SingleDestinationRoundTripperwas removed (#5217)Notable Fixes and Improvements
ClientConn.Context,CloseWithErrorandConn: #5219RequestStreamcould be misused in many different ways, that's why we tightened the error checks (#5231)Behind The Scenes
We've completed the migration of the entire test suite away from Ginkgo (#3652) and towards standard Go tests (#5084, #5150, #5151, #5193, #5194, #5196, #5198). This was a major undertaking, spanning roughly 9 months and resulting in a complete rewrite of quic-go's test suite (> 40,000 lines of code!). Users will now benefit from a significantly slimmed-down dependency tree when upgrading.
Changelog
New Contributors
Full Changelog: quic-go/quic-go@v0.52.0...v0.53.0
github/codeql-action (github/codeql-action)
v3.29.1Compare Source
prettier/prettier (prettier)
v3.6.2Compare Source
diff
Markdown: Add missing blank line around code block (#17675 by @fisker)
v3.6.1Compare Source
diff
TypeScript: Allow const without initializer (#17650, #17654 by @fisker)
Miscellaneous: Avoid closing files multiple times (#17665 by @43081j)
When reading a file to infer the interpreter from a shebang, we use the
n-readlineslibrary to read the first line in order to get the shebang.This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if
n-readlinesdid not already closethem.
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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.