aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-05-02 16:46:30 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-05-02 16:46:30 +0000
commit24a9050b6e34c859909f4e16ee68b8b34407a771 (patch)
tree777e5811e895dedfa83ade91b17a1a1d2b1db147 /activerecord/CHANGELOG
parent74a612c4a15f3094e478aa79eb63b27efec8358a (diff)
downloadrails-24a9050b6e34c859909f4e16ee68b8b34407a771.tar.gz
rails-24a9050b6e34c859909f4e16ee68b8b34407a771.tar.bz2
rails-24a9050b6e34c859909f4e16ee68b8b34407a771.zip
Changed the callbacks such that observers are notified before the in-object callbacks are triggered. Without this change, it wasn't possible to act on the whole object in something like a before_destroy observer without having the objects own callbacks (like deleting associations) called first.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1273 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 56ec6c80be..7d6a7c9a50 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Changed the callbacks such that observers are notified before the in-object callbacks are triggered. Without this change, it wasn't possible to act on the whole object in something like a before_destroy observer without having the objects own callbacks (like deleting associations) called first.
+
* Added option for passing an array to the find_all version of the dynamic finders and have it evaluated as an IN fragment. Example:
# SELECT * FROM topics WHERE title IN ('First', 'Second')