From acafc87343bcba737b75861d3a4064ff00b876df Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 14 Apr 2021 19:29:42 +0000 Subject: [PATCH] Bumping version to 1.17.52 --- .changes/1.17.52.json | 22 +++++++++++++++++++ .../api-change-codestarconnections-22205.json | 5 ----- .../next-release/api-change-config-20184.json | 5 ----- .../api-change-mediaconnect-34228.json | 5 ----- .../api-change-route53-14550.json | 5 ----- CHANGELOG.rst | 9 ++++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 9 files changed, 34 insertions(+), 23 deletions(-) create mode 100644 .changes/1.17.52.json delete mode 100644 .changes/next-release/api-change-codestarconnections-22205.json delete mode 100644 .changes/next-release/api-change-config-20184.json delete mode 100644 .changes/next-release/api-change-mediaconnect-34228.json delete mode 100644 .changes/next-release/api-change-route53-14550.json diff --git a/.changes/1.17.52.json b/.changes/1.17.52.json new file mode 100644 index 0000000000..d7e508774c --- /dev/null +++ b/.changes/1.17.52.json @@ -0,0 +1,22 @@ +[ + { + "category": "``mediaconnect``", + "description": "[``botocore``] For flows that use Listener protocols, you can now easily locate an output's outbound IP address for a private internet. Additionally, MediaConnect now supports the Waiters feature that makes it easier to poll for the status of a flow until it reaches its desired state.", + "type": "api-change" + }, + { + "category": "``config``", + "description": "[``botocore``] Add exception for DeleteRemediationConfiguration and DescribeRemediationExecutionStatus", + "type": "api-change" + }, + { + "category": "``route53``", + "description": "[``botocore``] Documentation updates for route53", + "type": "api-change" + }, + { + "category": "``codestar-connections``", + "description": "[``botocore``] This release adds tagging support for CodeStar Connections Host resources", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-codestarconnections-22205.json b/.changes/next-release/api-change-codestarconnections-22205.json deleted file mode 100644 index 228a89f0c8..0000000000 --- a/.changes/next-release/api-change-codestarconnections-22205.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``codestar-connections``", - "type": "api-change", - "description": "[``botocore``] This release adds tagging support for CodeStar Connections Host resources" -} diff --git a/.changes/next-release/api-change-config-20184.json b/.changes/next-release/api-change-config-20184.json deleted file mode 100644 index 92fd1ce687..0000000000 --- a/.changes/next-release/api-change-config-20184.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``config``", - "type": "api-change", - "description": "[``botocore``] Add exception for DeleteRemediationConfiguration and DescribeRemediationExecutionStatus" -} diff --git a/.changes/next-release/api-change-mediaconnect-34228.json b/.changes/next-release/api-change-mediaconnect-34228.json deleted file mode 100644 index 77bf009051..0000000000 --- a/.changes/next-release/api-change-mediaconnect-34228.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``mediaconnect``", - "type": "api-change", - "description": "[``botocore``] For flows that use Listener protocols, you can now easily locate an output's outbound IP address for a private internet. Additionally, MediaConnect now supports the Waiters feature that makes it easier to poll for the status of a flow until it reaches its desired state." -} diff --git a/.changes/next-release/api-change-route53-14550.json b/.changes/next-release/api-change-route53-14550.json deleted file mode 100644 index a966180e6f..0000000000 --- a/.changes/next-release/api-change-route53-14550.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "``route53``", - "type": "api-change", - "description": "[``botocore``] Documentation updates for route53" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 83d51461b2..277cd90bd4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.17.52 +======= + +* api-change:``mediaconnect``: [``botocore``] For flows that use Listener protocols, you can now easily locate an output's outbound IP address for a private internet. Additionally, MediaConnect now supports the Waiters feature that makes it easier to poll for the status of a flow until it reaches its desired state. +* api-change:``config``: [``botocore``] Add exception for DeleteRemediationConfiguration and DescribeRemediationExecutionStatus +* api-change:``route53``: [``botocore``] Documentation updates for route53 +* api-change:``codestar-connections``: [``botocore``] This release adds tagging support for CodeStar Connections Host resources + + 1.17.51 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 2e18b04b07..41e5bf230d 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.17.51' +__version__ = '1.17.52' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index a951b8f978..93d1bb14ec 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 1 [metadata] requires_dist = - botocore>=1.20.51,<1.21.0 + botocore>=1.20.52,<1.21.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.3.0,<0.4.0 diff --git a/setup.py b/setup.py index 55c8a39faa..6a0d71666c 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.20.51,<1.21.0', + 'botocore>=1.20.52,<1.21.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.3.0,<0.4.0' ]