110 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-08-30
stories 14

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Buffa wires shared descriptor pools, cuts codegen token blow-up

By RepoJournal · Filed · About Anthropic

Buffa's shared descriptor pool mechanism now spans codegen and build, while a new warning catches ungenerated type references.

The shared_descriptor_pool work lands its second and third crates: the plugin path wires the mechanism through codegen [1], and `buffa_build::Config::shared_descriptor_pool(bool)` makes build.rs emit the full-closure `FileDescriptorSet` as a binary sidecar via `include_bytes!` [2]. Land #369 before #370, since the plugin's rejection messages point users to buffa-build for unsupported combinations. Separately, a new `CodeGenWarning::ExcludedPackageFieldRef` flags fields referencing types that are ungenerated or unmapped, with type-granular detection that skips generated types in partially-generated packages [3]. Codegen also switches `FILE_DESCRIPTOR_SET_BYTES` from per-byte integer literals to a byte-string literal, cutting token generation during emission [4]. Finally, JSON serialization now handles message-valued oneof variants with custom `ProtoBox` types by serializing the pointee, and removes the workaround `Serialize` impl from the example [5].

Quick answers

What shipped in Anthropic on August 30, 2026?
Buffa's shared descriptor pool mechanism now spans codegen and build, while a new warning catches ungenerated type references. In total, 7 commits and 7 pull requests landed.
Who contributed to Anthropic on August 30, 2026?
4 developers shipped this update, including hcrosse, rsd-darshan, th0114nd, and fallintoplace.
What were the notable Anthropic updates?
codegen: wire shared_descriptor_pool through the plugins, buffa-build: shared_descriptor_pool with include_bytes! sidecar, and codegen: warn when a kept file references an ungenerated or unmapped type (#292).