惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Martin Fowler
Martin Fowler
雷峰网
雷峰网
IT之家
IT之家
小众软件
小众软件
M
MIT News - Artificial intelligence
博客园 - 聂微东
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
C
Check Point Blog
云风的 BLOG
云风的 BLOG
腾讯CDC
H
Help Net Security
Y
Y Combinator Blog
I
InfoQ

Ruby on Rails: Compress the complexity of modern web apps

Safer to_i coercion, custom to_fs formats, and more! This Week in Rails: May 16, 2026 This Week in Rails: May 8, 2026 This Week in Rails: May 1, 2026 Active Record gets better every week Great big Rails World 2026 update: CFP, Corporate Support tickets, workshops Query command for database queries and more Explicit query: and body: kwargs for integration tests and more! Speedup ActiveRecord::LogSubscriber#sql_color and more! This Week in Rails: March 27, 2026 Rails Versions 8.0.5 and 8.1.3 have been released! Rails Versions 7.2.3.1, 8.0.4.1, and 8.1.2.1 have been released! This Week in Rails: March 20, 2026 Validate URI scheme in Action Text and more This Week in Rails: March 6, 2026 Planning Center is the newest Rails Foundation Contributing member Action Text gets Markdown conversion, editor links in devcontainers, and more! BARRA seeks Rails developer Joe Agliozzo is looking for a Rails developer The rise of lighttpd as the alternative web server When longer is better and more is more Snowdevil: First e-tailer on Rails Natural selection for frameworks in Ruby vs Java Address book tutorial in Portuguese Becoming a better programmer with Rails 10 Things Every Java Programmer Should Know About Ruby Really Getting Started in Rails Off the Treadmill, Onto the Rails Rails 0.9.5: A world of fixes and tweaks Rich clients with Rails and XUL
The Rails Foundation update, perform_all_later in AJ and ...
David Heinemeier Hansson · 2023-02-24 · via Ruby on Rails: Compress the complexity of modern web apps

Friday, February 24, 2023
Posted by Wojtek

Hi, it’s Wojtek. Let’s dig into this week’s changes and announcements.

Amanda Perino as new executive director for The Rails Foundation
Please welcome Amanda to the job of leading the mission to improve the documentation, education, marketing, and events in the Rails ecosystem.

Add ActiveJob.perform_all_later to enqueue multiple jobs at once
This adds the ability to bulk enqueue jobs, without running callbacks. This can greatly reduce the number of round-trips to the queue datastore. For queue adapters that do not implement the new enqueue_all method, we fall back to enqueuing jobs individually.

Allow to define the default column serializer
YAML has quite a bit of footguns, as such it’s desirable to be able to substitute it for something else or even simply to force users to define a serializer explicitly for every serialized columns. The follow-up pull request drops the default for new applications.

Allow mailer classes to customize the deliver_later queue name
The deliver_later_queue_name was already configurable on ActionMailer::Base, however the value was inherited by all the mailer subclasses. From now on it can be customized per single mailer.

Allow 3-tier shared config in database.yml
Previously, the shared config hash would be merged with all database configurations defined in database.yml.

Add config.hosts and config.host_authorization to new app templates
Rails has a default “/up” endpoint to help load balancers and uptime monitors. DNS rebindings sometimes get in the way of it. Suggesting settings for both hosts and host_authorization helps to reduce this friction.

Remove Copyright years
They are not serving any real purpose so no need to update it every year from now on.

Add “Rails Application Templates” to guides index
Still needs some final polishing, but can already be accessed on Edge Guides Page

You can view the whole list of changes here.
We had 25 contributors to the Rails codebase this past week!

Until next time!

Subscribe to get these updates mailed to you.