From 338120966fab0b5cf6ec8f43780e2f887b50552a Mon Sep 17 00:00:00 2001 From: David Ostrovsky Date: Tue, 26 Mar 2019 21:56:32 +0100 Subject: [PATCH] Update protobuf version to 3.7.1 In: [1] the prerequisites were added to rules_closure for protobuf upgrade to the version 3.7.0: * Dependency on bazel_skylib * Dependency on zlib In this change the protobuf version is updated to 3.7.1. [1] https://github.com/bazelbuild/rules_closure/pull/341 --- closure/repositories.bzl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/closure/repositories.bzl b/closure/repositories.bzl index 3531a973f7..0b22e83fa7 100644 --- a/closure/repositories.bzl +++ b/closure/repositories.bzl @@ -676,23 +676,23 @@ def com_google_jsinterop_annotations(): def com_google_protobuf(): http_archive( name = "com_google_protobuf", - strip_prefix = "protobuf-3.6.1.3", - sha256 = "73fdad358857e120fd0fa19e071a96e15c0f23bb25f85d3f7009abfd4f264a2a", + strip_prefix = "protobuf-3.7.1", + sha256 = "f1748989842b46fa208b2a6e4e2785133cfcc3e4d43c17fecb023733f0f5443f", urls = [ - "https://mirror.bazel.build/github.com/google/protobuf/archive/v3.6.1.3.tar.gz", - "https://github.com/protocolbuffers/protobuf/archive/v3.6.1.3.tar.gz", + "https://mirror.bazel.build/github.com/google/protobuf/archive/v3.7.1.tar.gz", + "https://github.com/protocolbuffers/protobuf/archive/v3.7.1.tar.gz", ], ) def com_google_protobuf_js(): http_archive( name = "com_google_protobuf_js", - strip_prefix = "protobuf-3.6.1.3/js", + strip_prefix = "protobuf-3.7.1/js", urls = [ - "https://mirror.bazel.build/github.com/google/protobuf/archive/v3.6.1.3.tar.gz", - "https://github.com/protocolbuffers/protobuf/archive/v3.6.1.3.tar.gz", + "https://mirror.bazel.build/github.com/google/protobuf/archive/v3.7.1.tar.gz", + "https://github.com/protocolbuffers/protobuf/archive/v3.7.1.tar.gz", ], - sha256 = "73fdad358857e120fd0fa19e071a96e15c0f23bb25f85d3f7009abfd4f264a2a", + sha256 = "f1748989842b46fa208b2a6e4e2785133cfcc3e4d43c17fecb023733f0f5443f", build_file = str(Label("//closure/protobuf:protobuf_js.BUILD")), )