2021/01/26分のコミットです。
CHANGELOGにのったコミットは以下の通りです。
activejob/CHANGELOG.md
Fixing delegated types example.
activerecord/lib/active_record/delegated_type.rb
のdocの修正です。
Delegated Typesのdoc内のexampleコードでタイポしている箇所があったのを修正しています。
Merge pull request #41214 from etiennebarrie/activejob-rescue_from-exception
Active Jobのrescue_from
がStandardError
とその子どものExceptionしかrescueしないようになっていたのを、全てのExceptionをrescueするよう修正しています。
Guides: Remove unneeded statement about stylesheet_pack_tag [ci skip]
rails guideのWebpacker
の修正です。
Using Webpacker for CSS
の項からstylesheet_pack_tag
に関する不要な説明を削除しています。
Merge pull request #41238 from samjewell/sj/fix-has_one-create_associated-test-names
activerecord/test/cases/associations/has_one_associations_test.rb
の修正です。
has_one associationのテスト名を適切な名前に修正しています。
Remove SET NAMES, set collation using variable
activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
の修正です。
collationを設定するのに、SET NAMES
を使用していたのを、variable
を使用するよう修正しています。
SET NAMES
の指定方法に誤りがあり、MySQLのバージョンによってはエラーになってしまう為。