From 357b1de7d85eb177a412a11da6598e5cffe83f5f Mon Sep 17 00:00:00 2001 From: Thomas Sibley Date: Tue, 10 Sep 2019 11:36:08 -0700 Subject: [PATCH] version 1.13.0 --- CHANGES.md | 12 ++++++++++++ nextstrain/cli/__version__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 6ebfd6fc..9581c5f7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,18 @@ # __NEXT__ +# 1.13.0 (10 September 2019) + +## Features + +* The `deploy` command no longer requires permission to perform the + globally-scoped AWS IAM action `s3:ListAllMyBuckets`. Instead, it uses the + `HEAD ` S3 API which requires either `s3:ListBucket`, which can be + scoped to specific buckets in IAM grants, or `s3:HeadBucket`, which is + globally-scoped but does not reveal bucket names. More details on these IAM + actions are in the [S3 documentation](https://docs.aws.amazon.com/AmazonS3/latest/dev/using-with-s3-actions.html#using-with-s3-actions-related-to-buckets). + + # 1.12.0 (5 September 2019) ## Features diff --git a/nextstrain/cli/__version__.py b/nextstrain/cli/__version__.py index 666b2f71..84c54b74 100644 --- a/nextstrain/cli/__version__.py +++ b/nextstrain/cli/__version__.py @@ -1 +1 @@ -__version__ = '1.12.0' +__version__ = '1.13.0'