From 44203a159d35797d91793d2d041cc33b9fd12fc4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 06:53:59 +0000 Subject: [PATCH] chore(deps): Bump io.grpc:grpc-stub from 1.78.0 to 1.83.1 Bumps [io.grpc:grpc-stub](https://github.com/grpc/grpc-java) from 1.78.0 to 1.83.1. - [Release notes](https://github.com/grpc/grpc-java/releases) - [Commits](https://github.com/grpc/grpc-java/compare/v1.78.0...v1.83.1) --- updated-dependencies: - dependency-name: io.grpc:grpc-stub dependency-version: 1.83.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- grpc/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/grpc/build.gradle.kts b/grpc/build.gradle.kts index 37fd32a..c5a4fd0 100644 --- a/grpc/build.gradle.kts +++ b/grpc/build.gradle.kts @@ -28,8 +28,8 @@ tasks.withType { } dependencies { - api("io.grpc:grpc-protobuf:1.78.0") - api("io.grpc:grpc-stub:1.78.0") + api("io.grpc:grpc-protobuf:1.83.1") + api("io.grpc:grpc-stub:1.83.1") api("com.google.protobuf:protobuf-java:4.29.0") // javax.annotation.Generated, which protoc-gen-grpc-java emits and the JDK // no longer ships. compileOnly: nothing reads the annotation at runtime. @@ -43,6 +43,6 @@ dependencies { protobuf { protoc { artifact = "com.google.protobuf:protoc:4.29.0" } - plugins { id("grpc") { artifact = "io.grpc:protoc-gen-grpc-java:1.78.0" } } + plugins { id("grpc") { artifact = "io.grpc:protoc-gen-grpc-java:1.83.1" } } generateProtoTasks { all().forEach { it.plugins { id("grpc") } } } }