127 wires and counting

$ follow Rails

Keep up with Rails 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-07-11
stories 12

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

RAILS TIGHTENS DESERIALIZATION ERROR HANDLING, PROPSHAFT EYES RUBY 4

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

Rails introduces a targeted deserialization error for orphaned job records, solving a production pain point at HEY while ActiveJob remains resilient.

Rails shipped a new `ActiveJob::DeserializationError::RecordNotFound` exception [1] that lets developers distinguish between transient database connection failures and legitimate record deletions during job deserialization. This fixes a real production issue at HEY where networking blips were tanking entire job queues instead of being retried intelligently. Paired with that, Rails is optimizing how it preloads dependent associations [2], collapsing redundant scopes to eliminate n x m matching bottlenecks that slow down association loading on large record sets. Over in propshaft, the asset pipeline now runs CI against Ruby 4 [3], confirming it's ready when the language ships later this year. Propshaft also shed its deprecated internal usage of `Mime::EXTENSION_LOOKUP` [4], staying ahead of the deprecation curve Rails set in core.

Quick answers

What shipped in Rails on July 11, 2026?
Rails introduces a targeted deserialization error for orphaned job records, solving a production pain point at HEY while ActiveJob remains resilient. In total, 7 commits and 5 pull requests landed.
Who contributed to Rails on July 11, 2026?
8 developers shipped this update, including rosa, rwalters44, Jean Boussier, Xavier Noria, hmcguire-shopify, Hartley McGuire, etiennebarrie, and morgoth.
What were the notable Rails updates?
Introduce `ActiveJob::DeserializationError::RecordNotFound`, Combine equivalent owner-dependent preload scopes, and Add Ruby 4 to CI, bundle update, and checksums.