Skip to content

Commit

Permalink
upgrade to 1.0.80 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
stevehu committed Apr 18, 2023
1 parent 7afdd3b commit 6cea2ca
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,35 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Changed

## 1.0.80 - 2023-04-18

### Added

### Changed

- fixes #709 Throw the exception as it is in I18nSupport. Thanks @rishabh413
- update javadoc comments
- fixe #716 Adds support for unevaluatedProperties that uses a non-boolean schema. Thanks @fdutton
- fixes #714 Adds explicit support for tracking evaluated properties. Thanks @fdutton
- fixes #712 Corrects malformed tests. Thanks @fdutton
- fixes #710 Add support for the Draft 2020-12 interpretation of prefixItems. Thanks @fdutton
- fixes #708 remove System.exit from I18nSupport.
- fixes #707 Corrects treating 1.0 as an integer. Thanks @fdutton
- fixes #706 Adds support for validating regular expressions. Thanks @fdutton
- fixes #705 Adds support for email addresses containing an IPv6 literal value. Thanks @fdutton
- fixes #704 Adds support for validating leap seconds. Thanks @fdutton
- fixes #703 Corrects validation of duration and provides the option to validate against the ISO 8601 duration format. Thanks @fdutton
- fixes #720 Adds support for minContains and maxContains. Thanks @fdutton
- Updates tests from JSON Schema Test Suite. Thanks @fdutton
- fixes #698 avoid warning for additionalItems keyword
- fixes #697 Moves JSON Schema Test Suite to a separate test-resources folder. Thanks @fdutton
- fixes #696 add then and else to as NonValidationKeyword for v7
- fixes #690 Uses JUnit dynamic tests to generate tests from specification files. Thanks @fdutton
- upgrade slf4j to 2.0.7
- upgrade logback to 1.4.6.
- fixes #687 Return valid JSONPath (or JSONPointer) expressions for each ValidationMessage. Thanks @costas80
- fixes #688 CI Bump used latest non-LTS Java: 19 -> 20. Thanks @valfirst

## 1.0.79 - 2023-03-27

### 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.79</version>
<version>1.0.80</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.79');
compile(group: 'com.networknt', name: 'json-schema-validator', version: '1.0.80');
}
```

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.79</version>
<version>1.0.80</version>
<packaging>bundle</packaging>
<description>A json schema validator that supports draft v4, v6, v7, v2019-09 and v2020-12</description>
<url>https://github.com/networknt/json-schema-validator</url>
Expand Down

0 comments on commit 6cea2ca

Please sign in to comment.