diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-09-17 06:11:46 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-09-17 06:11:46 -0700 |
commit | 896594f5ae4f11a33be98858b2e359ab1931786c (patch) | |
tree | d56eaa55f827093a2035010ca6288ee36b1477c6 /actionpack | |
parent | 73d3c933ee55cea15affd2b1cde92244f5ea88e1 (diff) | |
parent | 0654f76a5ae5c7c34d22da0f732d45d9300c0762 (diff) | |
download | rails-896594f5ae4f11a33be98858b2e359ab1931786c.tar.gz rails-896594f5ae4f11a33be98858b2e359ab1931786c.tar.bz2 rails-896594f5ae4f11a33be98858b2e359ab1931786c.zip |
Merge pull request #7595 from guilleiguaran/update-ap-changelog
Add missing entry in CHANGELOG about change of AD::Session::MemCacheStore
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/CHANGELOG.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index 239e4445d3..3b71af9af7 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -1,5 +1,18 @@ ## Rails 4.0.0 (unreleased) ## +* Sprockets integration has been extracted from Action Pack and the `sprockets-rails` + gem should be added to Gemfile (under the assets group) in order to use Rails asset + pipeline in future versions of Rails. + + *Guillermo Iguaran* + +* `ActionDispatch::Session::MemCacheStore` now uses `dalli` instead of the deprecated + `memcache-client` gem. As side effect the autoloading of unloaded classes objects + saved as values in session isn't supported anymore when mem_cache session store is + used, this can have an impact in apps only when config.cache_classes is false. + + *Arun Agrawal + Guillermo Iguaran* + * Support multiple etags in If-None-Match header. *Travis Warlick* * Allow to configure how unverified request will be handled using `:with` |