mirror of
https://github.com/ditkrg/validates_timeliness.git
synced 2026-01-22 22:06:45 +00:00
61 lines
2.4 KiB
Plaintext
61 lines
2.4 KiB
Plaintext
= 1.1.4 [2009-01-13]
|
|
- Make months names respect i18n in Formats
|
|
|
|
= 1.1.3 [2009-01-13]
|
|
- Fixed bug where time and date attributes still being parsed on read using Rails default parser [reported by Brad (pvjq)]
|
|
|
|
= 1.1.2 [2009-01-12]
|
|
- Fixed bugs
|
|
- matcher failing for custom error message without interpolation keys using I18n
|
|
- validator custom error messages not being extracted
|
|
|
|
= 1.1.1 [2009-01-03]
|
|
- Fixed bug in matcher for options local variable
|
|
|
|
= 1.1.0 [2009-01-01]
|
|
- Added between option
|
|
|
|
= 1.0.0 [2008-12-06]
|
|
- Gemified!
|
|
- Refactor of plugin into a Data Mapper style validator class which makes for a cleaner implementation and possible future Merb\Data Mapper support
|
|
- Added Rails 2.2 i18n support. Plugin error messages can specified in locale files. See README.
|
|
- ignore_datetime_restriction_errors setting has been moved from AR to ValidatesTimeliness::Validator.ignore_restriction_errors
|
|
- date_time_error_value_formats setting has been moved from AR to ValidatesTimeliness::Validator.error_value_formats
|
|
- Namespaced modules and specs
|
|
- Clean up of specs
|
|
- fixed a few bugs
|
|
- accessor methods not generating properly due method name stored as symbol in generated_attributes which fails on lookup
|
|
- force value assigned to time/datetime attributes to time objects
|
|
|
|
= 0.1.0 [2008-12-06]
|
|
- Tagged plugin as version 0.1.0
|
|
|
|
= 2008-11-13
|
|
- allow uppercase meridian to be valid [reported by Alex (http://alex.digns.com/)]
|
|
|
|
= 2008-10-28
|
|
- fixed bug when dirty attributes not reflecting change when attribute changed from time value to nil [reported by Brad (pvjq)]
|
|
- fixes for Rails 2.2 compatibility. Will refactor in to Rails version specific branches in the future.
|
|
|
|
= 2008-09-24
|
|
- refactored attribute write method definitions
|
|
|
|
= 2008-08-25
|
|
- fixed bug for non-timezone write method not updating changed attributes hash [reported by Sylvestre Mergulhão]
|
|
|
|
= 2008-08-22
|
|
- fixed bug with attribute cache not clearing on write for date and time columns [reported by Sylvestre Mergulhão]
|
|
- parse method returns Date object for date column assigned string as per normal Rails behaviour
|
|
- parse method returns same object type when assigned Date or Time object as per normal Rails behaviour
|
|
|
|
= 2008-08-07
|
|
- modified matcher option value parsing to allow same value types as validation method
|
|
- fixed matcher message
|
|
|
|
= 2008-08-02
|
|
- refactored validation
|
|
- refactored matcher
|
|
|
|
= 2008-07-30
|
|
- removed setting values to nil when validation fails to preserve before_type_cast value
|