Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump grpcVersion from 1.65.1 to 1.66.0 #5085

Merged
merged 1 commit into from
Sep 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ subprojects {
sign publishing.publications.mavenJava
}

def grpcVersion = '1.65.1'
def grpcVersion = '1.66.0'
def log4jVersion = '2.23.1'
def jacksonVersion = '2.17.2'
def dropwizardMetricsVersion = '4.2.26'
Expand Down
2 changes: 1 addition & 1 deletion eventmesh-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

def grpcVersion = '1.65.1'
def grpcVersion = '1.66.0'

dependencies {
api "com.google.guava:guava"
Expand Down
2 changes: 1 addition & 1 deletion eventmesh-examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

def grpcVersion = '1.65.1'
def grpcVersion = '1.66.0'

dependencies {
implementation project(":eventmesh-sdks:eventmesh-sdk-java")
Expand Down
2 changes: 1 addition & 1 deletion eventmesh-meta/eventmesh-meta-raft/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
id 'com.google.protobuf' version '0.9.4'
}

def grpcVersion = '1.65.1'
def grpcVersion = '1.66.0'
def protobufVersion = '3.25.4'
def protocVersion = protobufVersion

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
implementation "io.cloudevents:cloudevents-core"
implementation "com.google.guava:guava"
implementation "io.cloudevents:cloudevents-json-jackson"
implementation ("io.grpc:grpc-protobuf:1.65.1") {
implementation ("io.grpc:grpc-protobuf:1.66.0") {
exclude group: "com.google.protobuf", module: "protobuf-java"
}
implementation("com.google.protobuf:protobuf-java:3.25.4")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repositories {
mavenCentral()
}

def grpcVersion = '1.65.1'
def grpcVersion = '1.66.0'
def protobufVersion = '3.25.4'
def protocVersion = protobufVersion

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
implementation "io.cloudevents:cloudevents-core"
implementation "com.google.guava:guava"
implementation "io.cloudevents:cloudevents-json-jackson"
implementation ("io.grpc:grpc-protobuf:1.65.1") {
implementation ("io.grpc:grpc-protobuf:1.66.0") {
exclude group: "com.google.protobuf", module: "protobuf-java"
}
implementation("com.google.protobuf:protobuf-java:3.25.4")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
dependencies {
implementation project(":eventmesh-protocol-plugin:eventmesh-protocol-api")
implementation "io.cloudevents:cloudevents-core"
implementation ("io.grpc:grpc-protobuf:1.65.1") {
implementation ("io.grpc:grpc-protobuf:1.66.0") {
exclude group: "com.google.protobuf", module: "protobuf-java"
}
implementation("com.google.protobuf:protobuf-java:3.25.4")
Expand Down
2 changes: 1 addition & 1 deletion eventmesh-sdks/eventmesh-sdk-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

def grpcVersion = '1.65.1'
def grpcVersion = '1.66.0'

dependencies {
api(project(":eventmesh-common")) {
Expand Down
Loading