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 KILLS SLOW TEST TASKS, TIGHTENS CONSTANT MUTATION CHECKS

By RepoJournal · Filed · About Rails

Rails just removed its isolated test suite — a slow-running fixture that wasn't catching problems worth the CI overhead — and merged stricter linting rules to catch mutable constants before they ship.

The isolated test tasks [1] have been ripped out of the Rails build pipeline [3]. They ran slow, added complexity, and weren't surfacing bugs the rest of the test suite was missing anyway. That's the kind of pruning that keeps CI lean. Separately, Rails merged a new linting rule [2] that enforces immutable constants using the `literals` style — catching things like `CONSTANT = []` where mutation is possible. It's stricter, it's in production now, and existing Rails code will need to comply on next update. There's also a fix pending for MySQL adapters [4] around native database type freezing that connects to this constant hardening effort. All three changes ship together in the next Rails release and represent a push toward more predictable, harder-to-break code at the framework level.

One email a day. Unsubscribe in one click.

Action items

References

  1. [1] Remove isolated test tasks ↗ rails/rails
  2. [2] Enable `Style/MutableConstant` cop with `literals` style ↗ rails/rails
  3. [3] Merge pull request #177 from rails/remove-isolated rails/buildkite-config
  4. [4] Merge pull request #57333 from chaadow/patch-8 rails/rails

Quick answers

What shipped in Rails on May 11, 2026?
Rails just removed its isolated test suite — a slow-running fixture that wasn't catching problems worth the CI overhead — and merged stricter linting rules to catch mutable constants before they ship. In total, 11 commits and 6 pull requests landed.
Who contributed to Rails on May 11, 2026?
2 developers shipped this update, including byroot and paracycle.
What were the notable Rails updates?
Remove isolated test tasks, Enable `Style/MutableConstant` cop with `literals` style, and Merge pull request #177 from rails/remove-isolated.

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?