なるようになるブログ

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

rails commit log流し読み(2025/02/10)

2025/02/10分のコミットです。

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


Simplify stdparam state to reduce retained hashes

actionpack/lib/action_dispatch/journey/gtg/transition_table.rbactionpack/lib/action_dispatch/journey/visualizer/fsm.jsの修正です。

JourneyのTransitionTable class内のstdparam stateについて、hashの保持数を減らすようリファクタリングしています。


Fix JSON test leaking constants

activesupport/test/json/encoding_test.rbの修正です。

特定のテストでしか使用しないconstantsをStruct namespace配下に作成しないよう修正しています。


Skip allocation when JSON options are nil

activesupport/lib/active_support/json/encoding.rbの修正です。

JSONのencoding処理でoptionsnilの場合、不要なオブジェクトを生成しないよう修正しています。


Allow other database adapters in tests

activerecord/test/cases/relation/update_all_test.rbの修正です。

update_allのテストで、Railsが公式にサポートしているadapterではエラーになる箇所があったのを、非公式adapterでもテストを実行出来るよう修正しています。SQL Server adapterでテストを実行出来るようにする為。