Skip to content

Commit ba4b910

Browse files
committed
upgrade to 1.0.82 and update changelog
1 parent 48a509b commit ba4b910

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,31 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010

1111
### Changed
1212

13+
## 1.0.82 - 2023-05-20
14+
15+
### Added
16+
17+
### Changed
18+
19+
- fixes #775 Adds support for validating idn-hostname and idn-email. Thanks @fdutton
20+
- fixes #769 Add minContains / maxContains correct keywords. Thanks @vwuilbea-in
21+
- fixes #768 Adds support for validating an IRI. Thanks @fdutton
22+
- fixes #766 Supports iri-reference format validation. Thanks @fdutton
23+
- fixes #764 Supports uri-reference format. Thanks @fdutton
24+
- fixes #762 Supports relative-json-pointer validation. Thanks @fdutton
25+
- fixes #760 Enables validation of json-pointer formats. Thanks @fdutton
26+
- fixes #758 Adds support for validating uri-template formats. Thanks @fdutton
27+
- fixes #752 Bug fix for JSON Pointer parsing. Thanks @costas80
28+
- fixes #754 Resolves incomplete validation of unevaluatedProperties. Thanks @fdutton
29+
- fixes #750 Escape double-quote in produced JSON Path expressions. Thanks @costas80
30+
- fixes #749 Enables unit-tests for the unevaluatedItems keyword. Thanks @fdutton
31+
- fixes #686 Better localisation support. Thanks @costas80
32+
- fixes #741 Updates LICENSE and NOTICE to comply with section 4d of the Apache License. Thanks @fdutton
33+
- fixes #738 Enables unit-tests for ECMA 262 regular expressions. Thanks @fdutton
34+
- fixes #735 Enables unit-tests for 'not' keyword. Thanks @fdutton
35+
- fixes #733 Updates tests from JSON Schema Test Suite. Thanks @fdutton
36+
37+
1338
## 1.0.81 - 2023-04-30
1439

1540
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Maven:
8181
<dependency>
8282
<groupId>com.networknt</groupId>
8383
<artifactId>json-schema-validator</artifactId>
84-
<version>1.0.81</version>
84+
<version>1.0.82</version>
8585
<exclusions>
8686
<exclusion>
8787
<groupId>org.apache.commons</groupId>
@@ -95,7 +95,7 @@ Gradle:
9595

9696
```java
9797
dependencies {
98-
compile(group: 'com.networknt', name: 'json-schema-validator', version: '1.0.81');
98+
compile(group: 'com.networknt', name: 'json-schema-validator', version: '1.0.82');
9999
}
100100
```
101101

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
<groupId>com.networknt</groupId>
2525
<artifactId>json-schema-validator</artifactId>
26-
<version>1.0.81</version>
26+
<version>1.0.82</version>
2727
<packaging>bundle</packaging>
2828
<name>JsonSchemaValidator</name>
2929
<description>A json schema validator that supports draft v4, v6, v7, v2019-09 and v2020-12</description>

0 commit comments

Comments
 (0)