aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-10-04 19:58:19 -0700
committerSantiago Pastorino <santiago@wyeworks.com>2012-10-04 19:58:19 -0700
commita8c8a08f1ae7099f750058ef3e168810e5ad47d8 (patch)
tree2f7392d0efa7e32c2500b0a9d3a95e81e0e639f4 /actionpack/CHANGELOG.md
parent4b33bbc80374e486467f9a7b76e34e4ab2ce0b50 (diff)
parentab4c079536641e63ca51b6121864a75de7145256 (diff)
downloadrails-a8c8a08f1ae7099f750058ef3e168810e5ad47d8.tar.gz
rails-a8c8a08f1ae7099f750058ef3e168810e5ad47d8.tar.bz2
rails-a8c8a08f1ae7099f750058ef3e168810e5ad47d8.zip
Merge pull request #7838 from guilleiguaran/extract-rack-cache
Disable Rack::Cache by default
Diffstat (limited to 'actionpack/CHANGELOG.md')
-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.