Skip to content

Commit e9dea3b

Browse files
committed
upgrade to 1.0.83 and update changelog
1 parent 3810f30 commit e9dea3b

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

CHANGELOG.md

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

1111
### Changed
1212

13-
## 1.0.82 - 2023-05-20
13+
## 1.0.83 - 2023-05-26
1414

1515
### Added
16+
- fixes #779 Adds support for cross-draft validation. Thanks @fdutton
17+
- fixes #777 Adds support for handling integer overflow. Thanks @fdutton
1618

1719
### Changed
1820

21+
- fixes #788 update JsonSchema to fix the javadoc issues
22+
- fixes #787 Allows to override date-time and duration validators. Thanks @josejulio
23+
- fixes #786 Allow walking of schema for items keyword when non-array node is provided. Thanks @anjnerajat
24+
- fixes #783 Resolves improper anchoring of patternProperties. Thanks @fdutton
25+
26+
27+
## 1.0.82 - 2023-05-20
28+
29+
### Added
1930
- fixes #775 Adds support for validating idn-hostname and idn-email. Thanks @fdutton
2031
- fixes #769 Add minContains / maxContains correct keywords. Thanks @vwuilbea-in
2132
- fixes #768 Adds support for validating an IRI. Thanks @fdutton
2233
- fixes #766 Supports iri-reference format validation. Thanks @fdutton
2334
- fixes #764 Supports uri-reference format. Thanks @fdutton
2435
- fixes #762 Supports relative-json-pointer validation. Thanks @fdutton
25-
- fixes #760 Enables validation of json-pointer formats. Thanks @fdutton
2636
- fixes #758 Adds support for validating uri-template formats. Thanks @fdutton
37+
38+
### Changed
39+
40+
- fixes #760 Enables validation of json-pointer formats. Thanks @fdutton
2741
- fixes #752 Bug fix for JSON Pointer parsing. Thanks @costas80
2842
- fixes #754 Resolves incomplete validation of unevaluatedProperties. Thanks @fdutton
2943
- fixes #750 Escape double-quote in produced JSON Path expressions. Thanks @costas80

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.82</version>
84+
<version>1.0.83</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.82');
98+
compile(group: 'com.networknt', name: 'json-schema-validator', version: '1.0.83');
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.82</version>
26+
<version>1.0.83</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)