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-27
stories 24

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

RAILS CLEANS UP DATABASE ADAPTER CRUFT, MARKS INSERT_RETURNING FOR REMOVAL

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

Rails is deprecating the `insert_returning` option after it became redundant across multiple insert paths, while extracting hidden parameters and removing dead code across the database layer.

Ryuta Kamizono shipped a focused cleanup cycle: Rails now extracts `:table_name` as an explicit keyword argument in join table helpers [1], eliminating the silent mutation of options that was a necessary workaround before. The bigger move is deprecating the `:insert_returning` option and `use_insert_returning?` method [2], which became vestigial once `insert_all`, `upsert_all`, and UPDATE RETURNING all started respecting database capabilities directly. Separately, Kamizono removed the unused `binds` argument from `update_with_result` [3], dead weight carried since Arel began holding bind values itself. These are the kinds of cuts that don't break production but make the codebase breathe easier for the next maintainer. 16 commits and 8 PRs across rails/rails in this period.

Quick answers

What shipped in Rails on July 27, 2026?
Rails is deprecating the `insert_returning` option after it became redundant across multiple insert paths, while extracting hidden parameters and removing dead code across the database layer. In total, 16 commits and 8 pull requests landed.
Who contributed to Rails on July 27, 2026?
1 developer shipped this update, including Ryuta Kamizono.
What were the notable Rails updates?
Extract `:table_name` as explicit kwarg in join table helpers, Deprecate `insert_returning` option and `use_insert_returning?`, and Remove unused `binds` argument from `update_with_result`.