aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-05-01 19:27:36 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-05-01 19:27:36 +0530
commit5722915fa7e172a5632b76023539f024e5711049 (patch)
tree60cdccec0ad93e0c282b26e0da103780609d0fe2 /activerecord
parent0c9e7b69d84bfb505022f3665f50e5eebe3fc0b0 (diff)
downloadrails-5722915fa7e172a5632b76023539f024e5711049.tar.gz
rails-5722915fa7e172a5632b76023539f024e5711049.tar.bz2
rails-5722915fa7e172a5632b76023539f024e5711049.zip
changelog fixes. Closes #3911
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md13
1 files changed, 0 insertions, 13 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index aa84dacf07..6f0b5bfce6 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -580,19 +580,6 @@
a URI that specifies the connection configuration. For example:
ActiveRecord::Base.establish_connection 'postgres://localhost/foo'
-* Active Record's dynamic finder will now raise the error if you passing in less number of arguments than what you call in method signature.
-
- So if you were doing this and expecting the second argument to be nil:
-
- User.find_by_username_and_group("sikachu")
-
- You'll now get `ArgumentError: wrong number of arguments (1 for 2).` You'll then have to do this:
-
- User.find_by_username_and_group("sikachu", nil)
-
- *Prem Sichanugrist*
-
-
## Rails 3.1.0 (August 30, 2011) ##
* Add a proxy_association method to association proxies, which can be called by association