Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit 90d5cb7

Browse files
authored
Merge pull request #461 from setchy/feature/457-graphql-java-15-support
Updating graphql-spring-boot to use graphql-java:15.
2 parents cc56db9 + c8d4d1e commit 90d5cb7

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ TARGET_COMPATIBILITY = 1.8
3939

4040
### Dependencies
4141

42-
LIB_GRAPHQL_JAVA_VER = 14.1
42+
LIB_GRAPHQL_JAVA_VER = 15.0
4343
LIB_SPRING_BOOT_VER = 2.3.4.RELEASE
44-
LIB_GRAPHQL_SERVLET_VER = 9.2.0
45-
LIB_GRAPHQL_JAVA_TOOLS_VER = 6.1.0
46-
LIB_GRAPHQL_ANNOTATIONS_VER = 8.1
44+
LIB_GRAPHQL_SERVLET_VER = 10.0.0
45+
LIB_GRAPHQL_JAVA_TOOLS_VER = 6.2.0
46+
LIB_GRAPHQL_ANNOTATIONS_VER = 8.2
4747
LIB_REFLECTIONS_VER = 0.9.11
4848
LIB_APACHE_COMMONS_TEXT=1.8
4949
LIB_JSOUP_VER=1.13.1

graphql-spring-boot-test/src/test/resources/test-schema.graphqls

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
scalar Long
2-
31
type Subscription {
4-
timer: Long!
2+
timer: Float!
53
subscriptionWithParameter(param: String!): String!
64
subscriptionWithInitPayload: String!
7-
subscriptionThatTimesOut: Long!
5+
subscriptionThatTimesOut: Float!
86
subscriptionThatThrowsException: Boolean!
97
}
108

0 commit comments

Comments
 (0)