2017/06/12分のコミットです。
CHANGELOGにのったコミットは以下の通りです。
Merge pull request #29263 from assain/default_message_encryptor_to_gcm
Active Supportの修正です。
ActiveSupport::MessageEncryptorのデフォルトのcipherにAES 256 GCMを使用するよう修正しています。
[ci skip] Add changelog entry for 6d402c6
activesupport/CHANGELOG.mdの修正です。
先のActiveSupport::MessageEncryptorの対応について、CHANGELOGにエントリーを記載しています。
Fix Message::Encryptor default cipher [ci skip]
activesupport/lib/active_support/message_encryptor.rbのdocの修正です。
MessageEncryptorクラスのdoc内のcipherのデフォルト値の説明に誤りがあったのを修正しています。
Drop IRB out of the web-console Gemfile comment
railties/lib/rails/generators/rails/app/templates/Gemfileの修正です。
web-console gemについての説明から、IRBという単語を削除しています。
- # Access an IRB console on exception pages or by using <%%= console %> anywhere in the code. + # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
web-consoleはIRBと同じ動作を提供しているわけではないため。
Add brakeman to guides/additional resources. Fixes #29383 [ci skip] (#29427)
rails guideのRuby on Rails Security Guideの修正です。
Additional Resourcesの項にBrakeman - Rails Security Scannerへのリンクを追加しています。
Add note to Railtie docs to use unique filenames
railties/lib/rails/railtie.rbの修正です。
Rails::Railtieクラスのdoc内のLoading Rake Tasks and Generatorsの項に、taskやgeneratorのファイル名は、複数gem間でユニークである必要がある旨説明を追加しています。