Releases: meks77/easy-validation
Releases · meks77/easy-validation
v2.0.1
2.0.0
1.0.0
first final release with validations for
- Object in general
- Boolean
- LocalDate
- LocalDateTime
- ZonedDateTime
- Strings
- Numbers
- Lists
and i18n support
1.0.0-RC2
New features:
- isNull-Validation
- a bunch of new date validations
- english and german translations for validation error messages
- possibility to "override"(provide your own) validation error messages
1.0.0 RC1
optimized code
added missing javadoc
fixed all remaining issues reported by idea
1.0.0 Milestone 3
- Actived SonarQube and fixed all SonarQube issues
- added isNotEqualTo
- increase to 100 % Test Coverage
1.0.0 Milestone 2
Changes
- Possibility to convert the validated value when setting up the valiations. E.g. isNumeric().and(Long::parseLong, isLessThan(5))
- increased Test Code Coverage to 100 %
- added the possibility to provide suppliers for the validations arguements, depending what is better for your performance
- moved at.meks.validation.validations.object to at.meks.validation.validations.common
1.0.0 Milestone 1
This is the first draft. It should be used to give feedback and do the final modifications for the first production release.
Currently there are some validations for Strings, Collections, Numbers and Dates.