2024/04/14分のコミットです。
CHANGELOGにのったコミットは以下の通りです。
Fix typo in Feature Policy for idle-detection
actionpack/lib/action_dispatch/http/permissions_policy.rb
の修正です。
Feature Policyのidle-detection
directive名をタイポしていたのを修正しています。
Allow ActiveRecord::Base#pluck
to accept hash values
activerecord/lib/active_record/relation/calculations.rb
、
activerecord/lib/active_record/relation/query_methods.rb
の修正です。
ActiveRecord::Base#pluck
でtableとcolumnの組み合わせをHashで指定出来るよう修正しています。
# Before Post.joins(:comments).pluck("posts.id", "comments.id", "comments.body") # After Post.joins(:comments).pluck(posts: [:id], comments: [:id, :body])
Fix SQL query example in ActiveRecord::Base#ids
docs [skip ci]
activerecord/lib/active_record/relation/calculations.rb
のdocの修正です。
ActiveRecord::Base#ids
のdoc内にあるexampleコードで指定するassociation名が誤っていたのを修正しています。