aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/CHANGELOG.md
diff options
context:
space:
mode:
authorVladimir Kiselev <nettsundere@gmail.com>2013-06-26 04:46:21 +0400
committerVladimir Kiselev <nettsundere@gmail.com>2013-07-24 03:14:15 +0400
commit3be0cdfa55cadf35f7625e055fad9999d064c827 (patch)
treea461dfbad843c0dd8e600b4015b8a55f349bd683 /activemodel/CHANGELOG.md
parentf38b5444428f418c4e6377bbb40d7518ea0c61a7 (diff)
downloadrails-3be0cdfa55cadf35f7625e055fad9999d064c827.tar.gz
rails-3be0cdfa55cadf35f7625e055fad9999d064c827.tar.bz2
rails-3be0cdfa55cadf35f7625e055fad9999d064c827.zip
Fix secure_password password_confirmation validations
Diffstat (limited to 'activemodel/CHANGELOG.md')
-rw-r--r--activemodel/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md
index 0568e5d545..3d3c61ed1c 100644
--- a/activemodel/CHANGELOG.md
+++ b/activemodel/CHANGELOG.md
@@ -1,3 +1,8 @@
+* Fix has_secure_password. `password_confirmation` validations are triggered
+ even if no `password_confirmation` is set.
+
+ *Vladimir Kiselev*
+
* `inclusion` / `exclusion` validations with ranges will only use the faster
`Range#cover` for numerical ranges, and the more accurate `Range#include?`
for non-numerical ones.