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

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
Y
Y Combinator Blog
IT之家
IT之家
博客园 - 聂微东
L
LangChain Blog
爱范儿
爱范儿
H
Help Net Security
GbyAI
GbyAI
F
Fortinet All Blogs
B
Blog
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
D
DataBreaches.Net
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享

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 World CFP, YJIT configuration and more!
David Heinemeier Hansson · 2025-03-07 · via Ruby on Rails: Compress the complexity of modern web apps

Hi, it’s Greg. Let’s explore this week’s changes in the Rails codebase.

Rails World 2025 Call for Papers
The CFP for Rails World 2025 is now live! Submit your talk until April 10th: https://rubyonrails.org/2025/3/7/apply-to-speak-at-rails-world-2025.

Add a default bin/bundle-audit configuration
This pull request adds bin/bundler-audit and config/bundler-audit.yml for discovering and managing known security problems with app gems.

Permit modern Ruby syntax in new apps
This pull requests changes RuboCop to target the Ruby version you’re using rather than the 2.7 default.

Stop generating bundler binstub:
Rails no longer generates a bin/bundle binstub when creating new applications. The bin/bundle binstub used to help activate the right version of bundler, but this is no longer necessary as this mechanism is now part of Rubygem itself.

Add except_on: option for validation callbacks
The except_on: option was added to validations (e.g. validates) in the past and this pull request adds the same option to before_validation and after_validation callbacks to maintain options consistency.

Support hash options for YJIT configuration
This pull request enhances config.yjit to accept a hash, allowing users to specify YJIT options. For instance:

config.yjit = true  # Enable YJIT with default settings
config.yjit = { stats: true }  # Enable YJIT with custom options (newly supported)
config.yjit = false  # Disable YJIT

Add a config for automatically including nonce in javascript_tag, javascript_include_tag and stylesheet_link_tag
This pull requests adds a new configuration, content_security_policy_nonce_auto for automatically adding a nonce to the tags affected by the directives specified by the content_security_policy_nonce_directives configuration option.

Allow per-database schema format
This change allows applications with multiple databases to set a schema_format independently for each one:

primary:
  schema_format: ruby

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

Until next time!

Subscribe to get these updates mailed to you.