なるようになるブログ

読書感想文かrailsについてかrubyについてか

rails commit log流し読み(2023/12/05)

2023/12/05分のコミットです。

CHANGELOGへの追加はありませんでした。


Document the preprocessed variant option

rails guideのActive Storage Overviewの修正です。

has_one_attachedセクションに、preprocessedオプションについての説明を追加しています。


Add actionview deprecation to 7.2 release note

rails guideのRuby on Rails 7.2 Release Notesの修正です。

Action ViewのDeprecationsについて説明を追加しています。


Revert "Do not overwrite AJ logger if it is supplied"

active_job.logger initializerでloggerがすでに設定されている場合にloggerの上書きをしないよう修正した、Do not overwrite AJ logger if it is suppliedをRevertしています。Active Jobのloggerはデフォルト値が設定されており、上書きしないとRailsのloggerが必ず設定されない状態になってしまうため。


Optimize Time.at_with_coercion

activesupport/lib/active_support/core_ext/time/calculations.rbの修正です。

Time.at_with_coercionについて、delegationにruby2_keyword styleを使用するよう修正しています。オブジェクト生成数と不要なチェックを減らすようにする為。