Skip to content

Commit

Permalink
Update protobuf version to 3.7.1 (bazelbuild#344)
Browse files Browse the repository at this point in the history
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] bazelbuild#341
  • Loading branch information
davido authored and ptmphuong committed Dec 9, 2022
1 parent 0c044cd commit a5e092e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions closure/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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")),
)

Expand Down

0 comments on commit a5e092e

Please sign in to comment.