Skip to content

Commit

Permalink
upgrade to 1.0.82 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
stevehu committed May 20, 2023
1 parent 48a509b commit ba4b910
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,31 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Changed

## 1.0.82 - 2023-05-20

### Added

### Changed

- fixes #775 Adds support for validating idn-hostname and idn-email. Thanks @fdutton
- fixes #769 Add minContains / maxContains correct keywords. Thanks @vwuilbea-in
- fixes #768 Adds support for validating an IRI. Thanks @fdutton
- fixes #766 Supports iri-reference format validation. Thanks @fdutton
- fixes #764 Supports uri-reference format. Thanks @fdutton
- fixes #762 Supports relative-json-pointer validation. Thanks @fdutton
- fixes #760 Enables validation of json-pointer formats. Thanks @fdutton
- fixes #758 Adds support for validating uri-template formats. Thanks @fdutton
- fixes #752 Bug fix for JSON Pointer parsing. Thanks @costas80
- fixes #754 Resolves incomplete validation of unevaluatedProperties. Thanks @fdutton
- fixes #750 Escape double-quote in produced JSON Path expressions. Thanks @costas80
- fixes #749 Enables unit-tests for the unevaluatedItems keyword. Thanks @fdutton
- fixes #686 Better localisation support. Thanks @costas80
- fixes #741 Updates LICENSE and NOTICE to comply with section 4d of the Apache License. Thanks @fdutton
- fixes #738 Enables unit-tests for ECMA 262 regular expressions. Thanks @fdutton
- fixes #735 Enables unit-tests for 'not' keyword. Thanks @fdutton
- fixes #733 Updates tests from JSON Schema Test Suite. Thanks @fdutton


## 1.0.81 - 2023-04-30

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Maven:
<dependency>
<groupId>com.networknt</groupId>
<artifactId>json-schema-validator</artifactId>
<version>1.0.81</version>
<version>1.0.82</version>
<exclusions>
<exclusion>
<groupId>org.apache.commons</groupId>
Expand All @@ -95,7 +95,7 @@ Gradle:

```java
dependencies {
compile(group: 'com.networknt', name: 'json-schema-validator', version: '1.0.81');
compile(group: 'com.networknt', name: 'json-schema-validator', version: '1.0.82');
}
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<groupId>com.networknt</groupId>
<artifactId>json-schema-validator</artifactId>
<version>1.0.81</version>
<version>1.0.82</version>
<packaging>bundle</packaging>
<name>JsonSchemaValidator</name>
<description>A json schema validator that supports draft v4, v6, v7, v2019-09 and v2020-12</description>
Expand Down

0 comments on commit ba4b910

Please sign in to comment.