From d7a87c31c7fc490ec319ff380458c43c70a501d7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 11:49:40 +0200 Subject: [PATCH] chore: bump the grpc group in /server with 4 updates (#208) Bumps the grpc group in /server with 4 updates: [io.grpc:grpc-netty](https://github.com/grpc/grpc-java), [io.grpc:grpc-protobuf](https://github.com/grpc/grpc-java), [io.grpc:grpc-services](https://github.com/grpc/grpc-java) and [io.grpc:protoc-gen-grpc-java](https://github.com/grpc/grpc-java). Updates `io.grpc:grpc-netty` from 1.65.1 to 1.66.0 - [Release notes](https://github.com/grpc/grpc-java/releases) - [Commits](https://github.com/grpc/grpc-java/compare/v1.65.1...v1.66.0) Updates `io.grpc:grpc-protobuf` from 1.65.1 to 1.66.0 - [Release notes](https://github.com/grpc/grpc-java/releases) - [Commits](https://github.com/grpc/grpc-java/compare/v1.65.1...v1.66.0) Updates `io.grpc:grpc-services` from 1.65.1 to 1.66.0 - [Release notes](https://github.com/grpc/grpc-java/releases) - [Commits](https://github.com/grpc/grpc-java/compare/v1.65.1...v1.66.0) Updates `io.grpc:protoc-gen-grpc-java` from 1.65.1 to 1.66.0 - [Release notes](https://github.com/grpc/grpc-java/releases) - [Commits](https://github.com/grpc/grpc-java/compare/v1.65.1...v1.66.0) --- updated-dependencies: - dependency-name: io.grpc:grpc-netty dependency-type: direct:production update-type: version-update:semver-minor dependency-group: grpc - dependency-name: io.grpc:grpc-protobuf dependency-type: direct:production update-type: version-update:semver-minor dependency-group: grpc - dependency-name: io.grpc:grpc-services dependency-type: direct:production update-type: version-update:semver-minor dependency-group: grpc - dependency-name: io.grpc:protoc-gen-grpc-java dependency-type: direct:production update-type: version-update:semver-minor dependency-group: grpc ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- server/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/build.gradle b/server/build.gradle index c2bc899..fc62dd4 100644 --- a/server/build.gradle +++ b/server/build.gradle @@ -12,9 +12,9 @@ repositories { dependencies { compileOnly "javax.annotation:javax.annotation-api:1.3.2" - implementation "io.grpc:grpc-netty:1.65.1" - implementation "io.grpc:grpc-protobuf:1.65.1" - implementation "io.grpc:grpc-services:1.65.1" // reflection + implementation "io.grpc:grpc-netty:1.66.0" + implementation "io.grpc:grpc-protobuf:1.66.0" + implementation "io.grpc:grpc-services:1.66.0" // reflection implementation "org.bouncycastle:bcpkix-jdk18on:1.78.1" } @@ -31,7 +31,7 @@ protobuf { } plugins { grpc { - artifact = "io.grpc:protoc-gen-grpc-java:1.65.1" + artifact = "io.grpc:protoc-gen-grpc-java:1.66.0" } } generateProtoTasks {