From 0d8db114751742e9296cd6545c0d12ed66589e8a Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 23 Oct 2023 18:16:35 +0000 Subject: [PATCH] Bumping version to 1.29.69 --- .changes/1.29.69.json | 22 +++++++++++++++++++ ...ge-marketplacecommerceanalytics-55460.json | 5 ----- .../api-change-networkmanager-20600.json | 5 ----- .../api-change-redshiftserverless-7923.json | 5 ----- .../api-change-rekognition-31008.json | 5 ----- CHANGELOG.rst | 9 ++++++++ awscli/__init__.py | 2 +- doc/source/conf.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 10 files changed, 35 insertions(+), 24 deletions(-) create mode 100644 .changes/1.29.69.json delete mode 100644 .changes/next-release/api-change-marketplacecommerceanalytics-55460.json delete mode 100644 .changes/next-release/api-change-networkmanager-20600.json delete mode 100644 .changes/next-release/api-change-redshiftserverless-7923.json delete mode 100644 .changes/next-release/api-change-rekognition-31008.json diff --git a/.changes/1.29.69.json b/.changes/1.29.69.json new file mode 100644 index 000000000000..dc81c180eea5 --- /dev/null +++ b/.changes/1.29.69.json @@ -0,0 +1,22 @@ +[ + { + "category": "``marketplacecommerceanalytics``", + "description": "The StartSupportDataExport operation has been deprecated as part of the Product Support Connection deprecation. As of December 2022, Product Support Connection is no longer supported.", + "type": "api-change" + }, + { + "category": "``networkmanager``", + "description": "This release adds API support for Tunnel-less Connect (NoEncap Protocol) for AWS Cloud WAN", + "type": "api-change" + }, + { + "category": "``redshift-serverless``", + "description": "This release adds support for customers to see the patch version and workgroup version in Amazon Redshift Serverless.", + "type": "api-change" + }, + { + "category": "``rekognition``", + "description": "Amazon Rekognition introduces StartMediaAnalysisJob, GetMediaAnalysisJob, and ListMediaAnalysisJobs operations to run a bulk analysis of images with a Detect Moderation model.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-marketplacecommerceanalytics-55460.json b/.changes/next-release/api-change-marketplacecommerceanalytics-55460.json deleted file mode 100644 index 9e0bf09dd15b..000000000000 --- a/.changes/next-release/api-change-marketplacecommerceanalytics-55460.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``marketplacecommerceanalytics``", - "description": "The StartSupportDataExport operation has been deprecated as part of the Product Support Connection deprecation. As of December 2022, Product Support Connection is no longer supported." -} diff --git a/.changes/next-release/api-change-networkmanager-20600.json b/.changes/next-release/api-change-networkmanager-20600.json deleted file mode 100644 index 1bc39a75e1b5..000000000000 --- a/.changes/next-release/api-change-networkmanager-20600.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``networkmanager``", - "description": "This release adds API support for Tunnel-less Connect (NoEncap Protocol) for AWS Cloud WAN" -} diff --git a/.changes/next-release/api-change-redshiftserverless-7923.json b/.changes/next-release/api-change-redshiftserverless-7923.json deleted file mode 100644 index 3c8eabb81f1b..000000000000 --- a/.changes/next-release/api-change-redshiftserverless-7923.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``redshift-serverless``", - "description": "This release adds support for customers to see the patch version and workgroup version in Amazon Redshift Serverless." -} diff --git a/.changes/next-release/api-change-rekognition-31008.json b/.changes/next-release/api-change-rekognition-31008.json deleted file mode 100644 index eaceeaa5e706..000000000000 --- a/.changes/next-release/api-change-rekognition-31008.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``rekognition``", - "description": "Amazon Rekognition introduces StartMediaAnalysisJob, GetMediaAnalysisJob, and ListMediaAnalysisJobs operations to run a bulk analysis of images with a Detect Moderation model." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ce3eb5a6840d..e552bdcee176 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.29.69 +======= + +* api-change:``marketplacecommerceanalytics``: The StartSupportDataExport operation has been deprecated as part of the Product Support Connection deprecation. As of December 2022, Product Support Connection is no longer supported. +* api-change:``networkmanager``: This release adds API support for Tunnel-less Connect (NoEncap Protocol) for AWS Cloud WAN +* api-change:``redshift-serverless``: This release adds support for customers to see the patch version and workgroup version in Amazon Redshift Serverless. +* api-change:``rekognition``: Amazon Rekognition introduces StartMediaAnalysisJob, GetMediaAnalysisJob, and ListMediaAnalysisJobs operations to run a bulk analysis of images with a Detect Moderation model. + + 1.29.68 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index 6ac60e4965a5..419af414aaaf 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.29.68' +__version__ = '1.29.69' # # Get our data path to be added to botocore's search path diff --git a/doc/source/conf.py b/doc/source/conf.py index 6b6291171934..29af716f7de9 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.29.' # The full version, including alpha/beta/rc tags. -release = '1.29.68' +release = '1.29.69' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index 204bbb095a0c..1fdfa7895d76 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.31.68 + botocore==1.31.69 docutils>=0.10,<0.17 s3transfer>=0.7.0,<0.8.0 PyYAML>=3.10,<6.1 diff --git a/setup.py b/setup.py index 29a0340242aa..498b04036c94 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.31.68', + 'botocore==1.31.69', 'docutils>=0.10,<0.17', 's3transfer>=0.7.0,<0.8.0', 'PyYAML>=3.10,<6.1',