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

推荐订阅源

H
Hackread – Cybersecurity News, Data Breaches, AI and More
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
A
About on SuperTechFans
MongoDB | Blog
MongoDB | Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
Blog — PlanetScale
Blog — PlanetScale
酷 壳 – CoolShell
酷 壳 – CoolShell
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
B
Blog RSS Feed
大猫的无限游戏
大猫的无限游戏
美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
L
LangChain Blog
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

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.