2022/03/08分のコミットです。
CHANGELOGにのったコミットは以下の通りです。
Implement ErrorReporter#disable
activesupport/lib/active_support/error_reporter.rb
の修正です。
任意のsubscriberについてのreport処理を一時的に無効化する為のErrorReporter#disable
メソッドを追加しています。特定のライブラリのエラーのreport処理だけ無効化したい(ライブラリ側で対応しておりErrorReporter
での処理はスキップしたい)時の為のメソッドとの事です。
Remove --no-comments
from Postgres structure dumps
activerecord/lib/active_record/tasks/postgresql_database_tasks.rb
の修正です。
PostgreSQLのstructure dumpのデフォルトオプションから--no-comments
を削除しています。Avoid comment calls in pg:dumpのRevert。デフォルトで--no-comments
を指定する必要は無いのでは、という議論になりRevertされました。
fix namespaced schema load ignoring protected env
activerecord/lib/active_record/railties/databases.rake
の修正です。
namespace付きのschema load taskでprotected envのチェック処理が行われないバグがあったのを修正しています。
Improve the documentation and guide about where.not
rails guideのActive Record Query Interface
、及び、activerecord/lib/active_record/relation/query_methods.rb
のdocの修正です。
where.not
メソッドのdocに、nullable columnに対して値を指定した場合の挙動についての説明を追加しています。
Merge pull request #44613 from Shopify/eager-load-routes-proxy-2
actionpack/lib/action_dispatch.rb
の修正です。
ActionDispatch::Routing
に対するeager loadをboot時に行うよう修正しています。