Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move changelog entry about reselect method to the section of the next release [ci skip] #35467

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 9 additions & 9 deletions activerecord/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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:
Expand Down