From 38863905b7f2936f7d9c75eb003597c1b7e61592 Mon Sep 17 00:00:00 2001 From: kotharironak <53209990+kotharironak@users.noreply.github.com> Date: Mon, 15 Feb 2021 19:23:09 +0530 Subject: [PATCH] chore: bump doc-store version to include postgres impl of exits, not-exits and neq (#73) * chore: bump doc-store version to include postgres impl of exits, not-exsits and neq * fixes snyk issue for netty libs * restore back constraints block * Updates constraints block with right snyk issue --- attribute-service-impl/build.gradle.kts | 2 +- attribute-service/build.gradle.kts | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/attribute-service-impl/build.gradle.kts b/attribute-service-impl/build.gradle.kts index fb55884d..4dd854cb 100644 --- a/attribute-service-impl/build.gradle.kts +++ b/attribute-service-impl/build.gradle.kts @@ -8,7 +8,7 @@ dependencies { api(project(":attribute-service-api")) implementation(project(":attribute-service-tenant-api")) - implementation("org.hypertrace.core.documentstore:document-store:0.5.1") + implementation("org.hypertrace.core.documentstore:document-store:0.5.3") implementation("org.hypertrace.core.grpcutils:grpc-context-utils:0.2.0") implementation("com.fasterxml.jackson.core:jackson-databind:2.9.5") diff --git a/attribute-service/build.gradle.kts b/attribute-service/build.gradle.kts index 0ca8728a..8698ebe0 100644 --- a/attribute-service/build.gradle.kts +++ b/attribute-service/build.gradle.kts @@ -58,7 +58,7 @@ dependencies { implementation("org.hypertrace.core.serviceframework:platform-service-framework:0.1.19") implementation("org.hypertrace.core.grpcutils:grpc-server-utils:0.2.0") - implementation("org.hypertrace.core.documentstore:document-store:0.5.1") + implementation("org.hypertrace.core.documentstore:document-store:0.5.3") // Logging implementation("org.slf4j:slf4j-api:1.7.25") @@ -67,11 +67,11 @@ dependencies { // GRPC runtimeOnly("io.grpc:grpc-netty:1.33.0") constraints { - runtimeOnly("io.netty:netty-codec-http2:4.1.54.Final") { - because("https://snyk.io/vuln/SNYK-JAVA-IONETTY-1020439") + runtimeOnly("io.netty:netty-codec-http2:4.1.59.Final") { + because("https://snyk.io/vuln/SNYK-JAVA-IONETTY-1070799") } - runtimeOnly("io.netty:netty-handler-proxy:4.1.54.Final") { - because("https://snyk.io/vuln/SNYK-JAVA-IONETTY-1020439s") + runtimeOnly("io.netty:netty-handler-proxy:4.1.59.Final") { + because("https://snyk.io/vuln/SNYK-JAVA-IONETTY-1070799") } }