2022/11/05分のコミットです。
CHANGELOGにのったコミットは以下の通りです。
Fix schema_up_to_date connection
activerecord/lib/active_record/migration.rb
、activerecord/lib/active_record/tasks/database_tasks.rb
の修正です。
schema_up_to_date?
メソッドで、処理完了時に処理前に接続していたconnectionに接続し直すよう修正しています。
Ensure pipe is closed after test run
activesupport/lib/active_support/testing/isolation.rb
の修正です。
ActiveSupport::Testing::Isolation::Forking
で、作成したpipeがcloseされない事があったのを、確実にcloseされるよう修正しています。
Improve Parametric Scopes documentation
rails guideのRails Routing from the Outside In
の修正です。
route helper methodにnamed parameterを指定した場合に生成されるpathについての詳細な説明を追加しています。
Make error highlight readable on dark mode
actionpack/lib/action_dispatch/middleware/templates/rescues/layout.erb
の修正です。
viewのerror highlightがdark modeの場合にも見やすくなるようcssを修正しています。
Fix clear_all_connections! NoMethodError
actioncable/test/subscription_adapter/postgresql_test.rb
の修正です。
Action Cableのテストの後処理でNoMethodError
が発生してしまっていたのを修正しています。
Fix clear_reloadable_connections! deprecation warning
actioncable/test/subscription_adapter/postgresql_test.rb
の修正です。
Action Cableのテストでdeprecatedになったメソッドを使用している箇所があったのを修正しています。
Add :touch to has_one options in documentation
activerecord/lib/active_record/associations.rb
のdocの修正です。
has_one
associationのオプションについて説明している箇所に、:touch
オプションについての説明を追加しています。
Correct missing template error page
actionpack/lib/action_dispatch/middleware/templates/rescues/missing_exact_template.html.erb
の修正です。
renderするテンプレートが見つからなかった場合に表示されるエラーテンプレート内のエラーメッセージの、controllerのexampleのpathが誤っていたのを修正しています。