なるようになるブログ

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

rails commit log流し読み(2022/03/01)

2022/03/01分のコミットです。

CHANGELOGにのったコミットは以下の通りです。

actionpack/CHANGELOG.md


Fixes wrong formatting in the AR changelog entry [ci skip]

activerecord/CHANGELOG.mdの修正です。

フォーマットの修正を行っています。


Bump Nokogiri to 1.13.3, previous version don't support Ruby 3.1:

Gemfile.lockの修正です。

Nokogiriのバージョンを1.13.3に更新しています。1.12系だとRuby 3.1をサポートしていない為。


Ensure SVG elements are closed.

actionview/lib/action_view/helpers/tag_helper.rbの修正です。

SVGの子要素と閉じタグが指定されていないバグがあったのを修正しています。


Merge pull request #44581 from yahonda/jsbundling_rails_102

Gemfile.lockrailties/test/generators/app_generator_test.rbの修正です。

cssbundling-rails、及び、jsbundling-railsのバージョンを最新バージョンに更新しています。それぞれのgemが生成するbin/devが同じ内容のファイルになるようにする為。


Eager load ActiveJob::ConfiguredJob and Serializers

activejob/lib/active_job.rbの修正です。

ActiveJob::ConfiguredJobActiveJob::Serializersをeager loadするよう修正しています。


Apply content security policy mapping when generated dynamically:

actionpack/lib/action_dispatch/http/content_security_policy.rbの修正です。

content security policyを動的に生成している、かつ、値をArrayで指定している場合に、self等の値が適切にsingle quoteで囲まれないバグがあったのを修正しています。