aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-09-12 11:32:45 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-09-12 16:04:10 -0300
commitc539c684aa0fc08769304746e1702aa1b4ddd4c8 (patch)
tree67dcf16ed3e3d4028c5e2f8c8a9ab136582a95fd /activesupport/CHANGELOG.md
parentc9642e31b1a9f764fbf1ce85b38fa225ec5e6b42 (diff)
downloadrails-c539c684aa0fc08769304746e1702aa1b4ddd4c8.tar.gz
rails-c539c684aa0fc08769304746e1702aa1b4ddd4c8.tar.bz2
rails-c539c684aa0fc08769304746e1702aa1b4ddd4c8.zip
Merge pull request #12196 from h-lame/fix-activesupport-cache-filestore-cleanup
Fix FileStore#cleanup to no longer rely on missing each_key method Conflicts: activesupport/CHANGELOG.md activesupport/test/caching_test.rb
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index f410394607..374bca1c85 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,5 +1,9 @@
## unreleased ##
+* Fix ActiveSupport::Cache::FileStore#cleanup to no longer rely on missing each_key method.
+
+ *Murray Steele*
+
* Add respond_to_missing? for TaggedLogging which is best practice when overriding method_missing. This permits
wrapping TaggedLogging by another log abstraction such as em-logger.