Skip to content

Commit ca30f76

Browse files
authored
Bump protobuf to 3.19.6
1 parent 11b6000 commit ca30f76

File tree

23 files changed

+34
-32
lines changed

23 files changed

+34
-32
lines changed

COMPILING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ This section is only necessary if you are making changes to the code
4444
generation. Most users only need to use `skipCodegen=true` as discussed above.
4545

4646
### Build Protobuf
47-
The codegen plugin is C++ code and requires protobuf 3.19.2 or later.
47+
The codegen plugin is C++ code and requires protobuf 3.19.6 or later.
4848

4949
For Linux, Mac and MinGW:
5050
```
51-
$ PROTOBUF_VERSION=3.19.2
51+
$ PROTOBUF_VERSION=3.19.6
5252
$ curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v$PROTOBUF_VERSION/protobuf-all-$PROTOBUF_VERSION.tar.gz
5353
$ tar xzf protobuf-all-$PROTOBUF_VERSION.tar.gz
5454
$ cd protobuf-$PROTOBUF_VERSION

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
112112
<artifactId>protobuf-maven-plugin</artifactId>
113113
<version>0.6.1</version>
114114
<configuration>
115-
<protocArtifact>com.google.protobuf:protoc:3.19.2:exe:${os.detected.classifier}</protocArtifact>
115+
<protocArtifact>com.google.protobuf:protoc:3.19.6:exe:${os.detected.classifier}</protocArtifact>
116116
<pluginId>grpc-java</pluginId>
117117
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.45.1:exe:${os.detected.classifier}</pluginArtifact>
118118
</configuration>
@@ -140,7 +140,7 @@ plugins {
140140
141141
protobuf {
142142
protoc {
143-
artifact = "com.google.protobuf:protoc:3.19.2"
143+
artifact = "com.google.protobuf:protoc:3.19.6"
144144
}
145145
plugins {
146146
grpc {
@@ -173,7 +173,7 @@ plugins {
173173
174174
protobuf {
175175
protoc {
176-
artifact = "com.google.protobuf:protoc:3.19.2"
176+
artifact = "com.google.protobuf:protoc:3.19.6"
177177
}
178178
plugins {
179179
grpc {

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ subprojects {
5858
nettyVersion = '4.1.72.Final'
5959
guavaVersion = '31.0.1-android'
6060
googleauthVersion = '1.4.0'
61-
protobufVersion = '3.19.2'
61+
protobufVersion = '3.19.6'
6262
protocVersion = protobufVersion
6363
opencensusVersion = '0.28.0'
6464
autovalueVersion = '1.9'

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.19.2
1+
set PROTOBUF_VER=3.19.6
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.19.2
6+
PROTOBUF_VERSION=3.19.6
77

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

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.19.2' }
35+
protoc { artifact = 'com.google.protobuf:protoc:3.19.6' }
3636
plugins {
3737
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.45.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.19.2' }
33+
protoc { artifact = 'com.google.protobuf:protoc:3.19.6' }
3434
plugins {
3535
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.45.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.19.2' }
33+
protoc { artifact = 'com.google.protobuf:protoc:3.19.6' }
3434
plugins {
3535
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.45.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.19.2' }
34+
protoc { artifact = 'com.google.protobuf:protoc:3.19.6' }
3535
plugins {
3636
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.45.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.8
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.45.2-SNAPSHOT' // CURRENT_GRPC_VERSION
26-
def protobufVersion = '3.19.2'
26+
def protobufVersion = '3.19.6'
2727
def protocVersion = protobufVersion
2828

2929
dependencies {

0 commit comments

Comments
 (0)