aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/CHANGELOG.md
diff options
context:
space:
mode:
authorT.J. Schuck <tj@getharvest.com>2013-09-23 14:46:41 -0400
committerT.J. Schuck <tj@getharvest.com>2013-10-10 11:46:59 -0400
commit5d7b413d84e5858dba50e716c31981b42c40aba6 (patch)
tree15b3adf8d41331c8366ef7666127d0b5ffc7f8ab /activemodel/CHANGELOG.md
parent9dbd208562ccd3d68009a72d37cbfe29b94f98c4 (diff)
downloadrails-5d7b413d84e5858dba50e716c31981b42c40aba6.tar.gz
rails-5d7b413d84e5858dba50e716c31981b42c40aba6.tar.bz2
rails-5d7b413d84e5858dba50e716c31981b42c40aba6.zip
Use bcrypt's public cost attr, not internal constant
See: - https://github.com/codahale/bcrypt-ruby/pull/63 - https://github.com/codahale/bcrypt-ruby/pull/64 - https://github.com/codahale/bcrypt-ruby/pull/65
Diffstat (limited to 'activemodel/CHANGELOG.md')
-rw-r--r--activemodel/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md
index eb21b69163..e8602ecbcf 100644
--- a/activemodel/CHANGELOG.md
+++ b/activemodel/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Fix `has_secure_password` to honor bcrypt-ruby's cost attribute.
+
+ *T.J. Schuck*
+
* Updated the `ActiveModel::Dirty#changed_attributes` method to be indifferent between using
symbols and strings as keys.