Skip to content

Commit

Permalink
Upgrade gRPC and protobuf dependencies. (#1185)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcipriano committed Sep 29, 2022
1 parent bce47b5 commit 3bb4528
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion VERSION.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.20
0.21
8 changes: 4 additions & 4 deletions cuebot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies {
compile group: 'com.google.guava', name: 'guava', version: '26.0-android'
compile group: 'com.sun.mail', name: 'mailapi', version: '1.5.4'
compile group: 'commons-lang', name: 'commons-lang', version: '2.6'
compile group: 'io.grpc', name: 'grpc-all', version: '1.36.2'
compile group: 'io.grpc', name: 'grpc-all', version: '1.47.0'
compile group: 'org.apache.activemq', name: 'activemq-pool', version: activemqVersion
compile group: 'org.apache.velocity', name: 'velocity', version: '1.7'
compile group: 'org.jdom', name: 'jdom', version: '1.1.3'
Expand All @@ -54,7 +54,7 @@ dependencies {
compile group: 'org.springframework', name: 'spring-jms'
compile group: 'org.quartz-scheduler', name: 'quartz', version: '2.2.1', { exclude group: 'c3p0', module: 'c3p0' }
compile group: 'org.postgresql', name: 'postgresql', version: '42.2.2'
compile group: 'com.google.protobuf', name: 'protobuf-java', version: '3.13.0'
compile group: 'com.google.protobuf', name: 'protobuf-java', version: '3.21.2'
compile group: 'log4j', name: 'log4j', version: '1.2.17'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.26'

Expand All @@ -81,12 +81,12 @@ compileTestJava {
protobuf {
protoc {
// The protoc compiler
artifact = 'com.google.protobuf:protoc:3.13.0'
artifact = 'com.google.protobuf:protoc:3.21.2'
}
plugins {
grpc {
// Generate gRPC stubs.
artifact = 'io.grpc:protoc-gen-grpc-java:1.7.0'
artifact = 'io.grpc:protoc-gen-grpc-java:1.47.0'
}
}
generateProtoTasks {
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ future==0.17.1
futures==3.2.0;python_version<"3.0"
grpcio==1.26.0;python_version<"3.0"
grpcio-tools==1.26.0;python_version<"3.0"
grpcio==1.39.0;python_version>="3.0"
grpcio-tools==1.39.0;python_version>="3.0"
grpcio==1.47.0;python_version>="3.0"
grpcio-tools==1.47.0;python_version>="3.0"
mock==2.0.0
packaging==20.9
pathlib==1.0.1;python_version<"3.4"
Expand Down

0 comments on commit 3bb4528

Please sign in to comment.