diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index b2042db2a8083..c17a16ee31c89 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,4 +1,10 @@ -* Add `ActiveRecord::Base#update!` that works like `ActiveRecord::Base#update` but raises exceptions. +* Add `ActiveRecord::Base.update!` that works like `ActiveRecord::Base.update` but raises exceptions. + + This allows for the same behavior as the instance method `#update!` at a class level. + + ```ruby + Person.update!(:all, state: "confirmed") + ``` *Dorian MariƩ*