aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-03-16 22:39:01 +0000
committerMichael Koziarski <michael@koziarski.com>2007-03-16 22:39:01 +0000
commitf87db851c680164b6474d783d5f29b6cb4c013c0 (patch)
tree54fb824532902b536fbe8141378a6babed26f0a5 /activerecord/CHANGELOG
parent16b4739e1ef4bc6846c2fd08f81f87eb76b45692 (diff)
downloadrails-f87db851c680164b6474d783d5f29b6cb4c013c0.tar.gz
rails-f87db851c680164b6474d783d5f29b6cb4c013c0.tar.bz2
rails-f87db851c680164b6474d783d5f29b6cb4c013c0.zip
Remove deprecated object transactions. People relying on this functionality should install the object_transactions plugin at http://code.bitsweat.net/svn/object_transactions. Closes #5637 [Koz, Jeremy Kemper]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6439 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 cbd928ac65..dd1c1fa0fe 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Remove deprecated object transactions. People relying on this functionality should install the object_transactions plugin at http://code.bitsweat.net/svn/object_transactions. Closes #5637 [Koz, Jeremy Kemper]
+
* PostgreSQL: remove DateTime -> Time downcast. Warning: do not enable translate_results for the C bindings if you have timestamps outside Time's domain. [Jeremy Kemper]
* find_or_create_by_* takes a hash so you can create with more attributes than are in the method name. For example, Person.find_or_create_by_name(:name => 'Henry', :comments => 'Hi new user!') is equivalent to Person.find_by_name('Henry') || Person.create(:name => 'Henry', :comments => 'Hi new user!'). #7368 [Josh Susser]