aboutsummaryrefslogtreecommitdiff
path: root/cc/tink_cc_deps.bzl
diff options
context:
space:
mode:
authorjuerg <juerg@google.com>2020-06-25 04:35:30 -0700
committerCopybara-Service <copybara-worker@google.com>2020-06-25 04:36:01 -0700
commit5c23269eb07149ff51a3630b15c30b3342c8ddff (patch)
tree08bc7678ac26f8dba889e3c746eefdc256980d93 /cc/tink_cc_deps.bzl
parent7cb9fb903703bf02d268c3807bd81ca71b0ad317 (diff)
downloadtink-5c23269eb07149ff51a3630b15c30b3342c8ddff.tar.gz
Upgrade to grpc v1.29.
PiperOrigin-RevId: 318246356
Diffstat (limited to 'cc/tink_cc_deps.bzl')
-rw-r--r--cc/tink_cc_deps.bzl17
1 files changed, 8 insertions, 9 deletions
diff --git a/cc/tink_cc_deps.bzl b/cc/tink_cc_deps.bzl
index 9404a86a2..226cbefa7 100644
--- a/cc/tink_cc_deps.bzl
+++ b/cc/tink_cc_deps.bzl
@@ -139,23 +139,22 @@ def tink_cc_deps():
# gRPC.
if not native.existing_rule("com_github_grpc_grpc"):
- # Release from 2019-12-05
- # Using the pre-release version due to https://github.com/grpc/grpc/issues/20511
+ # Release from 2020-05-21
http_archive(
name = "com_github_grpc_grpc",
- url = "https://github.com/grpc/grpc/archive/v1.26.0-pre1.tar.gz",
- sha256 = "d6af0859d3ae4693b1955e972aa2e590d6f4d44baaa82651467c6beea453e30e",
- strip_prefix = "grpc-1.26.0-pre1",
+ url = "https://github.com/grpc/grpc/archive/v1.29.1.tar.gz",
+ sha256 = "0343e6dbde66e9a31c691f2f61e98d79f3584e03a11511fad3f10e3667832a45",
+ strip_prefix = "grpc-1.29.1",
)
# Not used by Java Tink, but apparently needed for C++ gRPC library.
if not native.existing_rule("io_grpc_grpc_java"):
- # Commit from 2019-05-02
+ # Release from 2020-04-22
http_archive(
name = "io_grpc_grpc_java",
- strip_prefix = "grpc-java-1.20.0",
- url = "https://github.com/grpc/grpc-java/archive/v1.20.0.tar.gz",
- sha256 = "553d1bdbde3ff4035747c184486bae2f084c75c3c4cdf5ef31a6aa48bdccaf9b",
+ strip_prefix = "grpc-java-1.29.0",
+ url = "https://github.com/grpc/grpc-java/archive/v1.29.0.zip",
+ sha256 = "446ad7a2e85bbd05406dbf95232c7c49ed90de83b3b60cb2048b0c4c9f254d29",
)
if not native.existing_rule("curl"):