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

推荐订阅源

D
Docker
U
Unit 42
Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
爱范儿
爱范儿
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
L
LangChain Blog
Engineering at Meta
Engineering at Meta
量子位
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
A
About on SuperTechFans
Y
Y Combinator Blog

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
YJIT enabled by default, Active Model improvements and mu...
David Heinemeier Hansson · 2023-11-10 · via Ruby on Rails: Compress the complexity of modern web apps

Friday, November 10, 2023
Posted by Wojtek

Hi, it’s Wojtek. This week, the documentary movie about the origins of Ruby on Rails premiered. You can see it on the Honeypot YouTube channel. Now, let’s explore this week’s changes in the Rails codebase.

Enable YJIT by default if running Ruby 3.3+
There was many public reports of 15-25% latency improvements for Rails apps that did enable Ruby 3.2 YJIT, and in 3.3 it’s even better. Following the change, in Ruby 3.3 YJIT is paused instead of disabled by default, allowing us to enable it from an initializer.

Make the output of Active Records inspect configurable.
One can use attributes_for_inspect method:

Post.attributes_for_inspect = [:id, :title]
Post.first.inspect #=> "#<Post id: 1, title: "Hello, World!">"

With the attributes_for_inspect set to :all, all record’s attributes will be listed (default for development and test environment). One can also call full_inspect to get an inspection with all the attributes.

Port type_for_attribute to Active Model
Port the type_for_attribute method to Active Model. Classes that include ActiveModel::Attributes will now provide this method, which behaves the same as it does for Active Record.

Port BeforeTypeCast module to Active Model
Classes that include ActiveModel::Attributes will now automatically define methods such as *_before_type_cast, *_for_database, etc, which behave the same as they do for Active Record.

In Action Mailer previews, list inline attachments separately from normal attachments
Attachments that were previously listed like “Attachments: logo.png file.pdf” will now be listed like “Attachments: file.pdf (Inline: logo.png)”.

In Action Mailer previews, show date from Date header if present
Falls back to current time when the header is not present (as it was before).

In Action Mailer previews, only show SMTP envelope recipient when relevant
Show SMTP-To if it differs from the union of To, Cc and Bcc.

Fix using Action Text Javascript in Sprockets
Compile ESM package that can be used directly in the browser as actiontext.esm.js.

Preload Selenium driver_path before parallelizing system tests
Fixes a race condition that could cause a “Text file busy - chromedriver” error with parallel system tests.

Fix detecting changes on Active Model for infinity
Attribute with Float::INFINITY value from now is not marked as changed when reassigning it to the same value.

Fix Active Record queries for serialized values
Fixes queries like where(field: values) when field is a serialized attribute or a JSON column).

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

Until next time!

Subscribe to get these updates mailed to you.