2026/01/18分のコミットです。
CHANGELOGにのったコミットは以下の通りです。
Console reload! will reset the console's executor, when present
railties/lib/rails/commands/console/irb_console.rbの修正です。
rails consoleでreload!を実行した際に、Rails.application.executorをresetするよう修正しています。reload!した際にquery cacheなどの内部で保持している情報もリセットされるようにする為。
Merge pull request #56628 from mdh/fix-outdated-finder-methods-docs
activerecord/lib/active_record/relation/finder_methods.rbのdocの修正です。
ActiveRecord::FinderMethodsのdoc内のexampleコードに、whereに配列を指定してのexample(e.g. Person.where(["user_name = ?", user_name])が記載されていたのを、hash(e.g. Person.where(user_name: user_name))を使用するexampleに修正しています。
Merge pull request #56631 from Earlopain/remove-ripper
コードをパースする処理で、prismが使用出来ない場合ripperを使用するようになっていたのを、ripperに関する処理をまとめて削除しています。Ruby 3.3以上のみをサポートすることなったことで、prismが必ず使用出来るようになっている為。