RepoJournal
Rails

@rails

Ruby on Rails - Shopify, Basecamp, GitHub all run on it

Keep up with Rails in about 3 minutes a day: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

One email a day. Unsubscribe in one click.

Pick a date

Topics: Ruby Full archive →

The Wire · Showcase

RAILS TACKLES RACTOR SAFETY AND SCHEMA DUMP PERFORMANCE IN OVERNIGHT PUSH

By RepoJournal · Filed · About Rails

Rails is systematically freezing mutable configuration to unlock ractor concurrency, while schema dumping gets a massive speed boost that slashes database round trips by orders of magnitude on large schemas.

The core push is ractor safety. Action View subscribers are now ractor-safe by setting Rails.root at initialize time instead of lazily memoizing it [1], while separate PRs freeze Active Record and Action Pack configurations [3] and controller default_url_options [4] to make them shareable across ractor boundaries. This is foundational work for Rails 8's concurrency model. In parallel, schema dumping performance got a critical overhaul [2]. The dumper previously issued separate database statements for each table's primary key, indexes, foreign keys, and constraints, multiplying round trips by table count. On schemas with thousands of tables, that meant tens of thousands of statements the database could have answered in bulk. The readers now batch-fetch metadata for many tables at once, cutting I/O dramatically. On the community front, the Rails Foundation's On Rails podcast is now woven into rubyonrails.org itself. All 18 published episodes are backfilled as posts under a new podcast category on the news page [5], and a panel links to the podcast from the docs page alongside the Cookpad and Doximity case studies [6].

One email a day. Unsubscribe in one click.

Action items

References

  1. [1] Make Action View subscribers ractor safe ↗ rails/rails
  2. [2] Let the schema readers answer for many tables at once ↗ rails/rails
  3. [3] Freeze configuration ↗ rails/rails
  4. [4] Freeze the Controller `default_url_options` ↗ rails/rails
  5. [5] Add On Rails podcast episodes to the news page ↗ rails/website
  6. [6] Add On Rails podcast panel to the docs page ↗ rails/website

Quick answers

What shipped in Rails on August 15, 2026?
Rails is systematically freezing mutable configuration to unlock ractor concurrency, while schema dumping gets a massive speed boost that slashes database round trips by orders of magnitude on large schemas. In total, 14 commits and 9 pull requests landed.
Who contributed to Rails on August 15, 2026?
6 developers shipped this update, including gmcgibbon, ngan, Edouard-chin, robzolkos, morgoth, and dependabot.
What were the notable Rails updates?
Make Action View subscribers ractor safe, Let the schema readers answer for many tables at once, and Freeze configuration.

More from @rails

Daily updates, in your inbox

Follow Rails

Keep up with Rails in about 3 minutes a day: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

One email a day. Unsubscribe in one click. Read a past issue →

Elsewhere on the wire

Want every project, not just this one?