aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/CHANGELOG.md
diff options
context:
space:
mode:
authorst0012 <stan001212@gmail.com>2019-04-20 01:34:53 +0900
committerst0012 <stan001212@gmail.com>2019-04-20 01:34:53 +0900
commit88c195bf81adda5758dfc9b86e2ac79daf9fd2e0 (patch)
treeb51b58a88ce929b6282f29d300e1476aedd2ef15 /actionview/CHANGELOG.md
parent16dae7684edc480ee3fe65dfff8e19989402c987 (diff)
downloadrails-88c195bf81adda5758dfc9b86e2ac79daf9fd2e0.tar.gz
rails-88c195bf81adda5758dfc9b86e2ac79daf9fd2e0.tar.bz2
rails-88c195bf81adda5758dfc9b86e2ac79daf9fd2e0.zip
Update the changelog to explain the fix
Diffstat (limited to 'actionview/CHANGELOG.md')
-rw-r--r--actionview/CHANGELOG.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md
index be67aff543..f465e08859 100644
--- a/actionview/CHANGELOG.md
+++ b/actionview/CHANGELOG.md
@@ -1,3 +1,14 @@
+* Fix partial caching skips same item issue
+
+ If we render cached collection partials with repeated items, those repeated items
+ will get skipped. For example, if you have 5 identical items in your collection, Rails
+ only renders the first one when `cached` is set to true. But it should render all
+ 5 items instead.
+
+ This fixes #35114
+
+ *Stan Lo*
+
* Only clear ActionView cache in development on file changes
To speed up development mode, view caches are only cleared when files in