Skip to content

Releases: meks77/easy-validation

v2.0.1

25 Oct 18:57

Choose a tag to compare

  • added additional validations for string.
  • some maintenance tasks(eg. plugin upgrade)

2.0.0

13 Oct 12:56

Choose a tag to compare

Redesign of the API with the following features

  • No 3rd party dependencies
  • Very small artefact size
  • clean and natural api
  • simple method argument validation
  • custom exception throwing
  • reporting of all validation errors

1.0.0

08 Jun 12:21

Choose a tag to compare

first final release with validations for

  • Object in general
  • Boolean
  • LocalDate
  • LocalDateTime
  • ZonedDateTime
  • Strings
  • Numbers
  • Lists

and i18n support

1.0.0-RC2

06 Jun 20:49

Choose a tag to compare

1.0.0-RC2 Pre-release
Pre-release

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

17 May 21:00

Choose a tag to compare

1.0.0 RC1 Pre-release
Pre-release

optimized code
added missing javadoc
fixed all remaining issues reported by idea

1.0.0 Milestone 3

16 May 14:54

Choose a tag to compare

1.0.0 Milestone 3 Pre-release
Pre-release
  • Actived SonarQube and fixed all SonarQube issues
  • added isNotEqualTo
  • increase to 100 % Test Coverage

1.0.0 Milestone 2

12 May 21:58

Choose a tag to compare

1.0.0 Milestone 2 Pre-release
Pre-release

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

08 May 04:13

Choose a tag to compare

1.0.0 Milestone 1 Pre-release
Pre-release

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.