2019/10/15分のコミットです。
CHANGELOGにのったコミットは以下の通りです。
Revert "Revert "Merge pull request #37296 from Shopify/db-config-pool""
Merge pull request #37443 from eileencodes/use-database-config-objects-in-railties-dbconsoleで誤ってRevertしてしまったRefactor ConnectionPool managementのRevert commitをRevertして再度マージするよう修正しています。
Adds a link to the Basic Authentication section [ci skip]
rails guideのTesting Rails Applications
の修正です。
What to include in your Functional Tests
の項のBasic Authenticationについて説明している箇所に、https://guides.rubyonrails.org/getting_started.html#basic-authentication へのリンクを追加しています。
Merge pull request #37465 from alpaca-tc/optimize_primary_keys
activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
の修正です。
primary keyを取得するのにinformation_schema.key_column_usage
を参照していたのをinformation_schema.statistics
を参照するよう修正しています。
MySQL 8.0でメタデータのストレージがdata dictionaryに変更になり、その影響でinformation_schema.key_column_usage
へのアクセスが低速になった為。
[ci skip] Remove reference to legacy Rails 2.x command https://github.com/rails/rails/commit/8f554a76ba28db2ac2b6a1cd67c3afcfaa284390
raisl guideのRails Application Templates
の修正です。
yes?(question) or no?(question)
の項のexampleコードで既に存在しないコマンドを使用していたのを、db:migrate
を使用するよう修正しています。
Fix Action Mailbox ingress config example [ci skip]
actionmailbox/lib/rails/generators/installer.rb
の修正です。
action_mailbox:install
でconfig/environments/production.rb
に追加する内容に誤りがあった(ingress
に指定出来ない値を指定していた)のを修正しています。
Update multi_json to the latest version
Gemfile.lock
の修正です。
multi_json
gemのバージョンを最新のバージョンに更新しています。Rubyのwarningが表示されるのを避ける為。
Add two cross links to methods in docs [skip ci]
actionpack/lib/action_controller/metal/redirecting.rb
、
activerecord/lib/active_record/persistence.rb
のdocの修正です。
redirect_back
、delete
メソッドのdoc内のメソッドの説明が、そのメソッドのdocへのリンクになるよう修正しています。