## Rails 7.2.0.rc1 (August 06, 2024) ##
* No changes.
## Rails 7.2.0.beta3 (July 11, 2024) ##
* Fix templates with strict locals to also include `local_assigns`.
Previously templates defining strict locals wouldn't receive the `local_assigns`
hash.
*Jean Boussier*
## Rails 7.2.0.beta2 (June 04, 2024) ##
* No changes.
## Rails 7.2.0.beta1 (May 29, 2024) ##
* Add queries count to template rendering instrumentation.
```
# Before
Completed 200 OK in 3804ms (Views: 41.0ms | ActiveRecord: 33.5ms | Allocations: 112788)
# After
Completed 200 OK in 3804ms (Views: 41.0ms | ActiveRecord: 33.5ms (2 queries, 1 cached) | Allocations: 112788)
```
*fatkodima*
* Raise `ArgumentError` if `:renderable` object does not respond to `#render_in`.
*Sean Doyle*
* Add the `nonce: true` option for `stylesheet_link_tag` helper to support automatic nonce generation for Content Security Policy.
Works the same way as `javascript_include_tag nonce: true` does.
*Akhil G Krishnan*, *AJ Esler*
* Parse `ActionView::TestCase#rendered` HTML content as `Nokogiri::XML::DocumentFragment` instead of `Nokogiri::XML::Document`.
*Sean Doyle*
* Rename `ActionView::TestCase::Behavior::Content` to `ActionView::TestCase::Behavior::RenderedViewContent`.
Make `RenderedViewContent` inherit from `String`. Make private API with `:nodoc:`
*Sean Doyle*
* Deprecate passing `nil` as value for the `model:` argument to the `form_with` method.
*Collin Jilbert*
* Alias `field_set_tag` helper to `fieldset_tag` to match `