aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-06-17 10:08:41 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-06-17 10:08:41 +0000
commitd808cd4582d407a7b0dae93ee94da6fbc8cd0c2b (patch)
tree6c261fb210258a306734601c3d71d85cd751fa77 /activerecord/CHANGELOG
parentef141e8536dd454ed532b62c4c8b04015269aece (diff)
downloadrails-d808cd4582d407a7b0dae93ee94da6fbc8cd0c2b.tar.gz
rails-d808cd4582d407a7b0dae93ee94da6fbc8cd0c2b.tar.bz2
rails-d808cd4582d407a7b0dae93ee94da6fbc8cd0c2b.zip
Fixed saving of in-memory association structures to happen as a after_create/after_update callback instead of after_save -- that way you can add new associations in after_create/after_update callbacks without getting them saved twice
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1448 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 1ba537dce0..e49e96e738 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fixed saving of in-memory association structures to happen as a after_create/after_update callback instead of after_save -- that way you can add new associations in after_create/after_update callbacks without getting them saved twice
+
* Allow any Enumerable, not just Array, to work as bind variables #1344 [Jeremy Kemper]
* Added actual database-changing behavior to collection assigment for has_many and has_and_belongs_to_many #1425 [Sebastian Kanthak].