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-28
stories 8

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

SOLID_QUEUE FIXES RAILS 8.1 CONNECTION CHECKOUT CLASH

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

Solid Queue patched a critical incompatibility with Rails 8.1's permanent connection checkout mode that breaks the new DistinctValues module.

The issue surfaces when `config.active_record.permanent_connection_checkout = :disallowed` is set: bare calls to `connection` resolve to the deprecated ActiveRecord::Base.connection and raise errors [1]. Solid Queue's DistinctValues module, introduced recently, made those direct calls and broke under the stricter Rails 8.1 configuration [2]. The fix wraps connection access in `connection_pool.with_connection`, following the established pattern from prior work [1]. In parallel, Solid Queue gained `--only-recurring` to explicitly run just the recurring scheduler in isolation [3], replacing the empty workers/dispatchers workaround and mirroring the existing `--skip-recurring` option. Rails core cleaned up a Markdown doc check that clashed with Rubocop's formatting rules on frozen string literals [4], resolving a conflict between what the linter wanted and what the doc validator would accept [5].

Quick answers

What shipped in Rails on July 28, 2026?
Solid Queue patched a critical incompatibility with Rails 8.1's permanent connection checkout mode that breaks the new DistinctValues module. In total, 5 commits and 3 pull requests landed.
Who contributed to Rails on July 28, 2026?
4 developers shipped this update, including Mike Dalessio, Jeremy Daer, Trevor Turk, and rafael-pissardo.
What were the notable Rails updates?
Lease connections in DistinctValues instead of calling deprecated `connection`, Use with_connection in DistinctValues, and Add --only-recurring to run just the recurring scheduler.