2024/04/09分のコミットです。
CHANGELOGへの追加はありませんでした。
Minor tweaks / improvements to recent changelog/api docs [ci skip]
docの修正です。
各docのグラマーや用語の修正を行っています。
Fix textdecorator specificity on hovering in index
guides/assets/stylesrc/_main.scss
の修正です。
rails guideのindexページで、hover時のtext-decoratorとcolorを正しく使用されてなかったのを修正しています。
Raise when both :force
and :if_not_exists
provided to create_table
activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
の修正です。
create_table
に:force
と:if_not_exists
オプションを同時に指定した場合に、ArgumentError
をraiseするよう修正しています。
[RF-DOCS] Action View Helpers Documentation [ci-skip] (#51432)
rails guideのAction View Helpers
の修正です。
guide全体について、セクションの見直し、exampleやメソッドの追加、言い回しの修正等を行っています。
Remove duplicated features attribute on devcontainer.json.tt
railties/lib/rails/generators/rails/app/templates/.devcontainer/devcontainer.json.tt
の修正です。
重複していたfeatures
attributeの指定を削除しています。
Fix minor typos in enqueue_after_transaction_commit
default docs
railties/lib/rails/generators/rails/app/templates/config/initializers/new_framework_defaults_7_2.rb.tt
のdocの修正です。
コメント内のタイポを修正しています。
Properly escape paths in erb example code blocks in guides [ci-skip]
rails guideのThe Asset Pipeline
の修正です。
exampleコード内のコメント部分を適切にエスケープするよう修正しています。
Use SQL comments for SQL code blocks in guides [ci-skip]
rails guideのActive Record Basics
の修正です。
SQL code block内のコメントにSQLのcomment指定(--
)を使用するよう修正しています。
Merge pull request #51355 from asavageiv/alan/update-docs
rails guideのActive Record Basics
の修正です。
Creating Namespaced Models
セクションのexampleコードで、他のセクションと同じmodel名を使用するよう修正しています。
Ensure association's foreign_key:
and query_constraints:
options behave the same
activerecord/lib/active_record/reflection.rb
の修正です。
associationのforeign_key
オプションがArrayの場合、query_constraints
に同じ値を設定するよう修正しています。composite foreign keyを使用している場合に自動のinverse処理が正しく動作するようにする為。