upgrade aws-sdk-cpp to 1.5.8 in order to pick up

the auth retry changeset that landed in that version
This commit is contained in:
Taylor Thornton 2018-12-18 22:19:59 -08:00 committed by Taylor Thornton
parent c2dfcd9cea
commit d489a943a0
2 changed files with 12 additions and 4 deletions

View File

@ -80,6 +80,11 @@ cc_library(
deps = [
"@curl",
],
copts = [
"-DAWS_SDK_VERSION_MAJOR=1",
"-DAWS_SDK_VERSION_MINOR=5",
"-DAWS_SDK_VERSION_PATCH=8"
],
)
template_rule(

View File

@ -2,14 +2,17 @@
load("//third_party:repo.bzl", "third_party_http_archive")
# NOTE: version updates here should also update the major, minor, and patch variables declared in
# the copts field of the //third_party/aws:aws target
def repo():
third_party_http_archive(
name = "aws",
urls = [
"https://mirror.bazel.build/github.com/aws/aws-sdk-cpp/archive/1.3.15.tar.gz",
"https://github.com/aws/aws-sdk-cpp/archive/1.3.15.tar.gz",
"https://mirror.bazel.build/github.com/aws/aws-sdk-cpp/archive/1.5.8.tar.gz",
"https://github.com/aws/aws-sdk-cpp/archive/1.5.8.tar.gz",
],
sha256 = "b888d8ce5fc10254c3dd6c9020c7764dd53cf39cf011249d0b4deda895de1b7c",
strip_prefix = "aws-sdk-cpp-1.3.15",
sha256 = "89905075fe50aa13e0337ff905c2e8c1ce9caf77a3504484a7cda39179120ffc",
strip_prefix = "aws-sdk-cpp-1.5.8",
build_file = "//third_party/aws:BUILD.bazel",
)