diff options
author | Xavier Noria <fxn@hashref.com> | 2013-02-20 01:55:53 -0800 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2013-02-20 01:55:53 -0800 |
commit | e5c26ee1ed4a39f5df3793e2b4a59e9a2614a008 (patch) | |
tree | 2a99eab6af1b734ac8e092225c3ec072943e854d /activerecord/CHANGELOG.md | |
parent | c3f1b1d3cdb837a24d66b80deda39cfe23856724 (diff) | |
parent | 0a6b61a5f534c07406f1ec2de11b4a53ce81151d (diff) | |
download | rails-e5c26ee1ed4a39f5df3793e2b4a59e9a2614a008.tar.gz rails-e5c26ee1ed4a39f5df3793e2b4a59e9a2614a008.tar.bz2 rails-e5c26ee1ed4a39f5df3793e2b4a59e9a2614a008.zip |
Merge pull request #8060 from senny/7313_descriptive_error_message_for_missing_adapter
descriptive error message when AR adapter was not found. Closes #7313
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r-- | activerecord/CHANGELOG.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 00b2c431ac..a888b79391 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,5 +1,10 @@ ## Rails 4.0.0 (unreleased) ## +* Descriptive error message when the necessary AR adapter gem was not found. + Fix #7313 + + *Yves Senn* + * ActiveRecord now raises an error when blank arguments are passed to query methods for which blank arguments do not make sense. This also occurs for nil-like objects in arguments. @@ -8,7 +13,7 @@ Post.limit() # => raises error Post.include([]) # => raises error - + *John Wang* * Simplified type casting code for timezone aware attributes to use the |