aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorMike Perham <mperham@gmail.com>2010-08-28 14:46:15 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2010-08-28 15:43:10 -0700
commit390d285ef67e1868aa0af6e86fa1cd59c32e926d (patch)
treedb3a7f6eec3606a2faf4670324ae1b5b78ab0cde /activesupport/CHANGELOG
parent730af4896358d9125dbd7b8384d66460ae839a45 (diff)
downloadrails-390d285ef67e1868aa0af6e86fa1cd59c32e926d.tar.gz
rails-390d285ef67e1868aa0af6e86fa1cd59c32e926d.tar.bz2
rails-390d285ef67e1868aa0af6e86fa1cd59c32e926d.zip
Support pluggable cache stores.
[#5486 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r--activesupport/CHANGELOG10
1 files changed, 10 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index c7f5d6f8b9..e1904fad39 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,3 +1,13 @@
+*Rails 3.0.0 (unreleased)*
+
+* Pluggable cache stores: setting config.cache_store = "custom_store" will require 'active_support/cache/custom_store' and look for the CustomStore constant. #5486 [Mike Perham]
+
+
+*Rails 3.0.0 [release candidate 2] (August 23rd, 2010)*
+
+* No changes
+
+
*Rails 3.0.0 [release candidate] (July 26th, 2010)*
* Removed Object#returning, Object#tap should be used instead. [Santiago Pastorino]