Skip to content

Commit ae730ed

Browse files
authored
Bump protobuf to 3.18.2 and Guava to 30.1.1-android
Protobuf bumped to Guava 30.1.1-android, so we need to follow suit.
1 parent 5903148 commit ae730ed

File tree

22 files changed

+35
-35
lines changed

22 files changed

+35
-35
lines changed

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
44

55
http_archive(
66
name = "rules_jvm_external",
7-
sha256 = "62133c125bf4109dfd9d2af64830208356ce4ef8b165a6ef15bbff7460b35c3a",
8-
strip_prefix = "rules_jvm_external-3.0",
9-
url = "https://github.com/bazelbuild/rules_jvm_external/archive/3.0.zip",
7+
sha256 = "f36441aa876c4f6427bfb2d1f2d723b48e9d930b62662bf723ddfb8fc80f0140",
8+
strip_prefix = "rules_jvm_external-4.1",
9+
url = "https://github.com/bazelbuild/rules_jvm_external/archive/4.1.zip",
1010
)
1111

1212
load("@rules_jvm_external//:defs.bzl", "maven_install")

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ subprojects {
5555
javaPluginPath = "$rootDir/compiler/build/exe/java_plugin/$protocPluginBaseName$exeSuffix"
5656

5757
nettyVersion = '4.1.63.Final'
58-
guavaVersion = '30.1-android'
58+
guavaVersion = '30.1.1-android'
5959
googleauthVersion = '0.22.2'
60-
protobufVersion = '3.17.2'
60+
protobufVersion = '3.18.2'
6161
protocVersion = protobufVersion
6262
opencensusVersion = '0.28.0'
6363
autovalueVersion = '1.7.4'

buildscripts/make_dependencies.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set PROTOBUF_VER=3.17.2
1+
set PROTOBUF_VER=3.18.2
22
set CMAKE_NAME=cmake-3.3.2-win32-x86
33

44
if not exist "protobuf-%PROTOBUF_VER%\cmake\build\Release\" (

buildscripts/make_dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Build protoc
44
set -evux -o pipefail
55

6-
PROTOBUF_VERSION=3.17.2
6+
PROTOBUF_VERSION=3.18.2
77

88
# ARCH is x86_64 bit unless otherwise specified.
99
ARCH="${ARCH:-x86_64}"

examples/WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
1616

1717
http_archive(
1818
name = "rules_jvm_external",
19-
sha256 = "62133c125bf4109dfd9d2af64830208356ce4ef8b165a6ef15bbff7460b35c3a",
20-
strip_prefix = "rules_jvm_external-3.0",
21-
url = "https://github.com/bazelbuild/rules_jvm_external/archive/3.0.zip",
19+
sha256 = "f36441aa876c4f6427bfb2d1f2d723b48e9d930b62662bf723ddfb8fc80f0140",
20+
strip_prefix = "rules_jvm_external-4.1",
21+
url = "https://github.com/bazelbuild/rules_jvm_external/archive/4.1.zip",
2222
)
2323

2424
load("@rules_jvm_external//:defs.bzl", "maven_install")

examples/android/clientcache/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ android {
3232
}
3333

3434
protobuf {
35-
protoc { artifact = 'com.google.protobuf:protoc:3.17.2' }
35+
protoc { artifact = 'com.google.protobuf:protoc:3.18.2' }
3636
plugins {
3737
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.42.2-SNAPSHOT' // CURRENT_GRPC_VERSION
3838
}

examples/android/helloworld/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ android {
3030
}
3131

3232
protobuf {
33-
protoc { artifact = 'com.google.protobuf:protoc:3.17.2' }
33+
protoc { artifact = 'com.google.protobuf:protoc:3.18.2' }
3434
plugins {
3535
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.42.2-SNAPSHOT' // CURRENT_GRPC_VERSION
3636
}

examples/android/routeguide/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ android {
3030
}
3131

3232
protobuf {
33-
protoc { artifact = 'com.google.protobuf:protoc:3.17.2' }
33+
protoc { artifact = 'com.google.protobuf:protoc:3.18.2' }
3434
plugins {
3535
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.42.2-SNAPSHOT' // CURRENT_GRPC_VERSION
3636
}

examples/android/strictmode/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ android {
3131
}
3232

3333
protobuf {
34-
protoc { artifact = 'com.google.protobuf:protoc:3.17.2' }
34+
protoc { artifact = 'com.google.protobuf:protoc:3.18.2' }
3535
plugins {
3636
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.42.2-SNAPSHOT' // CURRENT_GRPC_VERSION
3737
}

examples/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ targetCompatibility = 1.7
2323
// Feel free to delete the comment at the next line. It is just for safely
2424
// updating the version in our release process.
2525
def grpcVersion = '1.42.2-SNAPSHOT' // CURRENT_GRPC_VERSION
26-
def protobufVersion = '3.17.2'
26+
def protobufVersion = '3.18.2'
2727
def protocVersion = protobufVersion
2828

2929
dependencies {

0 commit comments

Comments
 (0)