diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e26fe15a..dbf82604e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed +## 1.0.58 - 2021-08-23 + +### Added +- +- fixes #439 add i18n support for ValidationMessage. Thanks @leaves615 +- fixes #438 Adding custom message support in the schema. Thanks @adilath18 + +### Changed + +- fixes #436 Relaxation of the discriminator validation. Thanks FWiesner +- fixes #435 Added exampleSetFlag to nonValidationKeyword. Thanks @ShubhamRwt +- fixes #428 A schema with nullable oneOf does not work as expect. Thanks @rongyj +- fixes #429 Update collector-context.md. Thanks @Petapath +- fixes #425 Cannot distinguish the "TextNode" and the "ArrayNode" with single value for oneOf. Thanks @rongyj + ## 1.0.57 - 2021-07-09 ### Added diff --git a/README.md b/README.md index 5a43216dd..de1234f5d 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ Maven: com.networknt json-schema-validator - 1.0.57 + 1.0.58 ``` @@ -90,7 +90,7 @@ Gradle: ``` dependencies { - compile(group: "com.networknt", name: "json-schema-validator", version: "1.0.57"); + compile(group: "com.networknt", name: "json-schema-validator", version: "1.0.58"); } ``` diff --git a/pom.xml b/pom.xml index 219b0a9e3..3f2bedf32 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 com.networknt json-schema-validator - 1.0.58-SNAPHSOT + 1.0.58 bundle A json schema validator that supports draft v4, v6, v7 and v2019-09 https://github.com/networknt/json-schema-validator diff --git a/src/main/java/com/networknt/schema/I18nSupport.java b/src/main/java/com/networknt/schema/I18nSupport.java index 0f22352b5..a6cb16217 100644 --- a/src/main/java/com/networknt/schema/I18nSupport.java +++ b/src/main/java/com/networknt/schema/I18nSupport.java @@ -5,7 +5,7 @@ /** * Created by leaves chen leaves615@gmail.com on 2021/8/23. * - * @Author leaves chen leaves615@gmail.com + * @author leaves chen leaves615@gmail.com */ public class I18nSupport { private static final String BASE_NAME = "jsv-messages";