aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2012-10-03 16:48:45 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2012-10-04 21:53:07 -0500
commitab4c079536641e63ca51b6121864a75de7145256 (patch)
tree2f7392d0efa7e32c2500b0a9d3a95e81e0e639f4
parent3a68a53e17caff8add1a4c3ffa90e5711b834dad (diff)
downloadrails-ab4c079536641e63ca51b6121864a75de7145256.tar.gz
rails-ab4c079536641e63ca51b6121864a75de7145256.tar.bz2
rails-ab4c079536641e63ca51b6121864a75de7145256.zip
Update CHANGELOG entry about rack-cache extract
-rw-r--r--actionpack/CHANGELOG.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index f07c6fe828..df93bb3d27 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##
+* The `Rack::Cache` middleware is now disabled by default. To enable it,
+ set `config.action_dispatch.rack_cache = true` and add `gem rack-cache` to your Gemfile.
+
+ *Guillermo Iguaran*
+
* `ActionController::Base.page_cache_extension` option is deprecated
in favour of `ActionController::Base.default_static_extension`.
@@ -13,10 +18,9 @@
* Failsafe exception returns text/plain. *Steve Klabnik*
-* Remove actionpack's rack-cache dependency and declare the
- dependency in the Gemfile.
+* Remove `rack-cache` dependency from Action Pack and declare it on Gemfile
- *Guillermo IguarĂ¡n*
+ *Guillermo Iguaran*
* Rename internal variables on ActionController::TemplateAssertions to prevent
naming collisions. @partials, @templates and @layouts are now prefixed with an underscore.