114 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-09-06
stories 8

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Rails fixes docker-entrypoint to honor extra server flags

By RepoJournal · Filed · About Rails

Rails corrected the generated docker-entrypoint script so extra bin/rails server flags no longer skip database preparation.

Rails fixed the generated bin/docker-entrypoint script [1][2]. The check used to require ./bin/rails and server to be exactly the last two arguments, so any additional flag, such as -b 0.0.0.0 for Docker/Podman network binding, shifted server out of position and silently skipped db:prepare. The script now checks the first two arguments instead, matching Docker's CMD convention and ensuring the database is prepared regardless of extra flags. This affects existing Rails apps using the default Dockerfile; regeneration is needed to pick up the fix [3].

Xavier Noria added the markup directive to require-only files [4], simplifying the process of identifying files pending conversion from RDoc to Markdown. This is part of an ongoing documentation effort, and it roughly doubles the number of files marked as converted. Also continuing that effort, active_support/xml_mini documentation was converted from RDoc to Markdown [5].

Quick answers

What shipped in Rails on September 6, 2026?
Rails corrected the generated docker-entrypoint script so extra bin/rails server flags no longer skip database preparation. In total, 7 commits and 1 pull requests landed.
Who contributed to Rails on September 6, 2026?
3 developers shipped this update, including Jean Boussier, iamdipak39p, and Xavier Noria.
What were the notable Rails updates?
Fix docker-entrypoint check to support extra bin/rails server flags, Fix docker-entrypoint check to support extra bin/rails server flags, and Merge pull request #58675 from iamdipak39p/fix-docker-entrypoint-server-flags.