From a9412c186edb68fb9e511714a17900c492142d1f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Feb 2025 07:07:09 +0000 Subject: [PATCH] Bump the gradle group with 5 updates Bumps the gradle group with 5 updates: | Package | From | To | | --- | --- | --- | | [io.grpc:grpc-protobuf](https://github.com/grpc/grpc-java) | `1.69.0` | `1.70.0` | | [io.grpc:grpc-stub](https://github.com/grpc/grpc-java) | `1.69.0` | `1.70.0` | | [io.grpc:grpc-netty-shaded](https://github.com/grpc/grpc-java) | `1.69.0` | `1.70.0` | | [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) | `4.29.2` | `4.29.3` | | [org.assertj:assertj-core](https://github.com/assertj/assertj) | `3.27.0` | `3.27.3` | Updates `io.grpc:grpc-protobuf` from 1.69.0 to 1.70.0 - [Release notes](https://github.com/grpc/grpc-java/releases) - [Commits](https://github.com/grpc/grpc-java/compare/v1.69.0...v1.70.0) Updates `io.grpc:grpc-stub` from 1.69.0 to 1.70.0 - [Release notes](https://github.com/grpc/grpc-java/releases) - [Commits](https://github.com/grpc/grpc-java/compare/v1.69.0...v1.70.0) Updates `io.grpc:grpc-netty-shaded` from 1.69.0 to 1.70.0 - [Release notes](https://github.com/grpc/grpc-java/releases) - [Commits](https://github.com/grpc/grpc-java/compare/v1.69.0...v1.70.0) Updates `com.google.protobuf:protobuf-java` from 4.29.2 to 4.29.3 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `io.grpc:grpc-stub` from 1.69.0 to 1.70.0 - [Release notes](https://github.com/grpc/grpc-java/releases) - [Commits](https://github.com/grpc/grpc-java/compare/v1.69.0...v1.70.0) Updates `io.grpc:grpc-netty-shaded` from 1.69.0 to 1.70.0 - [Release notes](https://github.com/grpc/grpc-java/releases) - [Commits](https://github.com/grpc/grpc-java/compare/v1.69.0...v1.70.0) Updates `org.assertj:assertj-core` from 3.27.0 to 3.27.3 - [Release notes](https://github.com/assertj/assertj/releases) - [Commits](https://github.com/assertj/assertj/compare/assertj-build-3.27.0...assertj-build-3.27.3) --- updated-dependencies: - dependency-name: io.grpc:grpc-protobuf dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: io.grpc:grpc-stub dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: io.grpc:grpc-netty-shaded dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle - dependency-name: io.grpc:grpc-stub dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: io.grpc:grpc-netty-shaded dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: org.assertj:assertj-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle ... Signed-off-by: dependabot[bot] --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 48e53b35..f3f7b857 100644 --- a/build.gradle +++ b/build.gradle @@ -83,8 +83,8 @@ tasks.sourcesJar { // All it does is complain about generated code. javadoc { options.addStringOption('Xdoclint:none', '-quiet') } -def grpcVersion = "1.69.0" -def protocVersion = "4.29.2" +def grpcVersion = "1.70.0" +def protocVersion = "4.29.3" def authzedProtoCommit = "v1.40.0" def bufDir = "${buildDir}/buf" def protocPlatformTag = project.findProperty('protoc_platform') ? ":${protoc_platform}" : "" @@ -149,7 +149,7 @@ configurations { // Test things dependencies { intTestImplementation "junit:junit:4.13.2" - intTestImplementation "org.assertj:assertj-core:3.27.0" + intTestImplementation "org.assertj:assertj-core:3.27.3" } tasks.register('integrationTest', Test) {