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

Commit 00cc6f0

Browse files
authored
Merge branch 'master' into schema-parser-options
2 parents b5fd868 + 1f22207 commit 00cc6f0

File tree

28 files changed

+376
-74
lines changed

28 files changed

+376
-74
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -80,19 +80,19 @@ repositories {
8080
}
8181
8282
dependencies {
83-
compile 'com.graphql-java-kickstart:graphql-spring-boot-starter:6.0.0'
83+
compile 'com.graphql-java-kickstart:graphql-spring-boot-starter:6.0.1'
8484
8585
// to embed Altair tool
86-
runtime 'com.graphql-java-kickstart:altair-spring-boot-starter:6.0.0'
86+
runtime 'com.graphql-java-kickstart:altair-spring-boot-starter:6.0.1'
8787
8888
// to embed GraphiQL tool
89-
runtime 'com.graphql-java-kickstart:graphiql-spring-boot-starter:6.0.0'
89+
runtime 'com.graphql-java-kickstart:graphiql-spring-boot-starter:6.0.1'
9090
9191
// to embed Voyager tool
92-
runtime 'com.graphql-java-kickstart:voyager-spring-boot-starter:6.0.0'
92+
runtime 'com.graphql-java-kickstart:voyager-spring-boot-starter:6.0.1'
9393
9494
// testing facilities
95-
testCompile 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:6.0.0'
95+
testCompile 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:6.0.1'
9696
}
9797
```
9898

@@ -101,38 +101,38 @@ Maven:
101101
<dependency>
102102
<groupId>com.graphql-java-kickstart</groupId>
103103
<artifactId>graphql-spring-boot-starter</artifactId>
104-
<version>6.0.0</version>
104+
<version>6.0.1</version>
105105
</dependency>
106106

107107
<!-- to embed Altair tool -->
108108
<dependency>
109109
<groupId>com.graphql-java-kickstart</groupId>
110110
<artifactId>altair-spring-boot-starter</artifactId>
111-
<version>6.0.0</version>
111+
<version>6.0.1</version>
112112
<scope>runtime</scope>
113113
</dependency>
114114

115115
<!-- to embed GraphiQL tool -->
116116
<dependency>
117117
<groupId>com.graphql-java-kickstart</groupId>
118118
<artifactId>graphiql-spring-boot-starter</artifactId>
119-
<version>6.0.0</version>
119+
<version>6.0.1</version>
120120
<scope>runtime</scope>
121121
</dependency>
122122

123123
<!-- to embed Voyager tool -->
124124
<dependency>
125125
<groupId>com.graphql-java-kickstart</groupId>
126126
<artifactId>voyager-spring-boot-starter</artifactId>
127-
<version>6.0.0</version>
127+
<version>6.0.1</version>
128128
<scope>runtime</scope>
129129
</dependency>
130130

131131
<!-- testing facilities -->
132132
<dependency>
133133
<groupId>com.graphql-java-kickstart</groupId>
134134
<artifactId>graphql-spring-boot-starter-test</artifactId>
135-
<version>6.0.0</version>
135+
<version>6.0.1</version>
136136
<scope>test</scope>
137137
</dependency>
138138

example-graphql-subscription/src/main/java/com/oembedler/moon/graphql/boot/resolvers/Query.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.oembedler.moon.graphql.boot.resolvers;
22

3-
import com.coxautodev.graphql.tools.GraphQLQueryResolver;
3+
import graphql.kickstart.tools.GraphQLQueryResolver;
44
import org.springframework.stereotype.Component;
55

66
@Component

example-graphql-subscription/src/main/java/com/oembedler/moon/graphql/boot/resolvers/Subscription.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.oembedler.moon.graphql.boot.resolvers;
22

3-
import com.coxautodev.graphql.tools.GraphQLSubscriptionResolver;
3+
import graphql.kickstart.tools.GraphQLSubscriptionResolver;
44
import com.oembedler.moon.graphql.boot.publishers.StockTickerPublisher;
55
import org.reactivestreams.Publisher;
66
import org.springframework.stereotype.Component;

example-graphql-tools/src/main/java/com/graphql/sample/boot/Mutation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.graphql.sample.boot;
22

3-
import com.coxautodev.graphql.tools.GraphQLMutationResolver;
3+
import graphql.kickstart.tools.GraphQLMutationResolver;
44
import java.util.Random;
55
import org.springframework.stereotype.Component;
66

example-graphql-tools/src/main/java/com/graphql/sample/boot/PostResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.graphql.sample.boot;
22

3-
import com.coxautodev.graphql.tools.GraphQLResolver;
3+
import graphql.kickstart.tools.GraphQLResolver;
44
import org.springframework.stereotype.Component;
55

66
import java.util.Collections;

example-graphql-tools/src/main/java/com/graphql/sample/boot/Query.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.graphql.sample.boot;
22

3-
import com.coxautodev.graphql.tools.GraphQLQueryResolver;
3+
import graphql.kickstart.tools.GraphQLQueryResolver;
44
import org.springframework.stereotype.Component;
55

66
@Component

example-request-scoped-dataloader/src/main/java/graphql/servlet/examples/dataloader/requestscope/CustomerResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package graphql.servlet.examples.dataloader.requestscope;
22

3-
import com.coxautodev.graphql.tools.GraphQLResolver;
3+
import graphql.kickstart.tools.GraphQLResolver;
44
import graphql.kickstart.execution.context.GraphQLContext;
55
import graphql.schema.DataFetchingEnvironment;
66
import java.util.concurrent.CompletableFuture;

example-request-scoped-dataloader/src/main/java/graphql/servlet/examples/dataloader/requestscope/WalmartQueryResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package graphql.servlet.examples.dataloader.requestscope;
22

3-
import com.coxautodev.graphql.tools.GraphQLQueryResolver;
3+
import graphql.kickstart.tools.GraphQLQueryResolver;
44
import org.springframework.stereotype.Component;
55

66
import java.util.Arrays;

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ TARGET_COMPATIBILITY = 1.8
3737

3838
###
3939

40-
LIB_GRAPHQL_JAVA_VER = 13.0
40+
LIB_GRAPHQL_JAVA_VER = 14.0
4141
LIB_JUNIT_VER = 4.12
42-
LIB_SPRING_CORE_VER = 5.2.1.RELEASE
43-
LIB_SPRING_BOOT_VER = 2.2.1.RELEASE
42+
LIB_SPRING_CORE_VER = 5.2.3.RELEASE
43+
LIB_SPRING_BOOT_VER = 2.2.4.RELEASE
4444
LIB_GRAPHQL_SERVLET_VER = 9.0.1
45-
LIB_GRAPHQL_JAVA_TOOLS_VER = 5.7.1
45+
LIB_GRAPHQL_JAVA_TOOLS_VER = 6.0.0
4646
LIB_COMMONS_IO_VER = 2.6
47-
kotlin.version=1.3.31
47+
kotlin.version=1.3.35
4848

4949
GRADLE_WRAPPER_VER = 4.10.3
5050

graphiql-spring-boot-autoconfigure/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,12 @@ dependencies{
2323
compile "org.apache.commons:commons-text:1.1"
2424
compileOnly "org.springframework.boot:spring-boot-starter-web:$LIB_SPRING_BOOT_VER"
2525
compileOnly "org.springframework.boot:spring-boot-starter-security:$LIB_SPRING_BOOT_VER"
26+
compileOnly "io.projectreactor:reactor-core:3.3.0.RELEASE"
2627

2728
testCompile "org.springframework.boot:spring-boot-starter-web:$LIB_SPRING_BOOT_VER"
2829
testCompile "org.springframework.boot:spring-boot-starter-test:$LIB_SPRING_BOOT_VER"
30+
31+
testRuntime "org.springframework.boot:spring-boot-starter-webflux:$LIB_SPRING_BOOT_VER"
2932
}
3033

3134
compileJava.dependsOn(processResources)

0 commit comments

Comments
 (0)