2021/04/25分のコミットです。
CHANGELOGへの追加はありませんでした。
Fix fixture tests that replace connection handler
activerecord/test/cases/fixtures_test.rbの修正です。
Restore connection pools after transactional testsの対応の影響でfixtureのテストが不安定になっていたのを修正しています。
Implement an optimized Cache::Entry coder
Active Supportの修正です。
cache entryのcoder処理でZlib::Deflateを使用してデータサイズを減らせるよう修正しています。
Fix typo s/limitions/limitations/ [ci skip]
activerecord/lib/active_record/associations.rbのdocの修正です。
limitationsをlimitionsにタイポしいたのを修正しています。
Fix typo s/PostgresSQL/PostgreSQL/ [ci skip]
activerecord/CHANGELOG.md、rails guideのConfiguring Rails Applicationsの修正です。
PostgreSQLをPostgresSQLにタイポしていたのを修正しています。
Merge pull request #42066 from abhaynikam/minor-issues-in-comparsion-validator
activemodel/lib/active_model/validations/comparison.rbの修正です。
ComparisonValidatorでorをnorにタイポしていたのを修正しています。
Make changes_applied public again
activerecord/lib/active_record/autosave_association.rbの修正です。
Only update dirty attributes once for cyclic autosave callbacksでchanges_appliedメソッドの可視性がprivateになってしまったのを、publicに戻しています。