[ci skip] Add changelog entry for #18948.

This commit is contained in:
Kasper Timm Hansen 2015-02-26 17:23:22 +01:00
parent b940e9feea
commit 0b32beadf5
1 changed files with 20 additions and 0 deletions

View File

@ -1,3 +1,23 @@
* Collection rendering automatically caches and fetches multiple partials.
Collections rendered as:
```ruby
<%= render @notifications %>
<%= render partial: 'notifications/notification', collection: @notifications, as: :notification %>
```
will now read several partials from cache at once, if the template starts with a cache call:
```ruby
# notifications/_notification.html.erb
<% cache notification do %>
<%# ... %>
<% end %>
```
*Kasper Timm Hansen*
* Fixed a dependency tracker bug that caused template dependencies not
count layouts as dependencies for partials.