Skip to content

Commit

Permalink
chore : updated config bootstrapper (#111)
Browse files Browse the repository at this point in the history
* Update Chart.yaml

* updated grpc version

* updated grpc versions

* Update .snyk

Co-authored-by: Sarthak Singhal <[email protected]>
  • Loading branch information
sarthak77 and Sarthak Singhal authored Nov 15, 2021
1 parent a183974 commit 7d70545
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .snyk
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ ignore:
SNYK-JAVA-IONETTY-1042268:
- '*':
reason: No replacement available
expires: 2021-10-31T00:00:00.000Z
expires: 2021-12-31T00:00:00.000Z
patch: {}
6 changes: 3 additions & 3 deletions attribute-service-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ protobuf {
}
plugins {
id("grpc_java") {
artifact = "io.grpc:protoc-gen-grpc-java:1.40.0"
artifact = "io.grpc:protoc-gen-grpc-java:1.42.0"
}

if (generateLocalGoGrpcFiles) {
Expand Down Expand Up @@ -57,8 +57,8 @@ sourceSets {
}

dependencies {
api("io.grpc:grpc-stub:1.40.0")
api("io.grpc:grpc-protobuf:1.40.0")
api("io.grpc:grpc-stub:1.42.0")
api("io.grpc:grpc-protobuf:1.42.0")

implementation("javax.annotation:javax.annotation-api:1.3.2")
}
2 changes: 1 addition & 1 deletion attribute-service-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ dependencies {
api(project(":attribute-service-api"))
api("com.typesafe:config:1.4.1")

implementation("org.hypertrace.core.grpcutils:grpc-client-utils:0.6.1")
implementation("org.hypertrace.core.grpcutils:grpc-client-utils:0.6.2")
}
2 changes: 1 addition & 1 deletion attribute-service-impl/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
implementation(project(":attribute-service-tenant-api"))

implementation("org.hypertrace.core.documentstore:document-store:0.5.4")
implementation("org.hypertrace.core.grpcutils:grpc-context-utils:0.6.1")
implementation("org.hypertrace.core.grpcutils:grpc-context-utils:0.6.2")

implementation("com.fasterxml.jackson.core:jackson-databind:2.12.2")
implementation("com.typesafe:config:1.4.1")
Expand Down
8 changes: 4 additions & 4 deletions attribute-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,17 @@ dependencies {
implementation(project(":attribute-service-impl"))

implementation("org.hypertrace.core.serviceframework:platform-service-framework:0.1.28")
implementation("org.hypertrace.core.grpcutils:grpc-server-utils:0.6.1")
implementation("org.hypertrace.core.grpcutils:grpc-client-utils:0.6.1")
implementation("org.hypertrace.core.grpcutils:grpc-server-utils:0.6.2")
implementation("org.hypertrace.core.grpcutils:grpc-client-utils:0.6.2")
implementation("org.hypertrace.core.documentstore:document-store:0.5.4")
implementation("io.grpc:grpc-services:1.40.0")
implementation("io.grpc:grpc-services:1.42.0")

// Logging
implementation("org.slf4j:slf4j-api:1.7.30")
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.14.1")

// GRPC
runtimeOnly("io.grpc:grpc-netty:1.40.0")
runtimeOnly("io.grpc:grpc-netty:1.42.0")
constraints {
runtimeOnly("io.netty:netty-codec-http2:4.1.68.Final") {
because("https://snyk.io/vuln/SNYK-JAVA-IONETTY-1089809")
Expand Down
12 changes: 6 additions & 6 deletions caching-attribute-service-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ plugins {
dependencies {
api(project(":attribute-service-api"))
api("io.reactivex.rxjava3:rxjava:3.0.5")
api("io.grpc:grpc-api:1.40.0")
api("io.grpc:grpc-api:1.42.0")

implementation("io.grpc:grpc-stub:1.40.0")
implementation("org.hypertrace.core.grpcutils:grpc-client-utils:0.6.1")
implementation("org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.6.1")
implementation("org.hypertrace.core.grpcutils:grpc-context-utils:0.6.1")
implementation("io.grpc:grpc-stub:1.42.0")
implementation("org.hypertrace.core.grpcutils:grpc-client-utils:0.6.2")
implementation("org.hypertrace.core.grpcutils:grpc-client-rx-utils:0.6.2")
implementation("org.hypertrace.core.grpcutils:grpc-context-utils:0.6.2")
implementation("com.google.guava:guava:30.1.1-jre")
annotationProcessor("org.projectlombok:lombok:1.18.20")
compileOnly("org.projectlombok:lombok:1.18.20")
Expand All @@ -22,7 +22,7 @@ dependencies {
testImplementation("org.junit.jupiter:junit-jupiter:5.7.1")
testImplementation("org.mockito:mockito-core:3.8.0")
testImplementation("org.mockito:mockito-junit-jupiter:3.8.0")
testImplementation("io.grpc:grpc-core:1.40.0")
testImplementation("io.grpc:grpc-core:1.42.0")
testImplementation("org.apache.logging.log4j:log4j-slf4j-impl:2.14.1")
}

Expand Down
2 changes: 1 addition & 1 deletion helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ version: 0.1.0
dependencies:
- name: config-bootstrapper
repository: "https://storage.googleapis.com/hypertrace-helm-charts"
version: 0.2.20
version: 0.2.21

0 comments on commit 7d70545

Please sign in to comment.