diff --git a/.changes/1.27.165.json b/.changes/1.27.165.json new file mode 100644 index 000000000000..6093c1edf440 --- /dev/null +++ b/.changes/1.27.165.json @@ -0,0 +1,37 @@ +[ + { + "category": "``amp``", + "description": "AWS SDK service model generation tool version upgrade.", + "type": "api-change" + }, + { + "category": "``ecs``", + "description": "Added new field \"credentialspecs\" to the ecs task definition to support gMSA of windows/linux in both domainless and domain-joined mode", + "type": "api-change" + }, + { + "category": "``ivs``", + "description": "Corrects the HTTP response code in the generated docs for PutMetadata and DeleteRecordingConfiguration APIs.", + "type": "api-change" + }, + { + "category": "``mediaconvert``", + "description": "This release includes improved color handling of overlays and general updates to user documentation.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "This release adds support for rolling deployment in SageMaker Inference.", + "type": "api-change" + }, + { + "category": "``transfer``", + "description": "Add outbound Basic authentication support to AS2 connectors", + "type": "api-change" + }, + { + "category": "``verifiedpermissions``", + "description": "This release corrects several broken links in the documentation.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a38c13cd6238..55a31c31201a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,18 @@ CHANGELOG ========= +1.27.165 +======== + +* api-change:``amp``: AWS SDK service model generation tool version upgrade. +* api-change:``ecs``: Added new field "credentialspecs" to the ecs task definition to support gMSA of windows/linux in both domainless and domain-joined mode +* api-change:``ivs``: Corrects the HTTP response code in the generated docs for PutMetadata and DeleteRecordingConfiguration APIs. +* api-change:``mediaconvert``: This release includes improved color handling of overlays and general updates to user documentation. +* api-change:``sagemaker``: This release adds support for rolling deployment in SageMaker Inference. +* api-change:``transfer``: Add outbound Basic authentication support to AS2 connectors +* api-change:``verifiedpermissions``: This release corrects several broken links in the documentation. + + 1.27.164 ======== diff --git a/awscli/__init__.py b/awscli/__init__.py index 118855b5d8d5..f7f5440cfedd 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.27.164' +__version__ = '1.27.165' # # 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 a4a8c8a8a331..f7f941489db7 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.27.1' # The full version, including alpha/beta/rc tags. -release = '1.27.164' +release = '1.27.165' # 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 15110b9f762c..6cd76d5968c7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.29.164 + botocore==1.29.165 docutils>=0.10,<0.17 s3transfer>=0.6.0,<0.7.0 PyYAML>=3.10,<5.5 diff --git a/setup.py b/setup.py index 3e80735b3f64..b7cfaacf25e5 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.29.164', + 'botocore==1.29.165', 'docutils>=0.10,<0.17', 's3transfer>=0.6.0,<0.7.0', 'PyYAML>=3.10,<5.5',