Bump golang.org/x/net to 0.56.0, golang.org/x/sys to 0.46.0 and golang.org/x/text to 0.39.0 - #71827
Merged
Merged
Conversation
…g.org/x/text to 0.39.0 Signed-off-by: ivonaest <ivona.cvija@est.tech>
ivonaest
requested review from
amoghrajesh,
ashb and
jason810496
as code owners
August 19, 2026 09:39
jason810496
reviewed
Aug 19, 2026
jason810496
left a comment
Member
There was a problem hiding this comment.
We need to fix the go.mod in Lang-SDK k8s test as well, thanks.
Check lang-SDK Go example module is tidy against the Go SDK..................................................Failed
- hook id: check-go-example-mod-tidy
- exit code: 1
ERROR: kubernetes-tests/lang_sdk/go_example is not tidy.
It is a separate Go module that resolves the SDK via a `replace` onto go-sdk,
so it keeps its own copy of the SDK's indirect requirements. A dependency moved in
go-sdk without this module being re-tidied, which breaks the
'Kubernetes tests / K8S Lang-SDK' bundle build on every pull request once merged.
Fix it in this PR by running:
(cd kubernetes-tests/lang_sdk/go_example && go mod tidy)
and committing the resulting go.mod / go.sum changes.
Signed-off-by: ivonaest <ivona.cvija@est.tech>
jason810496
approved these changes
Aug 20, 2026
jason810496
left a comment
Member
There was a problem hiding this comment.
I didn't find any security or compatibility regression, thanks.
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.
Update indirect Go dependencies in
go-sdk/to address known CVEs:golang.org/x/net0.55.0 → 0.56.0golang.org/x/sys0.45.0 → 0.46.0golang.org/x/text0.37.0 → 0.39.0Build and all tests pass.