Releases: tiendc/go-validator
Releases · tiendc/go-validator
v1.2.0
27 Nov 14:09
Compare
Sorry, something went wrong.
No results found
Added SliceHasElem / SliceHasElemBy for checking slice contains certain values
Added SliceNotHaveElem / SliceNotHaveElemBy for checking slice not contain certain values
Added MapHasKey for checking map contains certain values
Added MapNotHaveKey for checking map not contain certain values
v1.1.0
27 Nov 10:42
Compare
Sorry, something went wrong.
No results found
Added SliceUniqueBy to validate uniqueness with custom key function
Added SliceSortBy to validate sorted status with custom key function
Added SliceSortedDescBy to validate sorted status with custom key function
v1.0.0
21 Nov 06:21
Compare
Sorry, something went wrong.
No results found
Added SliceContentValidator to validate slice elements
Added MapContentValidator to validate map entries
Added support slice-derived types in slice validation functions
Added support map-derived types in map validation functions
v0.7.0
09 Oct 19:49
Compare
Sorry, something went wrong.
No results found
v0.6.1
11 Sep 10:35
Compare
Sorry, something went wrong.
No results found
v0.6.0
16 Aug 18:46
Compare
Sorry, something went wrong.
No results found
Rename Validator.Exec() to Validate() as Exec seems not meaningful.
Add context to functions as first argument.
v0.5.3
13 Aug 16:46
Compare
Sorry, something went wrong.
No results found
Upgrade version of external pkg gofn
v0.5.2
11 Aug 07:33
Compare
Sorry, something went wrong.
No results found
Add OnError() to Validator interface instead of keeping it in individual Validator structs
Fix and add more examples to README
v0.5.1
01 Aug 13:36
Compare
Sorry, something went wrong.
No results found
Added Go docs for functions and types
v0.5.0
22 Jul 09:41
Compare
Sorry, something went wrong.
No results found
Support setting formatter function for specific type of params (#19)
* Support setting formatter function for specific type of params
* Refactor readme
* Add tests