All notable changes to this project will be documented in this file. This change log follows the conventions of keepachangelog.com.
- Optionality by nullability when inferring schemas
- Schemas can now be inferred on multiple input documents, thus supporting implicit optionality (while still supporting the explicit optionality from version 0.2.2).
- deprecated
infer-strict->json
- API to infer schema has been changed! Check README and
infer_test.clj
- Added
optional
parameter, for keys that should NOT be required by schema
- This doesn't support paths/nesting, only simple keys. Hence a key marked as optional will be optional everywhere in the schema
- Optional parameter to include original validation exception: :include-original-exception
- infer JSON Schema based on EDN data
- Original exception included when validation fails
- Updated depencies (clojure, cheshire)
- EDN based array (vector) in root failed validation (issue #3)
- API to prepare JSON Schema for reuse
(better performance when using same Schema to validate multiple JSON documents)
- Updated Java library
- Changed to Apache License, Version 2.0
- BREAKING: valid entries return the entries instead of
nil
, also to ease pipelining - Error messages now show error count
- BREAKING: re-ordered params for
validate
fn, to ease pipelining