Skip to content
This repository has been archived by the owner on Dec 8, 2021. It is now read-only.

chore: upgrade grpc to v1.26.0 #1167

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions bazel/google_cloud_cpp_spanner_deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ def google_cloud_cpp_spanner_deps():
if "com_github_grpc_grpc" not in native.existing_rules():
http_archive(
name = "com_github_grpc_grpc",
strip_prefix = "grpc-1.24.2",
strip_prefix = "grpc-1.26.0",
urls = [
"https://github.com/grpc/grpc/archive/v1.24.2.tar.gz",
"https://mirror.bazel.build/github.com/grpc/grpc/archive/v1.24.2.tar.gz",
"https://github.com/grpc/grpc/archive/v1.26.0.tar.gz",
"https://mirror.bazel.build/github.com/grpc/grpc/archive/v1.26.0.tar.gz",
],
sha256 = "fd040f5238ff1e32b468d9d38e50f0d7f8da0828019948c9001e9a03093e1d8f",
sha256 = "2fcb7f1ab160d6fd3aaade64520be3e5446fc4c6fa7ba6581afdc4e26094bd81",
)

# We use the cc_proto_library() rule from @com_google_protobuf, which
Expand Down
4 changes: 2 additions & 2 deletions super/external/grpc.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ if (NOT TARGET grpc-project)
# Give application developers a hook to configure the version and hash
# downloaded from GitHub.
set(GOOGLE_CLOUD_CPP_GRPC_URL
"https://github.com/grpc/grpc/archive/v1.24.3.tar.gz")
"https://github.com/grpc/grpc/archive/v1.26.0.tar.gz")
set(GOOGLE_CLOUD_CPP_GRPC_SHA256
"c84b3fa140fcd6cce79b3f9de6357c5733a0071e04ca4e65ba5f8d306f10f033")
"2fcb7f1ab160d6fd3aaade64520be3e5446fc4c6fa7ba6581afdc4e26094bd81")

set_external_project_build_parallel_level(PARALLEL)
set_external_project_vars()
Expand Down