Skip to content

Commit

Permalink
upgrade to 1.0.58 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
stevehu committed Aug 23, 2021
1 parent e8c9a2d commit b825939
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@ Maven:
<dependency>
<groupId>com.networknt</groupId>
<artifactId>json-schema-validator</artifactId>
<version>1.0.57</version>
<version>1.0.58</version>
</dependency>
```

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");
}
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.networknt</groupId>
<artifactId>json-schema-validator</artifactId>
<version>1.0.58-SNAPHSOT</version>
<version>1.0.58</version>
<packaging>bundle</packaging>
<description>A json schema validator that supports draft v4, v6, v7 and v2019-09</description>
<url>https://github.com/networknt/json-schema-validator</url>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/networknt/schema/I18nSupport.java
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit b825939

Please sign in to comment.