Bump Go 1.26.3→1.26.4 (stdlib crypto/x509, mime, net/textproto CVE fixes)#3608
Open
max-santiago wants to merge 1 commit into
Open
Bump Go 1.26.3→1.26.4 (stdlib crypto/x509, mime, net/textproto CVE fixes)#3608max-santiago wants to merge 1 commit into
max-santiago wants to merge 1 commit into
Conversation
|
@max-santiago is attempting to deploy a commit to the Temporal Team on Vercel. A member of the Team first needs to authorize it. |
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.
Description & motivation 💭
Bumps the Go toolchain
1.26.3→1.26.4inserver/Dockerfile(both theserver-builderanddockerize-builderstages) and thegodirective inserver/go.mod. No dependency changes, sogo.sumis untouched.This is the same kind of change as #3409 — clearing Go-toolchain CVEs flagged
against the
temporalio/ui-serverDocker image to avoid vulnerability-scannernoise. None are exploitable in a normal Temporal UI deployment; all three fixes
land in the standard library, which is compiled in from the toolchain, so a
toolchain bump is the whole fix.
Go 1.26.4 (released 2026-06-02)
security fixes:
mime: quadratic complexity inWordDecoder.DecodeHeadernet/textproto: input included in errors without escaping(log / terminal-control-byte injection)
crypto/x509: quadratic hostname verification with largeDNS SAN lists, incurred even for untrusted certificates
Testing 🧪
How was this tested 👻
Mechanical version-string bump only — no source or dependency changes (
go.sumunchanged). Relying on CI to build the server image and run the suite against the
1.26.4 toolchain.
Steps for others to test: 🚶🏽♂️🚶🏽♀️
Build the server image and confirm it compiles under Go 1.26.4:
docker build -f server/Dockerfile .Docs
Any docs updates needed?
No.