Skip to content

Commit c190ecf

Browse files
committedNov 26, 2021
chore: update graphql-java-extended-extension version
1 parent 87fd65c commit c190ecf

File tree

3 files changed

+28
-12
lines changed

3 files changed

+28
-12
lines changed
 

‎buildSrc/src/main/kotlin/Versions.kt

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ object Versions {
2222
const val SPRING_CLOUD_VERSION = "Hoxton.SR10"
2323
const val GRAPHQL_JAVA = "17.3"
2424
const val GRAPHQL_JAVA_EXTENDED_SCALARS = "17.0"
25-
const val GRAPHQL_JAVA_EXTENDED_VALIDATION = "17.0"
25+
26+
// The version below will work with Jakarta EE 8
27+
// and use Hibernate Validator 6.2.
28+
const val GRAPHQL_JAVA_EXTENDED_VALIDATION = "17.0-hibernate-validator-6.2.0.Final"
2629
const val GRAPHQL_JAVA_FEDERATION = "0.7.0"
2730
const val JACKSON_BOM = "2.12.3"
2831
}

‎graphql-dgs-extended-validation/dependencies.lock

+24-6
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"locked": "17.3"
3939
},
4040
"com.graphql-java:graphql-java-extended-validation": {
41-
"locked": "17.0"
41+
"locked": "17.0-hibernate-validator-6.2.0.Final"
4242
},
4343
"com.jayway.jsonpath:json-path": {
4444
"firstLevelTransitive": [
@@ -320,7 +320,7 @@
320320
"locked": "17.3"
321321
},
322322
"com.graphql-java:graphql-java-extended-validation": {
323-
"locked": "17.0"
323+
"locked": "17.0-hibernate-validator-6.2.0.Final"
324324
},
325325
"com.jayway.jsonpath:json-path": {
326326
"firstLevelTransitive": [
@@ -455,7 +455,7 @@
455455
"locked": "17.3"
456456
},
457457
"com.graphql-java:graphql-java-extended-validation": {
458-
"locked": "17.0"
458+
"locked": "17.0-hibernate-validator-6.2.0.Final"
459459
},
460460
"com.jayway.jsonpath:json-path": {
461461
"firstLevelTransitive": [
@@ -534,7 +534,7 @@
534534
"project": true
535535
},
536536
"io.mockk:mockk": {
537-
"locked": "1.12.0"
537+
"locked": "1.12.1"
538538
},
539539
"io.projectreactor:reactor-core": {
540540
"firstLevelTransitive": [
@@ -592,6 +592,12 @@
592592
],
593593
"locked": "2.12.3"
594594
},
595+
"com.fasterxml.jackson.datatype:jackson-datatype-jdk8": {
596+
"firstLevelTransitive": [
597+
"com.netflix.graphql.dgs:graphql-dgs-client"
598+
],
599+
"locked": "2.12.3"
600+
},
595601
"com.fasterxml.jackson.datatype:jackson-datatype-jsr310": {
596602
"firstLevelTransitive": [
597603
"com.netflix.graphql.dgs:graphql-dgs",
@@ -607,6 +613,12 @@
607613
],
608614
"locked": "2.12.3"
609615
},
616+
"com.fasterxml.jackson.module:jackson-module-parameter-names": {
617+
"firstLevelTransitive": [
618+
"com.netflix.graphql.dgs:graphql-dgs-client"
619+
],
620+
"locked": "2.12.3"
621+
},
610622
"com.fasterxml.jackson:jackson-bom": {
611623
"locked": "2.12.3"
612624
},
@@ -627,7 +639,7 @@
627639
"locked": "17.3"
628640
},
629641
"com.graphql-java:graphql-java-extended-validation": {
630-
"locked": "17.0"
642+
"locked": "17.0-hibernate-validator-6.2.0.Final"
631643
},
632644
"com.jayway.jsonpath:json-path": {
633645
"firstLevelTransitive": [
@@ -706,7 +718,7 @@
706718
"project": true
707719
},
708720
"io.mockk:mockk": {
709-
"locked": "1.12.0"
721+
"locked": "1.12.1"
710722
},
711723
"io.projectreactor:reactor-core": {
712724
"firstLevelTransitive": [
@@ -814,6 +826,12 @@
814826
],
815827
"locked": "5.2.13.RELEASE"
816828
},
829+
"org.springframework:spring-webflux": {
830+
"firstLevelTransitive": [
831+
"com.netflix.graphql.dgs:graphql-dgs-client"
832+
],
833+
"locked": "5.2.13.RELEASE"
834+
},
817835
"org.springframework:spring-webmvc": {
818836
"firstLevelTransitive": [
819837
"com.netflix.graphql.dgs:graphql-dgs-spring-webmvc-autoconfigure"

‎graphql-dgs-platform/build.gradle.kts

-5
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,6 @@ dependencies {
5757
api("com.apollographql.federation:federation-graphql-java-support") {
5858
version { require(Versions.GRAPHQL_JAVA_FEDERATION) }
5959
}
60-
api("com.graphql-java:graphql-java-extended-validation"){
61-
// The version below will work with Jakarta EE 8
62-
// and use Hibernate Validator 6.2.
63-
version { require("17.0-hibernate-validator-6.2.0.Final") }
64-
}
6560
api("com.jayway.jsonpath:json-path") {
6661
version { require("2.6.0") }
6762
}

0 commit comments

Comments
 (0)
Please sign in to comment.