aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index e30029fb6d..84bb98e1b0 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,5 +1,14 @@
## Rails 4.0.0 (unreleased) ##
+* Fix cache digests to respect the format of view files being looked up.
+ `Digestor` called `LookupContext#find` with the options as the wrong argument
+ causing the formats option to be ignored.
+
+ Caching `article/show.pdf.erb` now correctly digests any dependencies as
+ `_partial.pdf.erb` and not `_partial.html.erb`.
+
+ *Martin Westin*
+
* Add support for passing custom url options other than `:host` and custom
status and flash options to `force_ssl`.