aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-07-11 23:54:43 +0000
committerMichael Koziarski <michael@koziarski.com>2007-07-11 23:54:43 +0000
commit816522ecd8615bf96e8b932ac358fe9346b286ee (patch)
treece3aeee6243bfb04b9e3ad1743734b33cbf74bdd /activerecord/CHANGELOG
parentd4d4a08f6b064e47145b1abaca803654957f7a03 (diff)
downloadrails-816522ecd8615bf96e8b932ac358fe9346b286ee.tar.gz
rails-816522ecd8615bf96e8b932ac358fe9346b286ee.tar.bz2
rails-816522ecd8615bf96e8b932ac358fe9346b286ee.zip
Make create! on a has_many :through association return the association object. Not the collection. Closes #8786 [lifofifo]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7182 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 9ea6ff93bc..cc0f1c924d 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Make create! on a has_many :through association return the association object. Not the collection. Closes #8786 [lifofifo]
+
* Move from select * to select tablename.* to avoid clobbering IDs. Closes #8889 [dasil003]
* Don't call unsupported methods on associated objects when using :include, :method with to_xml #7307, [manfred, jwilger]