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

推荐订阅源

Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
GbyAI
GbyAI
博客园 - 司徒正美
美团技术团队
Vercel News
Vercel News
IT之家
IT之家
U
Unit 42
Y
Y Combinator Blog
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
V
Visual Studio Blog
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MyScale Blog
MyScale Blog
博客园 - 叶小钗
A
About on SuperTechFans
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
B
Blog RSS Feed

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
Rails 6.1.4 and plenty of developer UX goodies
David Heinemeier Hansson · 2021-07-10 · via Ruby on Rails: Compress the complexity of modern web apps

Hi, zzak again with the changes from the last week in Rails.

Rails 6.1.4 was released

This release includes many bug fixes so be sure to upgrade! You can read the full summary of changes here.

Deleting an item from the Middleware stack should raise if the item is not found

A bug was fixed when trying to remove a non-existent middleware off the stack.

Generators should raise an error if an attribute has an invalid index

An error is now raised in bin/rails when trying to generate a model with a misspelled “index” attribute.

config_for accepts root shared as an array

A bug was fixed when using config_for with a shared config that is defined as an array.

Handle error when file does not exist at filepath

A more helpful error message is given when using render: file for a non-existent absolute path.

Handle paths with spaces when editing credentials

This issue identifies a bug with trying to use bin/rails credentials:edit on Windows.

Truncate more ActionCable broadcast messages to 300 chars

This PR is a follow-up to an older PR that tried to cut down on ActionCable logging noise in development.

Verify foreign keys after loading fixtures

This PR introduces a new feature where referential integrity is applied to associations when loading fixtures.

It only works for SQLite and Postgres for now, if anyone has idea how to make this work in MySQL.

20 people contributed to Rails since last time. All the changes can be checked here. Until next week!