diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-06-25 10:56:20 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-06-25 10:56:20 +0000 |
commit | deda0ee4a8008475629f020e0334f64cc05215c8 (patch) | |
tree | e41d89732885455334c5565488f3bfce2bc6085f /activerecord/CHANGELOG | |
parent | e4ccbf28c815fefeeb90c45524feea7b57e5a6ae (diff) | |
download | rails-deda0ee4a8008475629f020e0334f64cc05215c8.tar.gz rails-deda0ee4a8008475629f020e0334f64cc05215c8.tar.bz2 rails-deda0ee4a8008475629f020e0334f64cc05215c8.zip |
Fixed that clear_association_cache doesn't delete new associations on new records (so you can safely place new records in the session with Action Pack without having new associations wiped) #1494 [cluon]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1504 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r-- | activerecord/CHANGELOG | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index f2bc01bc06..b487f442b3 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Fixed that clear_association_cache doesn't delete new associations on new records (so you can safely place new records in the session with Action Pack without having new associations wiped) #1494 [cluon] + * Fixed that calling Model.find([]) returns [] and doesn't throw an exception #1379 * Fixed that adding a record to a has_and_belongs_to collection would always save it -- now it only saves if its a new record #1203 [Alisdair McDiarmid] |