Skip to content

Commit

Permalink
chore: bump doc-store version to include postgres impl of exits, not-…
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
kotharironak authored Feb 15, 2021
1 parent aeb576c commit 3886390
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion attribute-service-impl/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
10 changes: 5 additions & 5 deletions attribute-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand All @@ -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")
}
}

Expand Down

0 comments on commit 3886390

Please sign in to comment.