diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-12-30 12:18:45 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-12-30 12:18:45 +0100 |
commit | 2ab3bd16f926aaaf796156d7cf42ede8d1e8cd9b (patch) | |
tree | ca9ed6d3a89a38322833bb99fedcd0335b9de0b1 /activerecord | |
parent | d2aa3324a907d58bc01ab8e5792958499df5dd5c (diff) | |
download | rails-2ab3bd16f926aaaf796156d7cf42ede8d1e8cd9b.tar.gz rails-2ab3bd16f926aaaf796156d7cf42ede8d1e8cd9b.tar.bz2 rails-2ab3bd16f926aaaf796156d7cf42ede8d1e8cd9b.zip |
tidy AR CHANGELOG. [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG.md | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index fd99a6bc59..46daf4978d 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,5 +1,7 @@ * An `ArgumentError` is now raised on a call to `Relation#where.not(nil)`. + Example: + User.where.not(nil) # Before @@ -10,7 +12,8 @@ *Kuldeep Aggarwal* -* Deprecated use of string argument as a configuration lookup in `ActiveRecord::Base.establish_connection`. Instead, a symbol must be given. +* Deprecated use of string argument as a configuration lookup in + `ActiveRecord::Base.establish_connection`. Instead, a symbol must be given. *José Valim* @@ -46,10 +49,10 @@ *Richard Schneeman* -* Do not raise `'can not touch on a new record object'` exception on destroying already destroyed - `belongs_to` association with `touch: true` option +* Do not raise `'can not touch on a new record object'` exception on destroying + already destroyed `belongs_to` association with `touch: true` option. - Fixes: #13445 + Fixes #13445. Example: |