aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-06-30 06:11:26 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-06-30 06:11:26 +0000
commit7e1d002673777bb1240e27949a853a8f287d1f56 (patch)
treede22db895d036c0729d61eb8ace57d2a53859428 /activesupport/CHANGELOG
parenta90598b4581987297e425914096d6bf134957d17 (diff)
downloadrails-7e1d002673777bb1240e27949a853a8f287d1f56.tar.gz
rails-7e1d002673777bb1240e27949a853a8f287d1f56.tar.bz2
rails-7e1d002673777bb1240e27949a853a8f287d1f56.zip
Fixed memory leak with Object#remove_subclasses_of, which inflicted a Rails application running in development mode with a ~20KB leak per request #1289 [c.r.mcgrath@gmail.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1569 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r--activesupport/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 3919c86540..b73488f60e 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fixed memory leak with Object#remove_subclasses_of, which inflicted a Rails application running in development mode with a ~20KB leak per request #1289 [c.r.mcgrath@gmail.com]
+
* Made 1.year == 365.25.days to account for leap years. This allows you to do User.find(:all, :conditions => ['birthday > ?', 50.years.ago]) without losing a lot of days. #1488 [tuxie@dekadance.se]
* Added an exception if calling id on nil to WhinyNil #584 [kevin-temp@writesoon.com]