aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2013-02-20 20:36:38 +0100
committerXavier Noria <fxn@hashref.com>2013-02-20 20:37:00 +0100
commitaeb4592006f99f9db2e1fe95ecbff45d4c1d478d (patch)
tree7667307bf2fe717d0b4fadcbf0d659659d6a307e /activerecord/CHANGELOG.md
parent3ff639a3dd9bbe3ae2d68201368a94bd102ed8cf (diff)
downloadrails-aeb4592006f99f9db2e1fe95ecbff45d4c1d478d.tar.gz
rails-aeb4592006f99f9db2e1fe95ecbff45d4c1d478d.tar.bz2
rails-aeb4592006f99f9db2e1fe95ecbff45d4c1d478d.zip
removes relation bang methods from the AR changelog [ci skip]
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md12
1 files changed, 0 insertions, 12 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index d79b1b62c1..693111a9a7 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -498,11 +498,6 @@
*kennyj*
-* Added `#none!` method for mutating `ActiveRecord::Relation` objects to a NullRelation.
- It acts like `#none` but modifies relation in place.
-
- *Juanjo Bazán*
-
* Fix bug where `update_columns` and `update_column` would not let you update the primary key column.
*Henrik Nyh*
@@ -1280,13 +1275,6 @@
*Joshua Wood*
-* Added bang methods for mutating `ActiveRecord::Relation` objects.
- For example, while `foo.where(:bar)` will return a new object
- leaving `foo` unchanged, `foo.where!(:bar)` will mutate the foo
- object
-
- *Jon Leighton*
-
* Added `#find_by` and `#find_by!` to mirror the functionality
provided by dynamic finders in a way that allows dynamic input more
easily: