123 wires and counting

$ follow Anthropic

Keep up with Anthropic 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-11
stories 17

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

sandbox-runtime blocks DNS-resolved private IPs, buffa stops double-writing bytes

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

anthropics/sandbox-runtime now refuses allow-listed hostnames that resolve to loopback, link-local, or configured private ranges, closing a hole where a wildcard allowlist plus a hostile DNS record reached unguarded addresses.

The allowlist decided by name only. Whoever controlled a permitted name's DNS records, or any label under a permitted wildcard, decided what that name resolved to, and nothing between the allowlist decision and net.connect() looked at the resolved address. So with "allowedDomains": ["*.example.com"] a sandboxed process could request internal.example.com, have it resolve to 127.0.0.1 or 169.254.169.254, and connect anyway [1]. That guard merged and shipped in v0.0.76 [2].

In anthropics/buffa, encode_to_bytes built a BytesMut::with_capacity(size), wrote through it, and froze it. Because bytes does not mark <BytesMut as BufMut>::put_slice #[inline] (it does for Vec<u8>), BytesMut has no put_u8 override, and LLVM folds reserve_inner into put_slice, encode_to_bytes was 3 to 4x slower than encode_to_vec on every benchmark shape, with or without LTO. It now writes through Vec<u8> and is within noise of encode_to_vec. The change is pure performance: no behavioural or wire impact [3].

Plugin registries saw a coordinated addition: the HubSpot plugin, sourced from HubSpot/hubspot-mcp-plugins, landed in anthropics/claude-plugins-official and was mirrored into anthropics/knowledge-work-plugins [4][5], alongside a GC AI plugin from GC-AI-Inc/gc-ai-claude-plugin in the official registry [6]. Separately, knowledge-work-plugins bumped its security-guidance entry from ed404106 to 3ea32df2 [7].

If you run sandboxed processes behind a domain allowlist, the v0.0.76 release changes what those allowlists permit: hostnames resolving into loopback, link-local, or configured private ranges are now refused [1][2]. Audit any wildcard entries that intentionally pointed at internal services.

Action items

References

  1. [1] Refuse allow-listed hostnames that resolve to loopback, link-local or configured private ranges ↗ anthropics/sandbox-runtime
  2. [2] Merge pull request #528 from anthropics/release/v0.0.76 ↗ anthropics/sandbox-runtime
  3. [3] encode: `encode_to_bytes` writes through `Vec<u8>`, not `BytesMut` ↗ anthropics/buffa
  4. [4] Add hubspot-sales plugin ↗ anthropics/claude-plugins-official
  5. [5] Add hubspot-sales plugin ↗ anthropics/knowledge-work-plugins
  6. [6] Add gc-ai plugin ↗ anthropics/claude-plugins-official
  7. [7] Merge pull request #1103 from anthropics/bump/security-guidance ↗ anthropics/knowledge-work-plugins

Quick answers

What shipped in Anthropic on September 11, 2026?
anthropics/sandbox-runtime now refuses allow-listed hostnames that resolve to loopback, link-local, or configured private ranges, closing a hole where a wildcard allowlist plus a hostile DNS record reached unguarded addresses. In total, 9 commits, 7 pull requests, and 1 releases landed.
Who contributed to Anthropic on September 11, 2026?
7 developers shipped this update, including jordanecker-ant, tobinsouth, Octavian Guzu, Claude, rpb-ant, dannycochran, and shawnm-anthropic.
What were the notable Anthropic updates?
Refuse allow-listed hostnames that resolve to loopback, link-local or configured private ranges, Merge pull request #528 from anthropics/release/v0.0.76, and encode: `encode_to_bytes` writes through `Vec<u8>`, not `BytesMut`.