aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-10-22 10:28:53 +0200
committerXavier Noria <fxn@hashref.com>2010-10-22 10:28:53 +0200
commit5b86c3e5bb2bb54003d8f211b46a7b992355dbf5 (patch)
tree1375ec5b4b1bfc68b8255b82980aa6bb45b6da3b /activerecord/CHANGELOG
parentfc8c0729881fff59e916f7ab180dbfa03ee1b891 (diff)
downloadrails-5b86c3e5bb2bb54003d8f211b46a7b992355dbf5.tar.gz
rails-5b86c3e5bb2bb54003d8f211b46a7b992355dbf5.tar.bz2
rails-5b86c3e5bb2bb54003d8f211b46a7b992355dbf5.zip
has_one maintains the association with separate after_create/after_update
This way parent models can get their own after_create and after_update callbacks fired after has_one has done its job.
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG3
1 files changed, 3 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 75657cb6ee..d3530e0da9 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,8 @@
*Rails 3.1.0 (unreleased)*
+* has_one maintains the association with separate after_create/after_update instead
+ of a single after_save. [fxn]
+
* The following code:
Model.limit(10).scoping { Model.count }