Skip to content

Commit 22d0e26

Browse files
authored
Update protobuf version for 3.19.4 (protocolbuffers#9449)
I also updated the PHP release notes in php/ext/google/protobuf/package.xml.
1 parent afeb6d8 commit 22d0e26

37 files changed

+59
-44
lines changed

Protobuf-C++.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Protobuf-C++'
3-
s.version = '3.19.3'
3+
s.version = '3.19.4'
44
s.summary = 'Protocol Buffers v3 runtime library for C++.'
55
s.homepage = 'https://github.com/google/protobuf'
66
s.license = '3-Clause BSD License'

Protobuf.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# dependent projects use the :git notation to refer to the library.
66
Pod::Spec.new do |s|
77
s.name = 'Protobuf'
8-
s.version = '3.19.3'
8+
s.version = '3.19.4'
99
s.summary = 'Protocol Buffers v.3 runtime library for Objective-C.'
1010
s.homepage = 'https://github.com/protocolbuffers/protobuf'
1111
s.license = '3-Clause BSD License'

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ AC_PREREQ(2.59)
1717
# In the SVN trunk, the version should always be the next anticipated release
1818
# version with the "-pre" suffix. (We used to use "-SNAPSHOT" but this pushed
1919
# the size of one file name in the dist tarfile over the 99-char limit.)
20-
AC_INIT([Protocol Buffers],[3.19.3],[[email protected]],[protobuf])
20+
AC_INIT([Protocol Buffers],[3.19.4],[[email protected]],[protobuf])
2121

2222
AM_MAINTAINER_MODE([enable])
2323

csharp/Google.Protobuf.Tools.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<title>Google Protocol Buffers tools</title>
66
<summary>Tools for Protocol Buffers - Google's data interchange format.</summary>
77
<description>See project site for more info.</description>
8-
<version>3.19.3</version>
8+
<version>3.19.4</version>
99
<authors>Google Inc.</authors>
1010
<owners>protobuf-packages</owners>
1111
<licenseUrl>https://github.com/protocolbuffers/protobuf/blob/master/LICENSE</licenseUrl>

csharp/src/Google.Protobuf/Google.Protobuf.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Description>C# runtime library for Protocol Buffers - Google's data interchange format.</Description>
55
<Copyright>Copyright 2015, Google Inc.</Copyright>
66
<AssemblyTitle>Google Protocol Buffers</AssemblyTitle>
7-
<VersionPrefix>3.19.3</VersionPrefix>
7+
<VersionPrefix>3.19.4</VersionPrefix>
88
<!-- C# 7.2 is required for Span/BufferWriter/ReadOnlySequence -->
99
<LangVersion>7.2</LangVersion>
1010
<Authors>Google Inc.</Authors>

java/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ If you are using Maven, use the following:
2323
<dependency>
2424
<groupId>com.google.protobuf</groupId>
2525
<artifactId>protobuf-java</artifactId>
26-
<version>3.19.3</version>
26+
<version>3.19.4</version>
2727
</dependency>
2828
```
2929

@@ -37,15 +37,15 @@ protobuf-java-util package:
3737
<dependency>
3838
<groupId>com.google.protobuf</groupId>
3939
<artifactId>protobuf-java-util</artifactId>
40-
<version>3.19.3</version>
40+
<version>3.19.4</version>
4141
</dependency>
4242
```
4343

4444
### Gradle
4545

4646
If you are using Gradle, add the following to your `build.gradle` file's dependencies:
4747
```
48-
implementation 'com.google.protobuf:protobuf-java:3.19.3'
48+
implementation 'com.google.protobuf:protobuf-java:3.19.4'
4949
```
5050
Again, be sure to check that the version number matches (or is newer than) the version number of protoc that you are using.
5151

java/bom/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.google.protobuf</groupId>
66
<artifactId>protobuf-bom</artifactId>
7-
<version>3.19.3</version>
7+
<version>3.19.4</version>
88
<packaging>pom</packaging>
99

1010
<name>Protocol Buffers [BOM]</name>

java/core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.google.protobuf</groupId>
66
<artifactId>protobuf-parent</artifactId>
7-
<version>3.19.3</version>
7+
<version>3.19.4</version>
88
</parent>
99

1010
<artifactId>protobuf-java</artifactId>

java/kotlin-lite/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.google.protobuf</groupId>
66
<artifactId>protobuf-parent</artifactId>
7-
<version>3.19.3</version>
7+
<version>3.19.4</version>
88
</parent>
99

1010
<artifactId>protobuf-kotlin-lite</artifactId>

java/kotlin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.google.protobuf</groupId>
66
<artifactId>protobuf-parent</artifactId>
7-
<version>3.19.3</version>
7+
<version>3.19.4</version>
88
</parent>
99

1010
<artifactId>protobuf-kotlin</artifactId>

java/lite.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ protobuf Java runtime. If you are using Maven, use the following:
3030
<dependency>
3131
<groupId>com.google.protobuf</groupId>
3232
<artifactId>protobuf-javalite</artifactId>
33-
<version>3.19.3</version>
33+
<version>3.19.4</version>
3434
</dependency>
3535
```
3636

java/lite/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.google.protobuf</groupId>
66
<artifactId>protobuf-parent</artifactId>
7-
<version>3.19.3</version>
7+
<version>3.19.4</version>
88
</parent>
99

1010
<artifactId>protobuf-javalite</artifactId>

java/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.google.protobuf</groupId>
66
<artifactId>protobuf-parent</artifactId>
7-
<version>3.19.3</version>
7+
<version>3.19.4</version>
88
<packaging>pom</packaging>
99

1010
<name>Protocol Buffers [Parent]</name>

java/util/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.google.protobuf</groupId>
66
<artifactId>protobuf-parent</artifactId>
7-
<version>3.19.3</version>
7+
<version>3.19.4</version>
88
</parent>
99

1010
<artifactId>protobuf-java-util</artifactId>

js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "google-protobuf",
3-
"version": "3.19.3",
3+
"version": "3.19.4",
44
"description": "Protocol Buffers for JavaScript",
55
"main": "google-protobuf.js",
66
"files": [

php/ext/google/protobuf/package.xml

+20-5
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@
1010
<email>[email protected]</email>
1111
<active>yes</active>
1212
</lead>
13-
<date>2022-01-11</date>
14-
<time>00:58:50</time>
13+
<date>2022-01-28</date>
14+
<time>00:03:40</time>
1515
<version>
16-
<release>3.19.3</release>
17-
<api>3.19.3</api>
16+
<release>3.19.4</release>
17+
<api>3.19.4</api>
1818
</version>
1919
<stability>
2020
<release>stable</release>
2121
<api>stable</api>
2222
</stability>
2323
<license uri="https://opensource.org/licenses/BSD-3-Clause">3-Clause BSD License</license>
2424
<notes>
25-
* No new changes in 3.19.3
25+
* Fixed a data loss bug that could occur when the number of optional fields in a message is an exact multiple of 32. (#9440).
2626
</notes>
2727
<contents>
2828
<dir baseinstalldir="/" name="/">
@@ -1188,5 +1188,20 @@ G A release.
11881188
<notes>
11891189
</notes>
11901190
</release>
1191+
<release>
1192+
<version>
1193+
<release>3.19.4</release>
1194+
<api>3.19.4</api>
1195+
</version>
1196+
<stability>
1197+
<release>stable</release>
1198+
<api>stable</api>
1199+
</stability>
1200+
<date>2022-01-28</date>
1201+
<time>00:03:40</time>
1202+
<license uri="https://opensource.org/licenses/BSD-3-Clause">3-Clause BSD License</license>
1203+
<notes>
1204+
</notes>
1205+
</release>
11911206
</changelog>
11921207
</package>

php/ext/google/protobuf/protobuf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_setter, 0, 0, 1)
9191
ZEND_ARG_INFO(0, value)
9292
ZEND_END_ARG_INFO()
9393

94-
#define PHP_PROTOBUF_VERSION "3.19.3"
94+
#define PHP_PROTOBUF_VERSION "3.19.4"
9595

9696
// ptr -> PHP object cache. This is a weak map that caches lazily-created
9797
// wrapper objects around upb types:

protobuf_version.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
PROTOBUF_VERSION = '3.19.3'
1+
PROTOBUF_VERSION = '3.19.4'

protoc-artifacts/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</parent>
99
<groupId>com.google.protobuf</groupId>
1010
<artifactId>protoc</artifactId>
11-
<version>3.19.3</version>
11+
<version>3.19.4</version>
1212
<packaging>pom</packaging>
1313
<name>Protobuf Compiler</name>
1414
<description>

python/google/protobuf/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@
3030

3131
# Copyright 2007 Google Inc. All Rights Reserved.
3232

33-
__version__ = '3.19.3'
33+
__version__ = '3.19.4'

ruby/google-protobuf.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = "google-protobuf"
3-
s.version = "3.19.3"
3+
s.version = "3.19.4"
44
git_tag = "v#{s.version.to_s.sub('.rc.', '-rc')}" # Converts X.Y.Z.rc.N to vX.Y.Z-rcN, used for the git tag
55
s.licenses = ["BSD-3-Clause"]
66
s.summary = "Protocol Buffers"

ruby/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<groupId>com.google.protobuf.jruby</groupId>
1111
<artifactId>protobuf-jruby</artifactId>
12-
<version>3.19.3</version>
12+
<version>3.19.4</version>
1313
<name>Protocol Buffer JRuby native extension</name>
1414
<description>
1515
Protocol Buffers are a way of encoding structured data in an efficient yet
@@ -76,7 +76,7 @@
7676
<dependency>
7777
<groupId>com.google.protobuf</groupId>
7878
<artifactId>protobuf-java-util</artifactId>
79-
<version>3.19.3</version>
79+
<version>3.19.4</version>
8080
</dependency>
8181
<dependency>
8282
<groupId>org.jruby</groupId>

src/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ else
1818
PTHREAD_DEF =
1919
endif
2020

21-
PROTOBUF_VERSION = 30:3:0
21+
PROTOBUF_VERSION = 30:4:0
2222

2323
if GCC
2424
# Turn on all warnings except for sign comparison (we ignore sign comparison

src/google/protobuf/any.pb.h

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/api.pb.h

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/compiler/plugin.pb.h

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/descriptor.pb.h

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/duration.pb.h

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/empty.pb.h

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/field_mask.pb.h

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/port_def.inc

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
#ifdef PROTOBUF_VERSION
154154
#error PROTOBUF_VERSION was previously defined
155155
#endif
156-
#define PROTOBUF_VERSION 3019003
156+
#define PROTOBUF_VERSION 3019004
157157

158158
#ifdef PROTOBUF_MIN_HEADER_VERSION_FOR_PROTOC
159159
#error PROTOBUF_MIN_HEADER_VERSION_FOR_PROTOC was previously defined

src/google/protobuf/source_context.pb.h

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/struct.pb.h

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/stubs/common.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ namespace internal {
8282

8383
// The current version, represented as a single integer to make comparison
8484
// easier: major * 10^6 + minor * 10^3 + micro
85-
#define GOOGLE_PROTOBUF_VERSION 3019003
85+
#define GOOGLE_PROTOBUF_VERSION 3019004
8686

8787
// A suffix string for alpha, beta or rc releases. Empty for stable releases.
8888
#define GOOGLE_PROTOBUF_VERSION_SUFFIX ""

src/google/protobuf/timestamp.pb.h

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/type.pb.h

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/google/protobuf/wrappers.pb.h

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)