aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-12-22 13:53:47 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-12-22 13:53:47 +0000
commit951c9426ad37b89bbab5de1389ceea337da623cf (patch)
tree3a2d909f1a3fe75848b7dba86234b8272ff4c512 /actionpack/CHANGELOG
parenta04b1f3d8a54aaec988c264267cf9f2c2340f275 (diff)
downloadrails-951c9426ad37b89bbab5de1389ceea337da623cf.tar.gz
rails-951c9426ad37b89bbab5de1389ceea337da623cf.tar.bz2
rails-951c9426ad37b89bbab5de1389ceea337da623cf.zip
Added search through session to clear out association caches at the end of each request. This makes it possible to place Active Record objects in the session without worrying about stale data in the associations (the main object is still subject to caching, naturally) #347 [Tobias Luetke]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@251 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG3
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 81acf0c9dd..705cda5f4a 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,8 @@
*SVN*
+* Added search through session to clear out association caches at the end of each request. This makes it possible to place Active Record objects
+ in the session without worrying about stale data in the associations (the main object is still subject to caching, naturally) #347 [Tobias Luetke]
+
* Added more informative exception when using helper :some_helper and the helper requires another file that fails, you'll get an
error message tells you what file actually failed to load, rather than falling back on assuming it was the helper file itself #346 [dblack]