2025/01/15分のコミットです。
CHANGELOGにのったコミットは以下の通りです。
Fix usable values for openssl_verify_mode configuration in Action Mailer Guide
rails guideのConfiguring Rails Applications
の修正です。
:openssl_verify_mode
オプションに指定出来る値がsymbolで記載されていたのを、stringに変更しています。symbolの値だとエラーになってしまう為。
Enable #exists?
queries to be retryable
Active Recordの修正です。
#exists?
が失敗した場合に、自動でリトライするよう修正しています。
Merge pull request #54242 from borama/patch-1
railties/lib/rails/generators/rails/app/templates/Gemfile.tt
の修正です。
不要な空行を削除しています。
Update nokogiri to fix Devcontainer smoke test
Gemfile.lock
の修正です。
nokogiri
gemを最新バージョンに更新しています。 Devcontainerのsmoke testがnokogiri
のインストールで失敗している為。
Fix an incorrect example in the doc of the Strong Parameters [ci skip]
actionpack/lib/action_controller/metal/strong_parameters.rb
のdocの修正です。
ActionController::Parameters#expect
メソッドのdocにあるexampleコードが、実際には動作しないコードが含まれていたのを修正しています。
Update Gemfile.lock to fix Devcontainer smoke test
Gemfile.lock
の修正です。
Devcontainerのsmoke testがまだgemのインストールで失敗しているので、対応の為にgemをまとめて最新バージョンに更新しています。
Add direct insert and direct delete methods to a guide [skip ci]
rails guideのActive Record Basics
の修正です。
Active Recordのcreate/deleteメソッドについて説明している箇所に、callbacks/validationsの実行無しで処理を実行するメソッドについての説明を追加しています。
Don't include script
and style
content to node plaintext conversion
actiontext/lib/action_text/plain_text_conversion.rb
の修正です。
ActionText::Content#to_plain_text
メソッドでscript
及びstyle
tagのnodeを出力しないよう修正しています。