97 wires and counting

$ follow .NET

Keep up with .NET 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-06
stories 50

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Orleans hardens grain directory and storage providers against null inputs

By RepoJournal · Filed · About .NET

Five Orleans PRs ship CA1062-driven null validation across Azure Table, Firestore, and the serialization test kit, closing a class of null-dereference bugs before they reach production.

Orleans is tightening input validation across its persistence and directory providers. The Azure grain directory [1], Firestore grain directory [3], and Azure grain storage providers [4] now validate caller-provided addresses, options, and grain-state inputs before any Table or Blob operation. The Azure storage fix addresses nine CA1062 findings, Firestore four, and the directory work also preserves the DI-owned cluster options invariant via a targeted suppression.

Related work extends the same rigor to the serialization test kit [5] and removes a stateless worker directory race in the runtime tests [1]. The test kit now validates tester constructor inputs before serializer service creation and makes Batch reject a null source at call time, not deferred enumeration. These are low-risk hardening changes; consumers should see no behavior change beyond earlier ArgumentNullException throws where inputs were previously dereferenced unchecked. Analyzer audit run 33948903771 flagged the persistence project for not enabling CA1062 across its full compile surface.

Elsewhere, Roslyn [6] and WPF [7] both pulled in routine source updates from dotnet/dotnet. As Reuben Bond's summary for the Azure storage work puts it, the providers "dereferenced caller-controlled options and grain-state inputs before validating them" [4]. No breaking changes or security advisories are attached to any of today's updates.

Quick answers

What shipped in .NET on September 6, 2026?
Five Orleans PRs ship CA1062-driven null validation across Azure Table, Firestore, and the serialization test kit, closing a class of null-dereference bugs before they reach production. In total, 25 commits and 25 pull requests landed.
Who contributed to .NET on September 6, 2026?
3 developers shipped this update, including Reuben Bond, dotnet-maestro[bot], and dotnet-maestro.
What were the notable .NET updates?
test(runtime): remove stateless worker directory race (#11163), fix(azure): validate grain directory inputs, and fix(firestore): validate grain directory inputs.