2022/11/16分のコミットです。
CHANGELOGへの追加はありませんでした。
Merge pull request #46478 from jonathanhefner/app_generator_test-run_generator_and_bundler
railties/test/generators/app_generator_test.rb
の修正です。
app generatorのテストで、Bunlderのstub処理をメソッドに切り出しています。
docの修正です。
各docのタイポの修正を行っています。
docの修正です。
doc内のメソッド名やファイル名などのフォーマットが正しく指定されてない箇所があったのを修正しています。
Auto-link code references [ci-skip]
docの修正です。
doc内で他のメソッドなどを言及している箇所で、そのメソッドのAPI docにリンクがされるよう修正しています。
Remove unnecessary link markup [ci-skip]
docの修正です。
doc内で他のメソッドなどを言及している箇所で、不要なリンクのマークアップの記述があったのを削除しています。
Document ActiveModel::Type::Time as time of day [ci-skip]
activemodel/lib/active_model/type/time.rb
のdocの修正です。
ActiveModel::Type::Time
のdoc内のコードexampleを、ActiveModel::Type::Time
に渡された文字列はdateとtime zoneが自動でノーマライズされる(timeの値のみ指定された値が使用される)、という挙動ががわかるよう修正しています。
Replace ActionController::UrlFor references [ci-skip]
actionpack/lib/action_dispatch/routing/url_for.rb
のdocの修正です。
現在は存在しないActionController::UrlFor
を参照している箇所があったのを、移行後のクラスであるActionDispatch::Routing::UrlFor
を参照するよう修正しています。
Tweak AD::Http::FilterParameters code example [ci-skip]
actionpack/lib/action_dispatch/http/filter_parameters.rb
のdocの修正です。
ActionDispatch::Http::FilterParameters
のdoc内の、挙動についての説明の言い回しの修を行っています。
Update ActionController::UrlFor request contract [ci-skip]
actionpack/lib/action_controller/metal/url_for.rb
の修正です。
ActionController::UrlFor
のdoc内の、request
変数の挙動について、現在と挙動と異なっている説明になっていたのを修正しています。
Clarify numeric casting behavior for blank strings [ci-skip]
Active Modelのdocの修正です。
numeric casting処理で、空文字が指定された場合の挙動についての説明を追加しています。
Elaborate doc for attribute read and write methods [ci-skip]
Active Recordのdocの修正です。
attributeのread、writeメソッドの挙動についての詳細な説明を追加しています。
Add *_check_constraint actions to Migrations guide [ci-skip]
rails guideのActive Record Migrations
の修正です。
Migrationメソッドの一覧に、check_constraint
関連のメソッドを追加しています。
rails guideのThe Rails Command Lineの修正です。
yaml
のexampleを記載している箇所のコードハイライトが正しく表示されるよう修正しています。
Fix link to "Conditional GET Support" section [ci-skip]
rails guideのSecuring Rails Applications
の修正です。
他guideへのリンク先の指定が誤っている箇所があったのを修正しています。
Add MDN links for security headers [ci-skip]
rails guideのSecuring Rails Applications
の修正です。
HTTPヘッダーについて説明している箇所に、MDNへのリンクを追加しています。
Fix Active Record Encryption credentials example [ci-skip]
rails guideのActive Record Encryption
の修正です。
Rotating Keys
の項にあるyamlのexampleで、keyの指定が誤っていたのを修正しています。
Merge pull request #46485 from RubyElders/nodoc-all-arel-files
activerecord/lib/arel/filter_predications.rb
、
activerecord/lib/arel/nodes/filter.rb
のdocの修正です。
private APIであるArelのfilter関係のclassがAPI docに表示されないよう修正しています。
Merge pull request #46484 from RubyElders/leading-join-node-namespace
Active Recordの修正です。
Arel::Nodes::LeadingJoin
クラスがActiveRecord::QueryMethods
module配下に定義されていたのを、Arel
module配下で定義するよう修正しています。