2025/08/10分のコミットです。
CHANGELOGにのったコミットは以下の通りです。
actionmailer/CHANGELOG.md
Merge pull request #55448 from fatkodima/multi-deliver
actionmailer/lib/action_mailer/message_delivery.rbの修正です。
複数のemailをまとめてenqueueをdeliver_all_laterメソッドを追加しています。perform_all_laterのdeliver版。
user_emails = User.all.map { |user| Notifier.welcome(user) } ActionMailer.deliver_all_later(user_emails)
Use comment for example errors [ci-skip]
activerecord/lib/active_record/core.rb、
activerecord/lib/active_record/relation/query_methods.rbのdocの修正です。
doc内のexampleコード内の実行結果の箇所をコメントとして扱うよう修正しています。
Remove RDoc artifacts [ci-skip]
actiontext/lib/action_text/content.rbのdocの修正です。
doc内のクラスについて説明している箇所が、API docへのリンクになるよう修正しています。
Fully qualify ActiveJob::Arguments for auto-link [ci-skip]
activejob/lib/active_job/base.rbのdocの修正です。
doc内のクラスについて説明している箇所が、API docへのリンクになるよう修正しています。
Link using rdoc-ref instead of rdoc-label [ci-skip]
activemodel/lib/active_model/dirty.rbのdocの修正です。
doc内のメソッドについてのリンクにrdoc-labelを使っている箇所があったのを、rdoc-refを使用するよう修正しています。rdoc-refだとcode referenceとして扱わ、monospaceとしてフォーマットされる為、との事です。
Remove "Returns" headings [ci-skip]
actionpack/lib/abstract_controller/base.rbのdocの修正です。
doc内のReturns headingを削除しています。他のdocでは使っていあにheadingの為。
Add missing punctuation [ci-skip]
docの修正です。
説明の末尾にピリオドを追加しています。
Auto-link non-async counterpart methods [ci-skip]
activerecord/lib/active_record/querying.rbのdocの修正です。
doc内のメソッドについて説明している箇所が、API docへのリンクになるよう修正しています。
Use bin/rails instead of global rails command [ci-skip]
rails guideの修正です。
globalのrailsコマンドを使用している箇所を、bin/railsを使用するよう修正しています。
Replace "mailing list" with "forum" [ci-skip]
docの修正です。
rubyonrails-core mailing list について言及してる箇所を、rubyonrails-core forumに修正していmさう。
Format example as code instead of ASCII table [ci-skip]
actionpack/lib/action_dispatch/http/mime_negotiation.rbのdocの修正です。
formatメソッドのdoc内のexampleコードのフォーマットを修正しています。
Use comment for example return values [ci-skip]
docの修正です。
doc内のexampleコード内の実行結果の箇所をコメントとして扱うよう修正しています。
Tweak wording to be less imperative [ci-skip]
rails guideのActive Storage Overviewの修正です。
Setupセクション内の言い回しを修正しています。
Move Representable#variant options doc to API docs [ci-skip]
docの修正です。
ActiveStorage::Blob::Representable#variantメソッドのオプションの説明がrails guideに記載されていたのを、API docに移動しています。
Fix excerpt helper with non-whitespace separator
actionview/lib/action_view/helpers/text_helper.rbの修正です。
excerptメソッドのseparatorオプションに空白以外の値を指定して場合の挙動が、空白を指定した場合と異なっていた(値を抜粋した際に不要なセパレーターがついてくる場合があった)のを、同じ挙動になるよう修正しています。
Merge pull request #55473 from master-coder-ayush/improve-spawn-methods-documentation
activerecord/lib/active_record/relation/spawn_methods.rbのdocの修正です。
ActiveRecord::SpawnMethods#except、及び、#onlyメソッドのdocについて、挙動の説明の言い回しを修正しています。