2025/01/12分のコミットです。
CHANGELOGへの追加はありませんでした。
Don't dup query values if they're frozen
activerecord/lib/active_record/relation/query_attribute.rb
の修正です。
QueryAttribute
の初期処理で、query valuesがfreeze済みの場合、値のdupを行わないよう修正しています。frozen_string_literals
が設定されている、かつ、値がstringsのような場合dup処理は不要な筈の為。
Test disabled session in blobs and representation proxy controllers
activestorage/test/controllers/blobs/proxy_controller_test.rb
、
activestorage/test/controllers/representations/proxy_controller_test.rb
の修正です。
blobsとrepresentationのproxy controllersでsessionが無効になっている場合のテストを追加しています。
Add deprecations to 8.0 Release Notes
rails guideのRuby on Rails 8.0 Release Notes
の修正です。
deprecationsになった機能の説明を追加しています。
Merge pull request #54191 from wt-l00/fix_action_controller_overview_document
rails guideのAction Controller Overview
の修正です。
around_action
を使用するexampleコードが実際には動作しないコードになっていたのを修正しています。