From ebe6d8f10f19f155b7f4a3e4165b59fab45b9748 Mon Sep 17 00:00:00 2001 From: "Daniel G. Taylor" Date: Thu, 19 Feb 2015 16:05:02 -0800 Subject: [PATCH 1/2] Update Botocore dependency --- CHANGELOG.rst | 19 +++++++++++++++++++ setup.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 565d9e4cb4..25bf1d6434 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,25 @@ Changelog ========= +Unreleased +---------- + +* feature:Botocore: Update to Botocore 0.92.0 + + * Add support for the latest Amazon EC2 Container Service API. + * Allow calling AWS STS ``assume_role_with_saml`` without credentials. + * Update to latest Amazon CloudFront API + * Add support for AWS STS regionalized calls by passing both a region + name and an endpoint URL. + (`botocore issue 464 `__) + * Add support for Amazon Simple Systems Management Service (SSM) + * Fix Amazon S3 auth errors when uploading large files + to the ``eu-central-1`` and ``cn-north-1`` regions. + (`botocore issue 462 `__) + * Add support for AWS IAM managed policies + * Add support for Amazon ElastiCache tagging + * Add support for Amazon Route53 Domains tagging of domains + 0.0.8 - 2015-02-10 ------------------ diff --git a/setup.py b/setup.py index 85a39d153b..6e027ed336 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def get_version(): ] requires = [ - 'botocore==0.87.0', + 'botocore==0.92.0', 'bcdoc==0.12.2', 'jmespath==0.6.1', ] From 398985230e8bd2f08a8407474cc4cd1c0467533f Mon Sep 17 00:00:00 2001 From: "Daniel G. Taylor" Date: Thu, 19 Feb 2015 16:05:19 -0800 Subject: [PATCH 2/2] Bump version to 0.0.9 --- boto3/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boto3/__init__.py b/boto3/__init__.py index 3b3becedc4..78a0b2c8c7 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ __author__ = 'Amazon Web Services' -__version__ = '0.0.8' +__version__ = '0.0.9' # The default Boto3 session; autoloaded when needed.