aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorbogdanvlviv <bogdanvlviv@gmail.com>2019-03-04 10:14:17 +0000
committerbogdanvlviv <bogdanvlviv@gmail.com>2019-03-04 10:14:17 +0000
commitbf6d5b32e9f98e415b364f10734fa24b0f9bee5e (patch)
tree19a1eb28c95df72bf3c3f18deaa83b4e0c474b1d /activerecord
parent970cb21b3a0c3c80cd235ffb2089e27dd33aed92 (diff)
downloadrails-bf6d5b32e9f98e415b364f10734fa24b0f9bee5e.tar.gz
rails-bf6d5b32e9f98e415b364f10734fa24b0f9bee5e.tar.bz2
rails-bf6d5b32e9f98e415b364f10734fa24b0f9bee5e.zip
Move changelog entry about `reselect` method to the section of the next release
Fixes https://github.com/rails/rails/pull/33611#discussion_r261549790 Related to https://3.basecamp.com/3076981/buckets/24956/chats/12416418@1631552581 [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 0cfaf39281..42c0e6a190 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,15 +1,21 @@
+* Add `reselect` method. This is a short-hand for `unscope(:select).select(fields)`.
+
+ Fixes #27340.
+
+ *Willian Gustavo Veiga*
+
* Add negative scopes for all enum values.
Example:
-
+
class Post < ActiveRecord::Base
enum status: %i[ drafted active trashed ]
end
-
+
Post.not_drafted # => where.not(status: :drafted)
Post.not_active # => where.not(status: :active)
Post.not_trashed # => where.not(status: :trashed)
-
+
*DHH*
* Fix different `count` calculation when using `size` with manual `select` with DISTINCT.
@@ -382,12 +388,6 @@
*Federico Martinez*
-* Add `reselect` method. This is a short-hand for `unscope(:select).select(fields)`.
-
- Fixes #27340.
-
- *Willian Gustavo Veiga*
-
* Add basic API for connection switching to support multiple databases.
1) Adds a `connects_to` method for models to connect to multiple databases. Example: