Ruby on Rails 8.0.0がリリースされました。
Rails 8.0: #NOBUILD, #NOPAAS, all-in on SQLite as a production database option with jobs, cache, and cable, new authentication generator, and so much more! Final release is out 🎉 https://t.co/qom10worLW
— DHH (@dhh) November 7, 2024
英語版Changelogをまとめて見るにはGItHubのリリースタグ↓が便利です。v8.0.0
タグの日付は日本時間の2024/11/08 07:29でした。
詳しくは以下のコミットリストをご覧ください。
なお、リリース直後のため、メンテナンスポリシー↓などは今後更新されると思われます。
参考: Ruby on Rails — Maintenance policy
参考: アップグレードの便利情報
フレームワークそのもののdiffではなく、生成されるアプリのdiffをチェックするには、railsdiff.orgが便利です↓。
Railsバージョン間のgemの互換性をチェックするには、以下のrailsbump.orgが便利です。現行アプリで使っているGemfile.lockを貼り付けて、gemの互換性をチェックすることも可能です。
- RailsBump -- sponsored by FastRuby.io
Rails で config/application.rb や config/enverironments/*.rb などの使わない設定は消さずににコメントアウトするのが自分的ベストプラクティスになった。バージョンアップ時の diff チェックが https://t.co/LI1erA4dSP の差分と app:update の結果との比較でかなり楽になる。
— suginoy (@suginoy) June 21, 2023
🔗 8.0.0の主な新機能
追記(2024/11/15): Rails 8.0のChangelogも公開しました↓。
追記(2024/11/11): 珍しいことですが、アップグレードガイド↓には、8.0へのアップグレードに関する特記事項は少なくとも現時点ではありません(今後追加されるかもしれません)。
参考: Upgrading Ruby on Rails — Ruby on Rails Guides
また、new_framework_defaults_8_0.rbの項目もわずか3つとシンプルになっています↓。
# railties/lib/rails/generators/rails/app/templates/config/initializers/new_framework_defaults_8_0.rb.tt
# (見やすさのため項目をコメント解除してあります)
# Be sure to restart your server when you modify this file.
#
# This file eases your Rails 8.0 framework defaults upgrade.
#
# Uncomment each configuration one by one to switch to the new default.
# Once your application is ready to run with all new defaults, you can remove
# this file and set the `config.load_defaults` to `8.0`.
#
# Read the Guide for Upgrading Ruby on Rails for more info on each option.
# https://guides.rubyonrails.org/upgrading_ruby_on_rails.html
###
# Specifies whether `to_time` methods preserve the UTC offset of their receivers or preserves the timezone.
# If set to `:zone`, `to_time` methods will use the timezone of their receivers.
# If set to `:offset`, `to_time` methods will use the UTC offset.
# If `false`, `to_time` methods will convert to the local system UTC offset instead.
#++
Rails.application.config.active_support.to_time_preserves_timezone = :zone
###
# When both `If-Modified-Since` and `If-None-Match` are provided by the client
# only consider `If-None-Match` as specified by RFC 7232 Section 6.
# If set to `false` both conditions need to be satisfied.
#++
Rails.application.config.action_dispatch.strict_freshness = true
###
# Set `Regexp.timeout` to `1`s by default to improve security over Regexp Denial-of-Service attacks.
#++
Regexp.timeout = 1
Solid Cache/Solid Queue/ Solid Cable
Rails 8.0.0では、Solid Cache/Solid Queue/ Solid Cableがデフォルトで有効になります。これにより、Redis環境を用意せずにキャッシュやジョブキューなどを含む開発を開始できるようになります。
SQLiteがproduction環境向けに強化された
SQLiteのコンフィグやアダプタの改良が重ねられて、production環境におけるSolid Cache/Solid Queue/ Solid CableでのSQLiteの利用に耐えるよう強化されました。
SprocketsがPropshaftに置き換わった
Rails 8.0.0からは、Propshaftがアセットパイプラインのデフォルトになります。
Kamal 2とThruster
Rails 8.0.0で生成したアプリでは、デプロイツールであるKamal 2の設定も生成されるようになります(Kamal 2では、従来使われていた汎用のTraefikに代えて専用のKamal Proxyが導入されています)。また、DockerfileにThrusterという新しいプロキシが導入されます。
基本的な認証機能ジェネレータ
bin/rails generate authentication
を実行することで、基本的な認証機能を生成し、これをカスタマイズする形で認証機能を実装できるようになりました。
参考: Rails 8をrails-new
アプリとdevcontainerですぐ試す
RubyがインストールされていなくてもDockerが使える環境であれば、以下のrails-new(Rust製)をダウンロードしてインストールすることで、現行のローカル環境に影響したりされたりせずにRailsアプリを生成できます。
rails-newをインストール後、以下を実行すると、devcontainerセットアップ生成を有効にしたRails 8アプリが生成されます。
$ rails-new -u 3.3.6 -r 8.0.0 rails8app --devcontainer
生成したアプリのディレクトリをVS Codeで開いて「コンテナーで再度開く」をクリックすると、最初のDockerビルドが始まります。
完了後、VS Codeのdevcontainerターミナルでbin/dev
を実行すれば、いつものようにRailsアプリが起動します。
以下は主に目についた変更点です。
bin/
に、新たにjobs
やkamal
やthrust
が追加されています。
$ tree bin
bin
├── brakeman
├── bundle
├── dev
├── docker-entrypoint
├── importmap
├── jobs
├── kamal
├── rails
├── rake
├── rubocop
├── setup
└── thrust
以下はRails 8のGemfileからの抜粋です。
# Gemfile
...
# Use the database-backed adapters for Rails.cache, Active Job, and Action Cable
gem "solid_cache"
gem "solid_queue"
gem "solid_cable"
...
# Deploy this application anywhere as a Docker container [https://kamal-deploy.org]
gem "kamal", require: false
# Add HTTP asset caching/compression and X-Sendfile acceleration to Puma [https://github.com/basecamp/thruster/]
gem "thruster", require: false
...
生成したアプリでは、以下のようにSolid Cache/Solid Queue/Solid Cableのセットアップがデフォルトで含まれています。
$ tree db
db
├── cable_schema.rb
├── cache_schema.rb
└── queue_schema.rb
# 他は省略
$ tree config
config
├── cable.yml
├── cache.yml
└── queue.yml
# 他は省略
Kamal 2やThrusterの設定も含まれています。
$ tree .kamal
.kamal/
├── hooks
│ ├── docker-setup.sample
│ ├── post-deploy.sample
│ ├── post-proxy-reboot.sample
│ ├── pre-build.sample
│ ├── pre-connect.sample
│ ├── pre-deploy.sample
│ └── pre-proxy-reboot.sample
└── secrets
▶Dockerfile(クリックで展開)
# Dockerfile
# syntax=docker/dockerfile:1
# check=error=true
# This Dockerfile is designed for production, not development. Use with Kamal or build'n'run by hand:
# docker build -t rails8app .
# docker run -d -p 80:80 -e RAILS_MASTER_KEY=<value from config/master.key> --name rails8app rails8app
# For a containerized dev environment, see Dev Containers: https://guides.rubyonrails.org/getting_started_with_devcontainer.html
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version
ARG RUBY_VERSION=3.3.6
FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base
# Rails app lives here
WORKDIR /rails
# Install base packages
RUN apt-get update -qq && \
apt-get install --no-install-recommends -y curl libjemalloc2 libvips sqlite3 && \
rm -rf /var/lib/apt/lists /var/cache/apt/archives
# Set production environment
ENV RAILS_ENV="production" \
BUNDLE_DEPLOYMENT="1" \
BUNDLE_PATH="/usr/local/bundle" \
BUNDLE_WITHOUT="development"
# Throw-away build stage to reduce size of final image
FROM base AS build
# Install packages needed to build gems
RUN apt-get update -qq && \
apt-get install --no-install-recommends -y build-essential git pkg-config && \
rm -rf /var/lib/apt/lists /var/cache/apt/archives
# Install application gems
COPY Gemfile Gemfile.lock ./
RUN bundle install && \
rm -rf ~/.bundle/ "${BUNDLE_PATH}"/ruby/*/cache "${BUNDLE_PATH}"/ruby/*/bundler/gems/*/.git && \
bundle exec bootsnap precompile --gemfile
# Copy application code
COPY . .
# Precompile bootsnap code for faster boot times
RUN bundle exec bootsnap precompile app/ lib/
# Precompiling assets for production without requiring secret RAILS_MASTER_KEY
RUN SECRET_KEY_BASE_DUMMY=1 ./bin/rails assets:precompile
# Final stage for app image
FROM base
# Copy built artifacts: gems, application
COPY --from=build "${BUNDLE_PATH}" "${BUNDLE_PATH}"
COPY --from=build /rails /rails
# Run and own only the runtime files as a non-root user for security
RUN groupadd --system --gid 1000 rails && \
useradd rails --uid 1000 --gid 1000 --create-home --shell /bin/bash && \
chown -R rails:rails db log storage tmp
USER 1000:1000
# Entrypoint prepares the database.
ENTRYPOINT ["/rails/bin/docker-entrypoint"]
# Start server via Thruster by default, this can be overwritten at runtime
EXPOSE 80
CMD ["./bin/thrust", "./bin/rails", "server"]