This is an automated email from the ASF dual-hosted git repository.

xiatian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/eventmesh.git


The following commit(s) were added to refs/heads/master by this push:
     new eebbde30d Bump protobufVersion from 3.21.5 to 3.25.3 (#4948)
eebbde30d is described below

commit eebbde30d7d45193bf999814b3078a98fe1f5f0b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Jun 3 14:10:04 2024 +0800

    Bump protobufVersion from 3.21.5 to 3.25.3 (#4948)
    
    Bumps `protobufVersion` from 3.21.5 to 3.25.3.
    
    Updates `com.google.protobuf:protobuf-java-util` from 3.21.5 to 3.25.3
    
    Updates `com.google.protobuf:protobuf-java` from 3.21.5 to 3.25.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/compare/v3.21.5...v3.25.3)
    
    ---
    updated-dependencies:
    - dependency-name: com.google.protobuf:protobuf-java-util
      dependency-type: direct:production
      update-type: version-update:semver-minor
    - dependency-name: com.google.protobuf:protobuf-java
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 eventmesh-meta/eventmesh-meta-raft/build.gradle                       | 2 +-
 eventmesh-protocol-plugin/eventmesh-protocol-cloudevents/build.gradle | 2 +-
 eventmesh-protocol-plugin/eventmesh-protocol-grpc/build.gradle        | 2 +-
 eventmesh-protocol-plugin/eventmesh-protocol-http/build.gradle        | 2 +-
 eventmesh-protocol-plugin/eventmesh-protocol-meshmessage/build.gradle | 2 +-
 eventmesh-sdks/eventmesh-sdk-java/build.gradle                        | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/eventmesh-meta/eventmesh-meta-raft/build.gradle 
b/eventmesh-meta/eventmesh-meta-raft/build.gradle
index 386b5c6e7..2127e6d0f 100644
--- a/eventmesh-meta/eventmesh-meta-raft/build.gradle
+++ b/eventmesh-meta/eventmesh-meta-raft/build.gradle
@@ -20,7 +20,7 @@ plugins {
 }
 
 def grpcVersion = '1.50.2' // CURRENT_GRPC_VERSION
-def protobufVersion = '3.21.5'
+def protobufVersion = '3.25.3'
 def protocVersion = protobufVersion
 
 dependencies {
diff --git 
a/eventmesh-protocol-plugin/eventmesh-protocol-cloudevents/build.gradle 
b/eventmesh-protocol-plugin/eventmesh-protocol-cloudevents/build.gradle
index 0bc8809e8..e7d631f47 100644
--- a/eventmesh-protocol-plugin/eventmesh-protocol-cloudevents/build.gradle
+++ b/eventmesh-protocol-plugin/eventmesh-protocol-cloudevents/build.gradle
@@ -23,7 +23,7 @@ dependencies {
     implementation ("io.grpc:grpc-protobuf:1.64.0") {
         exclude group: "com.google.protobuf", module: "protobuf-java"
     }
-    implementation("com.google.protobuf:protobuf-java:3.21.5")
+    implementation("com.google.protobuf:protobuf-java:3.25.3")
     implementation "io.cloudevents:cloudevents-protobuf"
 
     compileOnly 'org.projectlombok:lombok'
diff --git a/eventmesh-protocol-plugin/eventmesh-protocol-grpc/build.gradle 
b/eventmesh-protocol-plugin/eventmesh-protocol-grpc/build.gradle
index 37ea09910..7275fa214 100644
--- a/eventmesh-protocol-plugin/eventmesh-protocol-grpc/build.gradle
+++ b/eventmesh-protocol-plugin/eventmesh-protocol-grpc/build.gradle
@@ -25,7 +25,7 @@ repositories {
 }
 
 def grpcVersion = '1.64.0' // CURRENT_GRPC_VERSION
-def protobufVersion = '3.21.5'
+def protobufVersion = '3.25.3'
 def protocVersion = protobufVersion
 
 dependencies {
diff --git a/eventmesh-protocol-plugin/eventmesh-protocol-http/build.gradle 
b/eventmesh-protocol-plugin/eventmesh-protocol-http/build.gradle
index af9ac9198..1d877a904 100644
--- a/eventmesh-protocol-plugin/eventmesh-protocol-http/build.gradle
+++ b/eventmesh-protocol-plugin/eventmesh-protocol-http/build.gradle
@@ -23,5 +23,5 @@ dependencies {
     implementation ("io.grpc:grpc-protobuf:1.64.0") {
         exclude group: "com.google.protobuf", module: "protobuf-java"
     }
-    implementation("com.google.protobuf:protobuf-java:3.21.5")
+    implementation("com.google.protobuf:protobuf-java:3.25.3")
 }
diff --git 
a/eventmesh-protocol-plugin/eventmesh-protocol-meshmessage/build.gradle 
b/eventmesh-protocol-plugin/eventmesh-protocol-meshmessage/build.gradle
index 6dbb13157..3f6d6ebdb 100644
--- a/eventmesh-protocol-plugin/eventmesh-protocol-meshmessage/build.gradle
+++ b/eventmesh-protocol-plugin/eventmesh-protocol-meshmessage/build.gradle
@@ -21,7 +21,7 @@ dependencies {
     implementation ("io.grpc:grpc-protobuf:1.64.0") {
         exclude group: "com.google.protobuf", module: "protobuf-java"
     }
-    implementation("com.google.protobuf:protobuf-java:3.21.5")
+    implementation("com.google.protobuf:protobuf-java:3.25.3")
     implementation "io.cloudevents:cloudevents-protobuf"
 
     testImplementation 
project(":eventmesh-protocol-plugin:eventmesh-protocol-api")
diff --git a/eventmesh-sdks/eventmesh-sdk-java/build.gradle 
b/eventmesh-sdks/eventmesh-sdk-java/build.gradle
index d18fba37e..46e6d8d65 100644
--- a/eventmesh-sdks/eventmesh-sdk-java/build.gradle
+++ b/eventmesh-sdks/eventmesh-sdk-java/build.gradle
@@ -54,7 +54,7 @@ dependencies {
 
     implementation "io.grpc:grpc-protobuf:${grpcVersion}"
     implementation "io.grpc:grpc-stub:${grpcVersion}"
-    implementation "com.google.protobuf:protobuf-java-util:3.21.5"
+    implementation "com.google.protobuf:protobuf-java-util:3.25.3"
     compileOnly 'org.projectlombok:lombok'
     annotationProcessor 'org.projectlombok:lombok'
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to