Bump Go toolchain to 1.25.11 to fix stdlib vulnerabilities#101
Merged
Oguzhan Unlu (oguzhanunlu) merged 1 commit intoJun 8, 2026
Merged
Conversation
govulncheck flagged 12 vulnerabilities affecting the code, all in the Go standard library (crypto/tls, crypto/x509, net, net/http, net/url, net/textproto, os) reachable via the AWS SDK, Consul and Sentry deps. All are fixed by upgrading the toolchain from 1.24.11 to 1.25.11. - CI/CD go-version 1.24.11 -> 1.25.11 (fixes the released binary) - go.mod go directive 1.24.11 -> 1.25.11 - golang.org/x/sys 0.40.0 -> 0.44.0 (clears GO-2026-5024, not called) govulncheck now reports no vulnerabilities; build (linux/darwin/windows) and tests pass.
Enes Aldemir (spenes)
approved these changes
Jun 8, 2026
Merged
Oguzhan Unlu (oguzhanunlu)
added a commit
that referenced
this pull request
Jun 8, 2026
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.
What
govulncheckflagged 12 vulnerabilities affecting the code, all in the Go standard library (crypto/tls,crypto/x509,net,net/http,net/url,net/textproto,os) reachable transitively via the AWS SDK, Consul and Sentry deps. None are in third-party module code we call — all are fixed by upgrading the Go toolchain.Changes
go-version1.24.11→1.25.11(this is what produces the released binary, so it's the actual fix)go.modgodirective1.24.11→1.25.11golang.org/x/sys0.40.0→0.44.0— clears the one remaining module-level advisory (GO-2026-5024, not called by our code)Verification
govulncheck ./build/src/...→ No vulnerabilities found (was 12 affecting)makemake testpasses — 75.2% coverage