bump net 0.55#998
Open
shoaebjindani wants to merge 1 commit into
Open
Conversation
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.
Type of change
Improvement (improvement to code, performance, etc)
Description
Upgraded golang.org/x/net library to latest version across Go modules
This PR updates the golang.org/x/net library to the latest version (v0.55.0) in both Go projects within the codebase to ensure we have the latest security patches, bug fixes, and performance improvements.
Changes:
packages/fabric-deployer/go.mod:
Upgraded golang.org/x/net from v0.38.0 to v0.55.0
Updated Go version from 1.24.0 to 1.25.0
Related dependencies also updated:
golang.org/x/sys: v0.31.0 → v0.45.0
golang.org/x/term: v0.30.0 → v0.43.0
golang.org/x/text: v0.23.0 → v0.37.0
golang.org/x/tools: v0.21.1 → v0.44.0
packages/grpcwebproxy/go.mod:
Upgraded golang.org/x/net from v0.48.0 to v0.55.0
Updated Go version from 1.24.0 to 1.25.0
Related dependencies also updated:
golang.org/x/sys: v0.39.0 → v0.45.0
golang.org/x/text: v0.32.0 → v0.37.0
Motivation:
Keeping dependencies up-to-date is crucial for:
Security: Latest versions include important security patches
Stability: Bug fixes and improvements from the Go team
Compatibility: Ensures compatibility with the latest Go toolchain (1.25.0)
Performance: Benefits from performance optimizations in newer versions
All changes have been validated with go mod tidy to ensure dependency integrity.