Skip to content

Commit 20ec058

Browse files
committed
upgrade to 1.0.84 and update changelog
1 parent c5d21a4 commit 20ec058

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

CHANGELOG.md

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

1111
### Changed
1212

13+
## 1.0.84 - 2023-06-09
14+
15+
### Added
16+
17+
- fixes #813 Adds support for walking if-then-else. Thanks @fdutton
18+
- fixes #811 Adds support for walking dependentSchemas. Thanks @fdutton
19+
20+
### Changed
21+
22+
- fixes #816 Ignores fail-fast when evaluating a member of an applicator. Thanks @fdutton
23+
- fixes #815 Corrects Java's failure to match an end anchor when immediately preceded by a quantifier. Thanks @fdutton
24+
- fixes #812 Ensures context is reset after validating regardless of which method is used by the client. Thanks @fdutton
25+
- fixes #809 Ignores siblings of $ref when dialect is Draft 4, 6 or 7. Thanks @fdutton
26+
- fixes #807 Updates Jacoco configuration to ignore the embedded Apache code. Thanks @fdutton
27+
- fixes #790 Simplifies how evaluated properties and array items are tracked. Thanks @fdutton
28+
- fixes #806 Enables unit-tests for refRemote validation. Thanks @fdutton
29+
- fixes #805 Corrects issue with deserializing JSON Schema Test Suite tests. Thanks @fdutton
30+
- fixes #801 Support config param to disable custom messages from schema. Thanks @anjnerajat
31+
- fixes #795 Supports fail-fast when a pattern does not match. Thanks @fdutton
32+
- fixes #793 Updating jackson version to 2.15.2
33+
1334
## 1.0.83 - 2023-05-26
1435

1536
### 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.83</version>
84+
<version>1.0.84</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.83');
98+
compile(group: 'com.networknt', name: 'json-schema-validator', version: '1.0.84');
9999
}
100100
```
101101

pom.xml

Lines changed: 2 additions & 2 deletions
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.83</version>
26+
<version>1.0.84</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>
@@ -79,7 +79,7 @@
7979
<version.logback>1.2.11</version.logback>
8080
<version.slf4j>2.0.7</version.slf4j>
8181
<version.surefire>3.0.0</version.surefire>
82-
<version.undertow>2.2.24.Final</version.undertow>
82+
<version.undertow>2.3.6.Final</version.undertow>
8383
</properties>
8484

8585
<dependencies>

0 commit comments

Comments
 (0)