fix: upgrade Go to 1.25.14 and x/sys for CVEs [branch-4.2] - #2135
Merged
Conversation
Backport of the fix on master to branch-4.2. Eight of the findings are Go stdlib (CVE-2026-33818, CVE-2026-39821, CVE-2026-46600, CVE-2026-56853, CVE-2026-56858, CVE-2026-56859, CVE-2026-56860, CVE-2026-56862) and come from the toolchain the binary is built with, so every go-version pin moves from 1.25.11 to 1.25.14 along with the go directive. The fix landed in 1.25.13; staying on the 1.25 line this branch already uses avoids a language version jump. The ninth is CVE-2026-39824, an integer overflow in NewNTUnicodeString, fixed by x/sys 0.39.0 -> 0.44.0. Builds clean. go vet reports the same pre-existing finding in pkg/test/pulsar/standalone_test.go as master, unrelated to these upgrades.
|
@merlimat:Thanks for your contribution. For this PR, do we need to update docs? |
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.
Backport of #2133 to
branch-4.2. Companion tostreamnative/sn-pulsar-plugins#2720 and streamnative/streamnative-bom#589.
godirective)golang.org/x/sys0.39.0 → 0.44.0Same shape as the prior CVE bump on this branch (#2101). The stdlib fix landed
in 1.25.13; staying on the 1.25 line this branch already uses. Unlike
branch-4.0 there is no
release.ymlhere, so the CI workflow pins are thecomplete set.
go.moddiff is exactly two lines. Builds clean;go vetshows only the samepre-existing
standalone_test.gofinding as master.Same fix in flight: #2133 (master), branch-4.0 PR.