105 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-09-08
stories 2

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Go compiler moves SSA rewrite packages, net QUIC clears reset receive buffer

By RepoJournal · Filed · About Go

The Go compiler reorganizes its SSA rewrite packages and the net package fixes a data race in QUIC stream resets.

The Go compiler moved the SSA rewrite packages [1]. Packages moved from cmd/compile/internal/ssarewrite to cmd/compile/internal/ssa/rewrite/<arch>, with 386 renamed to i386 because package names cannot start with a number. This is a code reorganization that fixes issue #20104 and prepares for #80409.

In golang/net, a QUIC data race was fixed [2]. When a peer resets a stream, unread data is discarded and buffers returned to a pool, but the fast-path read buffer was not cleared, leaving a dangling reference to recycled memory. The fix clears the fast-path read buffer on stream reset, and on STO (stop sending) as well.

Quick answers

What shipped in Go on September 8, 2026?
The Go compiler reorganizes its SSA rewrite packages and the net package fixes a data race in QUIC stream resets. In total, 2 commits landed.
Who contributed to Go on September 8, 2026?
2 developers shipped this update, including Michael Matloob and Nicholas S. Husin.
What were the notable Go updates?
cmd/compile/internal/ssa: move ssa rewrite packages to ssa/rewrite and quic: clear fast-path receive buffer on stream reset.