Update protobuf version to 3.15.8 (#26105)

* Update protobuf version to 3.15.8

* Run tools/distrib/python/make_grpcio_tools.py
pull/26143/head
Yash Tibrewal 4 years ago committed by GitHub
parent 68aed165a7
commit 81276fff2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      bazel/grpc_deps.bzl
  2. 2
      build_handwritten.yaml
  3. 2
      src/cpp/Protobuf-C++.podspec
  4. 2
      src/csharp/build/dependencies.props
  5. 2
      src/objective-c/!ProtoCompiler-gRPCCppPlugin.podspec
  6. 2
      src/objective-c/!ProtoCompiler-gRPCPlugin.podspec
  7. 2
      src/objective-c/!ProtoCompiler.podspec
  8. 2
      src/ruby/bin/math_services_pb.rb
  9. 2
      src/ruby/pb/grpc/health/v1/health_services_pb.rb
  10. 12
      src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb
  11. 2
      src/ruby/qps/src/proto/grpc/testing/benchmark_service_services_pb.rb
  12. 2
      src/ruby/qps/src/proto/grpc/testing/report_qps_scenario_service_services_pb.rb
  13. 2
      src/ruby/qps/src/proto/grpc/testing/worker_service_services_pb.rb
  14. 2
      third_party/protobuf
  15. 2
      third_party/protobuf.patch
  16. 2
      tools/distrib/python/grpc_version.py
  17. 2
      tools/distrib/python/grpcio_tools/grpc_version.py
  18. 2
      tools/distrib/python/grpcio_tools/protoc_lib_deps.py
  19. 2
      tools/run_tests/sanity/check_submodules.sh

@ -179,11 +179,11 @@ def grpc_deps():
if "com_google_protobuf" not in native.existing_rules():
http_archive(
name = "com_google_protobuf",
sha256 = "09709ea1a25dc2f02e281e11f559dd979139ba2a1ddb24c489ea6bea9e3ad8bc",
strip_prefix = "protobuf-d7e943b8d2bc444a8c770644e73d090b486f8b37",
sha256 = "cf63d46ef743f4c30b0e36a562caf83cabed3f10e6ca49eb476913c4655394d5",
strip_prefix = "protobuf-436bd7880e458532901c58f4d9d1ea23fa7edd52",
urls = [
"https://storage.googleapis.com/grpc-bazel-mirror/github.com/google/protobuf/archive/d7e943b8d2bc444a8c770644e73d090b486f8b37.tar.gz",
"https://github.com/google/protobuf/archive/d7e943b8d2bc444a8c770644e73d090b486f8b37.tar.gz",
"https://storage.googleapis.com/grpc-bazel-mirror/github.com/google/protobuf/archive/436bd7880e458532901c58f4d9d1ea23fa7edd52.tar.gz",
"https://github.com/google/protobuf/archive/436bd7880e458532901c58f4d9d1ea23fa7edd52.tar.gz",
],
patches = ["@com_github_grpc_grpc//third_party:protobuf.patch"],
patch_args = ["-p1"],

@ -15,7 +15,7 @@ settings:
core_version: 16.0.0
csharp_major_version: 2
g_stands_for: guadalupe_river_park_conservancy
protobuf_version: 3.15.2
protobuf_version: 3.15.8
version: 1.38.0-dev
targets:
- name: check_epollexclusive

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Protobuf-C++'
s.version = '3.15.2'
s.version = '3.15.8'
s.summary = 'Protocol Buffers v3 runtime library for C++.'
s.homepage = 'https://github.com/google/protobuf'
s.license = '3-Clause BSD License'

@ -2,6 +2,6 @@
<Project>
<PropertyGroup>
<GrpcCsharpVersion>2.38.0-dev</GrpcCsharpVersion>
<GoogleProtobufVersion>3.15.2</GoogleProtobufVersion>
<GoogleProtobufVersion>3.15.8</GoogleProtobufVersion>
</PropertyGroup>
</Project>

@ -100,7 +100,7 @@ Pod::Spec.new do |s|
s.preserve_paths = plugin
# Restrict the protoc version to the one supported by this plugin.
s.dependency '!ProtoCompiler', '3.15.2'
s.dependency '!ProtoCompiler', '3.15.8'
# For the Protobuf dependency not to complain:
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'

@ -102,7 +102,7 @@ Pod::Spec.new do |s|
s.preserve_paths = plugin
# Restrict the protoc version to the one supported by this plugin.
s.dependency '!ProtoCompiler', '3.15.2'
s.dependency '!ProtoCompiler', '3.15.8'
# For the Protobuf dependency not to complain:
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'

@ -36,7 +36,7 @@ Pod::Spec.new do |s|
# exclamation mark ensures that other "regular" pods will be able to find it as it'll be installed
# before them.
s.name = '!ProtoCompiler'
v = '3.15.2'
v = '3.15.8'
s.version = v
s.summary = 'The Protobuf Compiler (protoc) generates Objective-C files from .proto files'
s.description = <<-DESC

@ -23,7 +23,7 @@ module Math
module Math
class Service
include GRPC::GenericService
include ::GRPC::GenericService
self.marshal_class_method = :encode
self.unmarshal_class_method = :decode

@ -28,7 +28,7 @@ module Grpc
module Health
class Service
include GRPC::GenericService
include ::GRPC::GenericService
self.marshal_class_method = :encode
self.unmarshal_class_method = :decode

@ -29,7 +29,7 @@ module Grpc
# performance with various types of payload.
class Service
include GRPC::GenericService
include ::GRPC::GenericService
self.marshal_class_method = :encode
self.unmarshal_class_method = :decode
@ -70,7 +70,7 @@ module Grpc
# that case.
class Service
include GRPC::GenericService
include ::GRPC::GenericService
self.marshal_class_method = :encode
self.unmarshal_class_method = :decode
@ -86,7 +86,7 @@ module Grpc
# A service used to control reconnect server.
class Service
include GRPC::GenericService
include ::GRPC::GenericService
self.marshal_class_method = :encode
self.unmarshal_class_method = :decode
@ -102,7 +102,7 @@ module Grpc
# A service used to obtain stats for verifying LB behavior.
class Service
include GRPC::GenericService
include ::GRPC::GenericService
self.marshal_class_method = :encode
self.unmarshal_class_method = :decode
@ -120,7 +120,7 @@ module Grpc
# A service to remotely control health status of an xDS test server.
class Service
include GRPC::GenericService
include ::GRPC::GenericService
self.marshal_class_method = :encode
self.unmarshal_class_method = :decode
@ -136,7 +136,7 @@ module Grpc
# A service to dynamically update the configuration of an xDS test client.
class Service
include GRPC::GenericService
include ::GRPC::GenericService
self.marshal_class_method = :encode
self.unmarshal_class_method = :decode

@ -26,7 +26,7 @@ module Grpc
module BenchmarkService
class Service
include GRPC::GenericService
include ::GRPC::GenericService
self.marshal_class_method = :encode
self.unmarshal_class_method = :decode

@ -26,7 +26,7 @@ module Grpc
module ReportQpsScenarioService
class Service
include GRPC::GenericService
include ::GRPC::GenericService
self.marshal_class_method = :encode
self.unmarshal_class_method = :decode

@ -26,7 +26,7 @@ module Grpc
module WorkerService
class Service
include GRPC::GenericService
include ::GRPC::GenericService
self.marshal_class_method = :encode
self.unmarshal_class_method = :decode

@ -1 +1 @@
Subproject commit d7e943b8d2bc444a8c770644e73d090b486f8b37
Subproject commit 436bd7880e458532901c58f4d9d1ea23fa7edd52

@ -5,7 +5,7 @@ index 97ac28028..8b7585d9d 100644
@@ -31,3 +31,9 @@
# Copyright 2007 Google Inc. All Rights Reserved.
__version__ = '3.15.2'
__version__ = '3.15.8'
+
+if __name__ != '__main__':
+ try:

@ -15,4 +15,4 @@
# AUTO-GENERATED FROM `$REPO_ROOT/templates/tools/distrib/python/grpcio_tools/grpc_version.py.template`!!!
VERSION = '1.38.0.dev0'
PROTOBUF_VERSION = '3.15.2'
PROTOBUF_VERSION = '3.15.8'

@ -15,4 +15,4 @@
# AUTO-GENERATED FROM `$REPO_ROOT/templates/tools/distrib/python/grpcio_tools/grpc_version.py.template`!!!
VERSION = '1.38.0.dev0'
PROTOBUF_VERSION = '3.15.2'
PROTOBUF_VERSION = '3.15.8'

@ -20,4 +20,4 @@ PROTO_FILES=['google/protobuf/wrappers.proto', 'google/protobuf/type.proto', 'go
CC_INCLUDE='third_party/protobuf/src'
PROTO_INCLUDE='third_party/protobuf/src'
PROTOBUF_SUBMODULE_VERSION="d7e943b8d2bc444a8c770644e73d090b486f8b37"
PROTOBUF_SUBMODULE_VERSION="436bd7880e458532901c58f4d9d1ea23fa7edd52"

@ -36,7 +36,7 @@ third_party/googleapis 82944da21578a53b74e547774cf62ed31a05b841
third_party/googletest c9ccac7cb7345901884aabf5d1a786cfa6e2f397
third_party/libuv 15ae750151ac9341e5945eb38f8982d59fb99201
third_party/opencensus-proto 4aa53e15cbf1a47bc9087e6cfdca214c1eea4e89
third_party/protobuf d7e943b8d2bc444a8c770644e73d090b486f8b37
third_party/protobuf 436bd7880e458532901c58f4d9d1ea23fa7edd52
third_party/protoc-gen-validate 872b28c457822ed9c2a5405da3c33f386ac0e86f
third_party/re2 aecba11114cf1fac5497aeb844b6966106de3eb6
third_party/udpa cc1b757b3eddccaaaf0743cbb107742bb7e3ee4f

Loading…
Cancel
Save