Bump golang.org/x/net to v0.53.0 to fix CVE-2026-33814#129
Open
alexandrule wants to merge 1 commit into
Open
Conversation
Fixes an infinite loop in HTTP/2 SETTINGS frame processing when SETTINGS_MAX_FRAME_SIZE is 0. Also bumps x/crypto to v0.50.0 and x/text to v0.36.0 as co-released transitive updates. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Updates Golang x/* module dependencies to newer versions (and corresponding go.sum entries), likely for security fixes and compatibility improvements.
Changes:
- Bumped
golang.org/x/cryptotov0.50.0 - Bumped
golang.org/x/nettov0.53.0 - Bumped indirect
golang.org/x/texttov0.36.0and updatedgo.sum
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| go.mod | Updates required/indirect golang.org/x/* dependency versions. |
| go.sum | Refreshes checksums to match updated go.mod module versions. |
Comments suppressed due to low confidence (1)
go.mod:3
- The
godirective is set to1.26.3, which is very likely not a valid/available Go toolchain version and can break builds (e.g., CI or developers pinned to released Go versions). Update it to a released Go version used by this repo (typicallygo 1.xx.yorgo 1.xx) and align CI/toolchain configuration accordingly.
go 1.26.3
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Author
|
Hi! Do you know if there is any plan to merge this and publish a new Thruster release soon? |
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.
Fixes an infinite loop in HTTP/2 SETTINGS frame processing when
SETTINGS_MAX_FRAME_SIZE is 0. Also bumps x/crypto to v0.50.0 and
x/text to v0.36.0 as co-released transitive updates.
Co-Authored-By: Claude Sonnet 4.6 noreply@anthropic.com