Hey everyone, Happy Monday! Vipul here with the latest updates for This Week in Rails (from last week š ). Letās dive in.
Rails 7.2 has been released
Rails 7.2 has been released!
Head over to the release post for more details, but in short, it ships with better production defaults, Dev containers, new guides design, and much much more!
New Guides Pull Requests for review
Two new Guides Pull Requests are now open for community review. If you are well versed in Rails Routing, Active Record Associations, please review and submit your feedback here:
Use Thruster by default for Rails 8
Thruster is an asset compression and caching proxy with X-Sendfile acceleration that speeds up simple production-ready deployments of Rails applications.
It runs alongside the Puma and usually behind the Kamal 2 proxy, which offers HTTP/2 and SSL auto-certificates,
to help your app run efficiently and safely on the open Internet.
This change configures the use of Thruster in the Dockerfile by default, starting with Rails 8.
Speed up ActionDispatch::Routing::Mapper::Scope#[]
by merging frame hashes
Before this change, ActionDispatch::Routing::Mapper::Scope#[]
lookup was iterating an array, which means access time wasnāt constant, and did not actually behave like a hash.
This Pull Request changes the scope implementation to make the lookup faster by just merging inherited values into the immediate hash.
This helps avoid needless iterations for deeply nested routes leading it to be ~1.2x faster.
Remove redundant Puma configuration settings
This Pull Request removes the following redundant environment settings in puma.rb
:
# Specifies the `environment` that Puma will run in.
rails_env = ENV.fetch("RAILS_ENV", "development")
environment rails_env
case rails_env
when "production"
preload_app!
when "development"
# Specifies a very generous `worker_timeout` so that the worker
# isn't killed by Puma when suspended by a debugger.
worker_timeout 3600
end
These changes address recent Puma upgrades that-
preload_app!
is automatically set when in cluster mode.worker_timeout
is a cluster mode feature, and we donāt run that in dev.Another Puma change is that WEB_CONCURRENCY
is automatically used from ENV and is now parsed directly, so it canāt be extended with āautoā in the Puma config.
This related change addresses this issue and removes the redundant dynamic setting for the value from puma.rb
Improve default action mailer configuration
This Pull Request introduces a few improvements to the default Action Mailer configuration setup:
production.rb
.Make automatic detection of processor count in default Puma config optional and non-default
Using Concurrent.available_processor_count
helper by default in puma.rb
template might result in incorrect configurations on some cloud hosts with shared CPUs or platforms that inaccurately report CPU counts.
This Pull Request, changes this default configuration to be optional and non-default.
Let allow_browser allow bots
The allow_browser
feature blocks requests with user agents that donāt match a specific set of browser versions. This runs the risk of preventing sites from being crawled by some search engines.
This change fixes this behavior to bypass these version restrictions in the case of certain crawlers and bots.
Allow disable_extension to be called with schema-qualified name for PostgreSQL
This change allows disable_extension
to be called with schema-qualified name for PostgreSQL.
This adds parity with enable_extension
, the disable_extension
method can be called with a schema-qualified
name (e.g. disable_extension "myschema.pgcrypto"
). Note that PostgreSQLās DROP EXTENSION
does not
actually take a schema name (unlike CREATE EXTENSION
), so the resulting SQL statement will only name
the extension, e.g. DROP EXTENSION IF EXISTS "pgcrypto"
.
You can view the whole list of changes here.
We had 36 contributors to the Rails codebase past week!
Until next time!
Subscribe to get these updates mailed to you.