1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activemodel/CHANGELOG.md

62 lines
1.8 KiB
Markdown
Raw Normal View History

2014-08-06 10:41:36 -04:00
* Passwords with spaces only allowed in `ActiveModel::SecurePassword`.
2014-08-07 08:17:12 -04:00
Presence validation can be used to restore old behavior.
2014-08-06 10:41:36 -04:00
*Yevhene Shemet*
* Validate options passed to `ActiveModel::Validations.validate`.
Preventing, in many cases, the simple mistake of using `validate` instead of `validates`.
*Sonny Michaud*
* Deprecate `reset_#{attribute}` in favor of `restore_#{attribute}`.
These methods may cause confusion with the `reset_changes`, which has
different behaviour.
*Rafael Mendonça França*
* Deprecate `ActiveModel::Dirty#reset_changes` in favor of `#clear_changes_information`.
Method's name is causing confusion with the `reset_#{attribute}` methods.
While `reset_name` sets the value of the name attribute to previous value
`reset_changes` only discards the changes.
*Rafael Mendonça França*
* Added `restore_attributes` method to `ActiveModel::Dirty` API which restores
the value of changed attributes to previous value.
*Igor G.*
* Allow proc and symbol as values for `only_integer` of `NumericalityValidator`
*Robin Mehner*
2014-06-14 03:32:31 -04:00
* `has_secure_password` now verifies that the given password is less than 72
characters if validations are enabled.
Fixes #14591.
*Akshay Vishnoi*
2014-06-11 05:31:28 -04:00
* Remove deprecated `Validator#setup` without replacement.
See #10716.
*Kuldeep Aggarwal*
* Add plural and singular form for length validator's default messages.
*Abd ar-Rahman Hamid*
* Introduce `validate` as an alias for `valid?`.
This is more intuitive when you want to run validations but don't care about
the return value.
*Henrik Nyh*
Please check [4-1-stable](https://github.com/rails/rails/blob/4-1-stable/activemodel/CHANGELOG.md) for previous changes.