Skip to content

Commit 83f925e

Browse files
Bump grpcVersion from 1.68.0 to 1.71.0
Bumps `grpcVersion` from 1.68.0 to 1.71.0. Updates `io.grpc:grpc-core` from 1.68.0 to 1.71.0 - [Release notes](https://github.com/grpc/grpc-java/releases) - [Commits](grpc/grpc-java@v1.68.0...v1.71.0) Updates `io.grpc:grpc-protobuf` from 1.68.0 to 1.71.0 - [Release notes](https://github.com/grpc/grpc-java/releases) - [Commits](grpc/grpc-java@v1.68.0...v1.71.0) Updates `io.grpc:grpc-stub` from 1.68.0 to 1.71.0 - [Release notes](https://github.com/grpc/grpc-java/releases) - [Commits](grpc/grpc-java@v1.68.0...v1.71.0) Updates `io.grpc:grpc-netty` from 1.68.0 to 1.71.0 - [Release notes](https://github.com/grpc/grpc-java/releases) - [Commits](grpc/grpc-java@v1.68.0...v1.71.0) Updates `io.grpc:grpc-netty-shaded` from 1.68.0 to 1.71.0 - [Release notes](https://github.com/grpc/grpc-java/releases) - [Commits](grpc/grpc-java@v1.68.0...v1.71.0) Updates `io.grpc:protoc-gen-grpc-java` from 1.68.0 to 1.71.0 - [Release notes](https://github.com/grpc/grpc-java/releases) - [Commits](grpc/grpc-java@v1.68.0...v1.71.0) --- updated-dependencies: - dependency-name: io.grpc:grpc-core dependency-version: 1.71.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.grpc:grpc-protobuf dependency-version: 1.71.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.grpc:grpc-stub dependency-version: 1.71.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.grpc:grpc-netty dependency-version: 1.71.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.grpc:grpc-netty-shaded dependency-version: 1.71.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.grpc:protoc-gen-grpc-java dependency-version: 1.71.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent c3d6548 commit 83f925e

10 files changed

Lines changed: 10 additions & 10 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ subprojects {
694694
sign publishing.publications.mavenJava
695695
}
696696

697-
def grpcVersion = '1.68.0'
697+
def grpcVersion = '1.80.0'
698698
def log4jVersion = '2.24.1'
699699
def jacksonVersion = '2.18.0'
700700
def dropwizardMetricsVersion = '4.2.26'

eventmesh-common/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
def grpcVersion = '1.68.0'
18+
def grpcVersion = '1.80.0'
1919

2020
dependencies {
2121
api "com.google.guava:guava"

eventmesh-connectors/eventmesh-connector-mcp/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies {
2323
implementation "io.cloudevents:cloudevents-core"
2424
implementation "com.google.guava:guava"
2525
implementation "io.cloudevents:cloudevents-json-jackson"
26-
implementation ("io.grpc:grpc-protobuf:1.68.0") {
26+
implementation ("io.grpc:grpc-protobuf:1.80.0") {
2727
exclude group: "com.google.protobuf", module: "protobuf-java"
2828
}
2929
implementation 'io.cloudevents:cloudevents-http-vertx:3.0.0'

eventmesh-examples/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
def grpcVersion = '1.68.0'
18+
def grpcVersion = '1.80.0'
1919

2020
dependencies {
2121
implementation project(":eventmesh-sdks:eventmesh-sdk-java")

eventmesh-meta/eventmesh-meta-raft/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ plugins {
1919
id 'com.google.protobuf' version '0.9.4'
2020
}
2121

22-
def grpcVersion = '1.68.0'
22+
def grpcVersion = '1.80.0'
2323
def protobufVersion = '3.25.4'
2424
def protocVersion = protobufVersion
2525

eventmesh-protocol-plugin/eventmesh-protocol-cloudevents/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies {
2020
implementation "io.cloudevents:cloudevents-core"
2121
implementation "com.google.guava:guava"
2222
implementation "io.cloudevents:cloudevents-json-jackson"
23-
implementation ("io.grpc:grpc-protobuf:1.68.0") {
23+
implementation ("io.grpc:grpc-protobuf:1.80.0") {
2424
exclude group: "com.google.protobuf", module: "protobuf-java"
2525
}
2626
implementation("com.google.protobuf:protobuf-java:3.25.4")

eventmesh-protocol-plugin/eventmesh-protocol-grpc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repositories {
2424
mavenCentral()
2525
}
2626

27-
def grpcVersion = '1.68.0'
27+
def grpcVersion = '1.80.0'
2828
def protobufVersion = '3.25.4'
2929
def protocVersion = protobufVersion
3030

eventmesh-protocol-plugin/eventmesh-protocol-http/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies {
2020
implementation "io.cloudevents:cloudevents-core"
2121
implementation "com.google.guava:guava"
2222
implementation "io.cloudevents:cloudevents-json-jackson"
23-
implementation ("io.grpc:grpc-protobuf:1.68.0") {
23+
implementation ("io.grpc:grpc-protobuf:1.80.0") {
2424
exclude group: "com.google.protobuf", module: "protobuf-java"
2525
}
2626
implementation("com.google.protobuf:protobuf-java:3.25.4")

eventmesh-protocol-plugin/eventmesh-protocol-meshmessage/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
dependencies {
1919
implementation project(":eventmesh-protocol-plugin:eventmesh-protocol-api")
2020
implementation "io.cloudevents:cloudevents-core"
21-
implementation ("io.grpc:grpc-protobuf:1.68.0") {
21+
implementation ("io.grpc:grpc-protobuf:1.80.0") {
2222
exclude group: "com.google.protobuf", module: "protobuf-java"
2323
}
2424
implementation("com.google.protobuf:protobuf-java:3.25.4")

eventmesh-sdks/eventmesh-sdk-java/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
def grpcVersion = '1.68.0'
18+
def grpcVersion = '1.80.0'
1919

2020
dependencies {
2121
api(project(":eventmesh-common")) {

0 commit comments

Comments
 (0)