Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,10 @@
"versioning": "fixed"
},
{
"description": "Lock the Schema Validator to v1.x.y to avoid major issues with v2+",
"description": "Keep json-schema-validator on v1.x because JsonSchemaValidationService still uses the pre-v3 networknt API and v2/v3 are not drop-in compatible",
"matchManagers": ["gradle"],
"matchPackageNames": ["json-schema-validator"],
"matchPackagePrefixes": "com.networknt",
"matchUpdateTypes": ["minor", "patch"]
"matchPackageNames": ["com.networknt:json-schema-validator"],
"allowedVersions": "<2.0.0"
},
{
"matchDatasources": ["docker"],
Expand Down
5 changes: 0 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -367,9 +367,6 @@ dependencies {

implementation 'com.launchdarkly:launchdarkly-java-server-sdk:7.13.2'

implementation 'com.networknt:json-schema-validator:2.0.1'
implementation 'com.jayway.jsonpath:json-path:3.0.0'

implementation 'io.rest-assured:rest-assured:6.0.0'
implementation 'org.flywaydb:flyway-core:12.3.0'
runtimeOnly 'org.flywaydb:flyway-database-postgresql:12.3.0', {
Expand All @@ -389,8 +386,6 @@ dependencies {

implementation 'org.mapstruct:mapstruct:1.6.3'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.6.3'


implementation 'com.networknt:json-schema-validator:1.5.9'
implementation 'com.jayway.jsonpath:json-path:3.0.0'
testImplementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
Expand Down
Loading