Skip to content

Commit bf2f2e4

Browse files
chore: fix vulnerabilities in attribute service (#160)
1 parent da3c949 commit bf2f2e4

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

attribute-service-api/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ val generateLocalGoGrpcFiles = false
1515

1616
protobuf {
1717
protoc {
18-
artifact = "com.google.protobuf:protoc:3.15.6"
18+
artifact = "com.google.protobuf:protoc:3.21.12"
1919
}
2020
plugins {
2121
id("grpc_java") {
@@ -57,7 +57,7 @@ sourceSets {
5757
}
5858

5959
dependencies {
60-
api(platform("io.grpc:grpc-bom:1.44.0"))
60+
api(platform("io.grpc:grpc-bom:1.50.0"))
6161
api("io.grpc:grpc-stub")
6262
api("io.grpc:grpc-protobuf")
6363

attribute-service-factory/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
dependencies {
6-
api("org.hypertrace.core.serviceframework:platform-grpc-service-framework:0.1.37")
6+
api("org.hypertrace.core.serviceframework:platform-grpc-service-framework:0.1.49")
77

88
// Only required because AttributeService constructor test overload uses a doc store API
99
compileOnly("org.hypertrace.core.documentstore:document-store:0.7.20")

attribute-service-impl/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ dependencies {
1111
implementation("org.hypertrace.core.documentstore:document-store:0.7.20")
1212
implementation("org.hypertrace.core.grpcutils:grpc-context-utils:0.9.0")
1313

14-
implementation("com.fasterxml.jackson.core:jackson-databind:2.13.2.2")
14+
implementation("com.fasterxml.jackson.core:jackson-databind:2.14.2")
1515
implementation("com.typesafe:config:1.4.1")
1616
implementation("org.slf4j:slf4j-api:1.7.32")
17-
implementation("com.google.protobuf:protobuf-java-util:3.19.2")
17+
implementation("com.google.protobuf:protobuf-java-util:3.21.12")
1818
implementation("com.google.guava:guava:31.1-jre")
1919

2020
testImplementation("org.mockito:mockito-core:4.2.0")

attribute-service/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ tasks.integrationTest {
5555

5656
dependencies {
5757
implementation(project(":attribute-service-factory"))
58-
implementation("org.hypertrace.core.serviceframework:platform-grpc-service-framework:0.1.37")
58+
implementation("org.hypertrace.core.serviceframework:platform-grpc-service-framework:0.1.49")
5959
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.17.1")
6060
runtimeOnly("io.grpc:grpc-netty")
6161

6262
// Integration test dependencies
6363
integrationTestImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
6464
integrationTestImplementation("com.google.guava:guava:31.1-jre")
6565
integrationTestImplementation(project(":attribute-service-client"))
66-
integrationTestImplementation("org.hypertrace.core.serviceframework:integrationtest-service-framework:0.1.37")
66+
integrationTestImplementation("org.hypertrace.core.serviceframework:integrationtest-service-framework:0.1.49")
6767
integrationTestImplementation("org.hypertrace.core.grpcutils:grpc-context-utils:0.9.0")
6868
}
6969

0 commit comments

Comments
 (0)