Skip to content

Commit 3fc6578

Browse files
chore: update dependencies (#35)
1 parent f62bc0b commit 3fc6578

File tree

5 files changed

+28
-26
lines changed

5 files changed

+28
-26
lines changed

hypertrace-core-graphql-grpc-utils/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ dependencies {
1616
implementation("org.hypertrace.core.grpcutils:grpc-client-utils")
1717
implementation("io.grpc:grpc-context")
1818
implementation("io.reactivex.rxjava3:rxjava")
19+
implementation("org.slf4j:slf4j-api")
1920
implementation(project(":hypertrace-core-graphql-spi"))
2021

2122
testImplementation("org.junit.jupiter:junit-jupiter")

hypertrace-core-graphql-impl/src/main/java/org/hypertrace/core/graphql/impl/GraphQlFactory.java

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ public static GraphQLConfiguration build(
1515

1616
return GraphQLConfiguration.with(injector.getInstance(GraphQLSchema.class))
1717
.with(config.isAsyncServlet())
18+
.asyncTimeout(30000) // https://github.com/graphql-java-kickstart/graphql-java-servlet/issues/282
1819
.with(injector.getInstance(GraphQlRequestContextBuilder.class))
1920
.build();
2021
}

hypertrace-core-graphql-platform/build.gradle.kts

+20-20
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,31 @@ plugins {
55
dependencies {
66
constraints {
77

8-
api("org.hypertrace.core.grpcutils:grpc-context-utils:0.3.0")
9-
api("org.hypertrace.core.grpcutils:grpc-client-utils:0.3.0")
10-
api("org.hypertrace.gateway.service:gateway-service-api:0.1.1")
11-
api("org.hypertrace.core.attribute.service:attribute-service-api:0.6.0")
8+
api("org.hypertrace.core.grpcutils:grpc-context-utils:0.3.2")
9+
api("org.hypertrace.core.grpcutils:grpc-client-utils:0.3.2")
10+
api("org.hypertrace.gateway.service:gateway-service-api:0.1.38")
11+
api("org.hypertrace.core.attribute.service:attribute-service-api:0.8.7")
1212

1313
api("com.google.inject:guice:4.2.3")
14-
api("com.graphql-java:graphql-java:14.0")
15-
api("io.github.graphql-java:graphql-java-annotations:8.0")
16-
api("org.slf4j:slf4j-api:1.7.3")
17-
api("io.reactivex.rxjava3:rxjava:3.0.2")
18-
api("com.google.protobuf:protobuf-java-util:3.11.4")
19-
api("org.projectlombok:lombok:1.18.12")
14+
api("com.graphql-java:graphql-java:15.0")
15+
api("io.github.graphql-java:graphql-java-annotations:8.3")
16+
api("org.slf4j:slf4j-api:1.7.30")
17+
api("io.reactivex.rxjava3:rxjava:3.0.7")
18+
api("com.google.protobuf:protobuf-java-util:3.14.0")
19+
api("org.projectlombok:lombok:1.18.16")
2020
api("com.google.code.findbugs:jsr305:3.0.2")
21-
api("com.typesafe:config:1.4.0")
21+
api("com.typesafe:config:1.4.1")
2222
api("com.google.guava:guava:30.0-jre")
23-
api("com.graphql-java-kickstart:graphql-java-servlet:9.1.0")
24-
api("io.grpc:grpc-api:1.33.0")
25-
api("io.grpc:grpc-core:1.33.0")
26-
api("io.grpc:grpc-stub:1.33.0")
27-
api("io.grpc:grpc-context:1.33.0")
28-
api("com.fasterxml.jackson.core:jackson-databind:2.11.0")
29-
api("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.11.0")
23+
api("com.graphql-java-kickstart:graphql-java-servlet:10.0.0")
24+
api("io.grpc:grpc-api:1.33.1")
25+
api("io.grpc:grpc-core:1.33.1")
26+
api("io.grpc:grpc-stub:1.33.1")
27+
api("io.grpc:grpc-context:1.33.1")
28+
api("com.fasterxml.jackson.core:jackson-databind:2.12.0")
29+
api("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.0")
3030

31-
runtime("org.apache.logging.log4j:log4j-slf4j-impl:2.13.3")
32-
runtime("io.grpc:grpc-netty:1.33.0")
31+
runtime("org.apache.logging.log4j:log4j-slf4j-impl:2.14.0")
32+
runtime("io.grpc:grpc-netty:1.33.1")
3333
runtime("io.netty:netty-codec-http2:4.1.53.Final") {
3434
because("https://snyk.io/vuln/SNYK-JAVA-IONETTY-1020439")
3535
}

hypertrace-core-graphql-service/build.gradle.kts

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ dependencies {
99
implementation(platform(project(":hypertrace-core-graphql-platform")))
1010

1111
implementation("com.typesafe:config")
12-
implementation("org.hypertrace.core.serviceframework:platform-service-framework:0.1.15")
12+
implementation("org.hypertrace.core.serviceframework:platform-service-framework:0.1.18")
1313
implementation("org.slf4j:slf4j-api")
1414

15-
implementation("org.eclipse.jetty:jetty-server:9.4.30.v20200611")
16-
implementation("org.eclipse.jetty:jetty-servlet:9.4.30.v20200611")
17-
implementation("org.eclipse.jetty:jetty-servlets:9.4.30.v20200611")
15+
implementation("org.eclipse.jetty:jetty-server:9.4.35.v20201120")
16+
implementation("org.eclipse.jetty:jetty-servlet:9.4.35.v20201120")
17+
implementation("org.eclipse.jetty:jetty-servlets:9.4.35.v20201120")
1818

1919
implementation("com.graphql-java-kickstart:graphql-java-servlet")
2020
implementation(project(":hypertrace-core-graphql-impl"))

hypertrace-core-graphql-test-platform/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
dependencies {
66
constraints {
77
api("org.junit.jupiter:junit-jupiter:5.7.0")
8-
api("org.mockito:mockito-core:3.5.13")
9-
api("org.mockito:mockito-junit-jupiter:3.5.13")
8+
api("org.mockito:mockito-core:3.6.28")
9+
api("org.mockito:mockito-junit-jupiter:3.6.28")
1010
}
1111
}

0 commit comments

Comments
 (0)