From ecdf1dc149c17fdd0bdb749fd3f6ce15b704d287 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 06:54:11 +0000 Subject: [PATCH] chore(deps): Bump com.google.protobuf:protobuf-java Bumps [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) from 4.29.0 to 4.35.1. - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Commits](https://github.com/protocolbuffers/protobuf/commits) --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-version: 4.35.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- grpc/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grpc/build.gradle.kts b/grpc/build.gradle.kts index 37fd32a..451d9ca 100644 --- a/grpc/build.gradle.kts +++ b/grpc/build.gradle.kts @@ -30,7 +30,7 @@ tasks.withType { dependencies { api("io.grpc:grpc-protobuf:1.78.0") api("io.grpc:grpc-stub:1.78.0") - api("com.google.protobuf:protobuf-java:4.29.0") + api("com.google.protobuf:protobuf-java:4.35.1") // javax.annotation.Generated, which protoc-gen-grpc-java emits and the JDK // no longer ships. compileOnly: nothing reads the annotation at runtime. compileOnly("org.apache.tomcat:annotations-api:6.0.53") @@ -42,7 +42,7 @@ dependencies { } protobuf { - protoc { artifact = "com.google.protobuf:protoc:4.29.0" } + protoc { artifact = "com.google.protobuf:protoc:4.35.1" } plugins { id("grpc") { artifact = "io.grpc:protoc-gen-grpc-java:1.78.0" } } generateProtoTasks { all().forEach { it.plugins { id("grpc") } } } }