Skip to content

Commit bde2239

Browse files
chore: update dependencies
1 parent 9f6b20d commit bde2239

File tree

9 files changed

+12
-19
lines changed

9 files changed

+12
-19
lines changed

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
2-
id("org.hypertrace.repository-plugin") version "0.2.0"
3-
id("org.hypertrace.ci-utils-plugin") version "0.1.1"
4-
id("org.hypertrace.jacoco-report-plugin") version "0.1.0" apply false
2+
id("org.hypertrace.repository-plugin") version "0.2.3"
3+
id("org.hypertrace.ci-utils-plugin") version "0.2.0"
4+
id("org.hypertrace.jacoco-report-plugin") version "0.1.3" apply false
55
id("org.hypertrace.docker-java-application-plugin") version "0.8.1" apply false
66
id("org.hypertrace.docker-publish-plugin") version "0.8.1" apply false
77
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.1-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ public static GraphQLConfiguration build(
1414
final Injector injector = Guice.createInjector(new GraphQlModule(config, serviceLifecycle));
1515

1616
return GraphQLConfiguration.with(injector.getInstance(GraphQLSchema.class))
17-
.with(config.isAsyncServlet())
18-
.asyncTimeout(
19-
30000) // https://github.com/graphql-java-kickstart/graphql-java-servlet/issues/282
2017
.with(injector.getInstance(GraphQlRequestContextBuilder.class))
2118
.build();
2219
}

hypertrace-graphql-platform/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ javaPlatform {
99
dependencies {
1010
api(platform("org.hypertrace.core.graphql:hypertrace-core-graphql-platform"))
1111
constraints {
12-
api("org.hypertrace.entity.service:entity-type-service-rx-client:0.2.0")
13-
api("org.hypertrace.config.service:spaces-config-service-api:0.1.0")
12+
api("org.hypertrace.entity.service:entity-type-service-rx-client:0.5.6")
13+
api("org.hypertrace.config.service:spaces-config-service-api:0.1.1")
1414
}
1515
}

hypertrace-graphql-service/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ plugins {
77

88
dependencies {
99
implementation("com.typesafe:config")
10-
implementation("org.hypertrace.core.serviceframework:platform-service-framework:0.1.18")
10+
implementation("org.hypertrace.core.serviceframework:platform-service-framework:0.1.20")
1111
implementation("org.slf4j:slf4j-api")
1212

13-
implementation("org.eclipse.jetty:jetty-server:9.4.35.v20201120")
14-
implementation("org.eclipse.jetty:jetty-servlet:9.4.35.v20201120")
15-
implementation("org.eclipse.jetty:jetty-servlets:9.4.35.v20201120")
13+
implementation("org.eclipse.jetty:jetty-server:9.4.36.v20210114")
14+
implementation("org.eclipse.jetty:jetty-servlet:9.4.36.v20210114")
15+
implementation("org.eclipse.jetty:jetty-servlets:9.4.36.v20210114")
1616

1717
implementation("com.graphql-java-kickstart:graphql-java-servlet")
1818
implementation(project(":hypertrace-graphql-impl"))

hypertrace-graphql-service/src/main/java/org/hypertrace/graphql/service/DefaultGraphQlServiceConfig.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ class DefaultGraphQlServiceConfig implements HypertraceGraphQlServiceConfig {
1313
private static final String SERVICE_PORT_CONFIG = "service.port";
1414

1515
private static final String GRAPHQL_URL_PATH = "graphql.urlPath";
16-
private static final String GRAPHQL_ASYNC_SERVLET = "graphql.asyncServlet";
1716
private static final String GRAPHQL_CORS_ENABLED = "graphql.corsEnabled";
1817

1918
private static final String DEFAULT_TENANT_ID = "defaultTenantId";
@@ -35,7 +34,6 @@ class DefaultGraphQlServiceConfig implements HypertraceGraphQlServiceConfig {
3534
String serviceName;
3635
int servicePort;
3736
String graphqlUrlPath;
38-
boolean asyncServlet;
3937
boolean corsEnabled;
4038
Optional<String> defaultTenantId;
4139
int maxIoThreads;
@@ -52,7 +50,6 @@ class DefaultGraphQlServiceConfig implements HypertraceGraphQlServiceConfig {
5250
this.serviceName = untypedConfig.getString(SERVICE_NAME_CONFIG);
5351
this.servicePort = untypedConfig.getInt(SERVICE_PORT_CONFIG);
5452
this.graphqlUrlPath = untypedConfig.getString(GRAPHQL_URL_PATH);
55-
this.asyncServlet = untypedConfig.getBoolean(GRAPHQL_ASYNC_SERVLET);
5653
this.corsEnabled = untypedConfig.getBoolean(GRAPHQL_CORS_ENABLED);
5754
this.defaultTenantId = optionallyGet(() -> untypedConfig.getString(DEFAULT_TENANT_ID));
5855
this.maxIoThreads = untypedConfig.getInt(MAX_IO_THREADS_PROPERTY);

hypertrace-graphql-service/src/main/resources/configs/common/application.conf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ service.port = 23431 #TODO resolve with existing graphql port when ready for dep
44
service.admin.port = 23432
55

66
graphql.urlPath = /graphql
7-
graphql.asyncServlet = true
87
graphql.corsEnabled = true
98

109
defaultTenantId = ${?DEFAULT_TENANT_ID}

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pluginManagement {
99
}
1010

1111
plugins {
12-
id("org.hypertrace.version-settings") version "0.1.1"
12+
id("org.hypertrace.version-settings") version "0.1.6"
1313
}
1414

1515
includeBuild("./hypertrace-core-graphql")

0 commit comments

Comments
 (0)