aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorMarcel Molina <marcel@vernix.org>2005-10-06 22:21:10 +0000
committerMarcel Molina <marcel@vernix.org>2005-10-06 22:21:10 +0000
commite8b427cdefd9ec851e2853d4bf21dd8fd676096d (patch)
tree7aae75a60ff2fb3dfa62dbcedd21d4d216684abf /activerecord/CHANGELOG
parentbcb50f3c893e070caa3abf06bee03885f1601190 (diff)
downloadrails-e8b427cdefd9ec851e2853d4bf21dd8fd676096d.tar.gz
rails-e8b427cdefd9ec851e2853d4bf21dd8fd676096d.tar.bz2
rails-e8b427cdefd9ec851e2853d4bf21dd8fd676096d.zip
Raise an exception when invalid options are passed to ActiveRecord::Base.find. Closes #2363.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2481 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 3479cc9d81..ad085641fb 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Raise errors when invalid hash keys are passed to ActiveRecord::Base.find. #2363 [Chad Fowler <chad@chadfowler.com>, Nicholas Seckar]
+
* Added :force option to create_table that'll try to drop the table if it already exists before creating
* Fix transactions so that calling return while inside a transaction will not leave an open transaction on the connection. [Nicholas Seckar]