diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fb227d990b..8b212b84f2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,24 @@ Changelog ========= +Unreleased +---------- + +* feature: Add support for batch actions on collections. + (`issue 32 `__) +* feature: Update to Botocore 0.78.0 + + * Add support for Amazon Simple Queue Service purge queue which allows + users to delete the messages in their queue. + * Add AWS OpsWorks support for registering and assigning existing Amazon + EC2 instances and on-premises servers. + * Fix issue with expired signatures when retrying failed requests + (`botocore issue 399 `__) + * Port Route53 resource ID customizations from AWS CLI to Botocore. + (`botocore issue 398 `__) + * Fix handling of blob type serialization for JSON services. + (`botocore issue 397 `__) + 0.0.4 - 2014-12-04 ------------------ @@ -16,7 +34,7 @@ Changelog * Add support for updating the comment of a Route53 hosted zone. * Fix base64 serialization for JSON protocol services. * Fix issue where certain timestamps were not being accepted as valid input - (`botocore issue 389 `__) + (`botocore issue 389 `__) * feature: Update `Amazon EC2 `_ resource model. * feature: Support `belongsTo` resource reference as well as `path` diff --git a/setup.py b/setup.py index 5c4b5dba27..2b226b0e18 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def get_version(): ] requires = [ - 'botocore==0.77.0', + 'botocore==0.78.0', 'bcdoc==0.12.2', 'jmespath==0.5.0', 'six==1.7.3',