Fixup CHANGELOGs [ci skip]

This commit is contained in:
Ryuta Kamizono 2020-06-07 12:58:22 +09:00
parent 40877d823d
commit cfb7c16ac4
3 changed files with 5 additions and 4 deletions

View File

@ -7,7 +7,7 @@
we check for public/some.js.br and serve that file, if present, with
`Content-Encoding: br` and `Vary: Accept-Encoding` headers.
*Ryan Edward Hall, Jeremy Daer*
*Ryan Edward Hall*, *Jeremy Daer*
* Add raise_on_missing_translations support for controllers.

View File

@ -3,7 +3,7 @@
virtual_path keyword arguments found in CacheHelper as they no longer possess
any function following 1581cab.
Fixes #38984
Fixes #38984.
*Aaron Lipman*
@ -15,7 +15,8 @@
*fatkodima*
* Instrument layout rendering in `TemplateRenderer#render_with_layout` as `render_layout.action_view`, and include (when necessary) the layout's virtual path in notification payloads for collection and partial renders.
* Instrument layout rendering in `TemplateRenderer#render_with_layout` as `render_layout.action_view`,
and include (when necessary) the layout's virtual path in notification payloads for collection and partial renders.
*Zach Kemp*

View File

@ -2,7 +2,7 @@
```ruby
david_and_mary = Author.where(id: [david, mary])
mary_and_bob = Author.where(id: [mary, bob]) # => [bob]
mary_and_bob = Author.where(id: [mary, bob])
david_and_mary.merge(mary_and_bob) # => [mary, bob]