118 wires and counting

$ follow Go

Keep up with Go in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-08-05
stories 20

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

GO FIXES BREAKING ABI REGRESSION AND LOCKS DOWN REVERSE PROXY COOKIE HANDLING

By RepoJournal · Filed · About Go · Composed from the cited sources · methodology

Go shipped a critical fix for an x86 ABI0 NOFRAME regression that broke existing code, while explicitly documenting that ReverseProxy does not sanitize forwarded cookies.

The x86 toolchain broke ABI0 NOFRAME functions by removing BP as a scratch register, causing failures in production builds [1]. That fix restores BP indirection and closes two open issues. In parallel, the core Go team documented a long-standing security gotcha: ReverseProxy does not sanitize or filter Cookie headers when proxying requests, which means cookies from upstream services flow directly to clients without filtering [2]. This is not a new vulnerability but an explicit documentation push to prevent misuse. The runtime/cgo layer added back indirection to C function calls after a recent refactor caused text segment relocations that broke c-shared builds on Linux [3]. On the tools side, gopls fixed unsafe package resolution in definition lookup [5], ensuring the correct unsafe package is referenced across different build systems. Meanwhile, LoongArch support gained two new bitsel vector instructions for the instruction set [4].

Quick answers

What shipped in Go on August 5, 2026?
Go shipped a critical fix for an x86 ABI0 NOFRAME regression that broke existing code, while explicitly documenting that ReverseProxy does not sanitize forwarded cookies. In total, 20 commits landed.
Who contributed to Go on August 5, 2026?
10 developers shipped this update, including Damien Neil, Jorropo, Jonathan Amsterdam, Cherry Mui, XiaolinZhao, Carlos Amedee, Hongxiang Jiang, and Nicholas S. Husin, and 2 more.
What were the notable Go updates?
cmd/internal/obj/x86: fix breaking change in ABI0 NOFRAME BP expectations, net/http/httputil: document ReverseProxy cookie security considerations, and runtime/cgo: add back indirections to C functions.