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/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',