Releases: wellingtoncosta/convalida
Releases · wellingtoncosta/convalida
3.2.0
- Implemented validation for Ipv4 (
0cb53888
) - Implemented validation for Ipv6 (
4db65b08
) - Implemented validation for Url (
d63616e6
) - Implemented validation for past date limit (
4194e430d
) - Implemented validation for future date limit (
e882b2bd
) - Redesign of Convalida Kotlin DSL (
6b2a3e6c
) - Code design improvements on
ConvalidaCompiler
(d0502c60
) - Prevent unnecessary code generation (
a07ece77
) - Improvement on core logic of validators classes (
97ca5c5d
) - Improvement on instrumented tests (
94d48b70
) - Packages organization (
a43f30bc
)
3.1.0
3.0.0
- Added support to apply validations using a Kotlin Dsl ( #38 )
- Added way to get invalid fields in
OnValidationError
method ( #39 ) - Added parameter to receive
errorMessage
as pure String value to all validations ( #43 ) - Artifacts are now deployed in Maven Central (#40 )
- Removed
Validation
suffix from all annotations and bindings ( #42 ) - Migrated project to support AndroidX ( #37 )
3.0.0-beta01
- Move artifacts from Jitpack to Maven Central
- Get invalid fields in OnValidationError method (
58eed4d1
) - Add parameter to receive error message as pure string value in all validations (
40c5eb21
) - Remove "Validation" suffix from all annotations and bindings (
122cd770
) - Support AndroidX packages (
07c0d430
)
2.2.0
- Validation for credit card fields
- Validation for numeric limit (min / max) fields
- Added
required
property inEmailValidator
,LengthValidator
,OnlyNumberValidator
,PatternValidator
,CpfValidator
,CreditCardValidator
andNumberLimitValidator
that, when its value istrue
, the field validation will be ignored if the field value is empty
2.1.0
- Support validation between fields
- Improvement in unit tests
2.0.3
- Ignored special characters in cpf validation
2.0.2
- Support for CPF (Brazilian personal registration number) validation
2.0.1
- Updated dependencies
- Fixed bug where compiler was not processing
@ValidateOnClick
,ClearValidationsOnClick
,OnValidationSuccess
andOnValidationError
annotations - Fixed JaCoCo build error with Android 27
2.0.0
@NotEmptyValidation
renamed to@RequiredValidation
- Code refactoring
- Data binding support