2019/05/29分のコミットです。
CHANGELOGにのったコミットは以下の通りです。
Merge pull request #36324 from yoones/fix-unexpected-select-tag-delete-behavior
actionview/lib/action_view/helpers/form_tag_helper.rb
の修正です。
select_tag
のoptions
引数にinclude_blank
が含まれていた場合、delete
メソッドを使用してoptions
引数自身の状態を変更してしまっていたのを、except
メソッドを使用して状態を変えないよう修正しています。
Address intermittent CI failure due to unfilled schema columns cache
activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb
の修正です。
schema cacheがあるかどうかに関わらずテストが通るようにする為に、assert_no_queries
の代わりにassert_queries(0)
を使用するよう修正しています。
Fix comment for "broken" inverse_of associations [ci skip]
activerecord/test/models/face.rb
のdocの修正です。
テスト用のmodel内のコメントのグラマーを修正しています。
Address intermittent CI failure in cascaded_eager_loading_test.rb
activerecord/test/cases/associations/cascaded_eager_loading_test.rb
の修正です。
schema cacheがあるかどうかに関わらずテストが通るようにする為に、assert_no_queries
の代わりにassert_queries(0)
を使用するよう修正しています。
Remove frozen_string_literal
magic comment from template file
actionmailbox/lib/rails/generators/test_unit/templates/mailbox_test.rb.tt
の修正です。
MailBoxのテスト用テンプレートファイルからfrozen_string_literal
コメントを削除しています。現状、テンプレートファイルにはfrozen_string_literal
コメントを含まないようにしているため。
Bring after_bundle
back to API document [ci skip]
railties/lib/rails/generators/rails/app/app_generator.rb
のdocの修正です。
元々API docに表示されていたafter_bundle
がAPI docに表示されないようになっていたのを、再度API docに表示されるよう修正しています。
Merge pull request #36077 from st0012/update-doc-for-pluck
rails guideのActive Record Query Interface
の修正です。
pluck
の項に、eager load + pluck
を行った場合の挙動についての説明を追加しています。
Remove wrong default value for cache_versioning
in documentation of cache_version
activerecord/lib/active_record/integration.rb
のdocの修正です。
cache_version
メソッドのdocで、デフォルト値についての説明が誤っていたのを修正しています。