aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-02-13 09:16:22 +0100
committerYves Senn <yves.senn@gmail.com>2015-02-13 09:16:22 +0100
commit57a1d2bf9d71600ec872de125854e550b376caa5 (patch)
treef9e136da95e84a1b5a6b122d61a8e1aafc028cb0 /activerecord
parentd0326bbae53b4ef6686e02d4e675e8fb74afeb53 (diff)
downloadrails-57a1d2bf9d71600ec872de125854e550b376caa5.tar.gz
rails-57a1d2bf9d71600ec872de125854e550b376caa5.tar.bz2
rails-57a1d2bf9d71600ec872de125854e550b376caa5.zip
remove CHANGELOG entry for Rails 5.0 only feature. #18918
`has_secure_token` hasen't been released yet. No need to track every change in the CHANGELOG.
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md7
1 files changed, 0 insertions, 7 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 68184897e0..e1cace7d88 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,10 +1,3 @@
-* `has_secure_token` does not overwrite value when already present.
-
- user = User.create(token: "custom-secure-token")
- user.token # => "custom-secure-token"
-
- *Wojciech Wnętrzak*
-
* Use SQL COUNT and LIMIT 1 queries for `none?` and `one?` methods if no block or limit is given,
instead of loading the entire collection to memory.
This applies to relations (e.g. `User.all`) as well as associations (e.g. `account.users`)