From 9e26412b71a1e546cd9d27c180689a7c6181a403 Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Thu, 11 Aug 2022 06:13:00 +0000
Subject: [PATCH 1/4] Update dependency com.graphql-java:graphql-java to v19
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index b8aef214..714717fb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -17,7 +17,7 @@
1.6.21
1.6.2
2.13.3
- 18.2
+ 19.1
1.0.4
${java.version}
From 4657c9d271eb1c367e3bf2227dc0739c1309d122 Mon Sep 17 00:00:00 2001
From: oliemansm
Date: Fri, 12 Aug 2022 13:00:50 +0200
Subject: [PATCH 2/4] chore(deps): add antlr4-runtime dependency
---
pom.xml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/pom.xml b/pom.xml
index 714717fb..0b194622 100644
--- a/pom.xml
+++ b/pom.xml
@@ -155,6 +155,11 @@
com.graphql-java
graphql-java
+
+ org.antlr
+ antlr4-runtime
+ 4.10.1
+
com.fasterxml
classmate
From 9a226cccb97bcf5212823c87e7999d3ff4fb170a Mon Sep 17 00:00:00 2001
From: oliemansm
Date: Fri, 12 Aug 2022 13:02:17 +0200
Subject: [PATCH 3/4] fix(#680): override new directive method
---
.../tools/directive/SchemaDirectiveWiringEnvironmentImpl.kt | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/main/kotlin/graphql/kickstart/tools/directive/SchemaDirectiveWiringEnvironmentImpl.kt b/src/main/kotlin/graphql/kickstart/tools/directive/SchemaDirectiveWiringEnvironmentImpl.kt
index 2658d4c0..2d9c4675 100644
--- a/src/main/kotlin/graphql/kickstart/tools/directive/SchemaDirectiveWiringEnvironmentImpl.kt
+++ b/src/main/kotlin/graphql/kickstart/tools/directive/SchemaDirectiveWiringEnvironmentImpl.kt
@@ -39,6 +39,7 @@ class SchemaDirectiveWiringEnvironmentImpl(
override fun getElement(): T = element
override fun getDirective(): GraphQLDirective? = registeredDirective
+ override fun getAppliedDirective(): GraphQLAppliedDirective? = appliedDirectives[registeredDirective?.name]
override fun getDirectives(): Map = LinkedHashMap(directives)
override fun getDirective(directiveName: String): GraphQLDirective = directives[directiveName]!!
override fun getAppliedDirectives(): Map = appliedDirectives
From ef62185e4346604dd10f67376d1f08e8f79b5514 Mon Sep 17 00:00:00 2001
From: oliemansm
Date: Fri, 12 Aug 2022 13:22:12 +0200
Subject: [PATCH 4/4] chore: bump version to v14.0.0 because of graphql-java
upgrade
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 0b194622..8f71bccd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.graphql-java-kickstart
graphql-java-tools
- 12.1.1-SNAPSHOT
+ 14.0.0-SNAPSHOT
jar
GraphQL Java Tools