diff --git a/.changes/1.27.145.json b/.changes/1.27.145.json new file mode 100644 index 000000000000..231820a9c063 --- /dev/null +++ b/.changes/1.27.145.json @@ -0,0 +1,32 @@ +[ + { + "category": "``alexaforbusiness``", + "description": "Alexa for Business has been deprecated and is no longer supported.", + "type": "api-change" + }, + { + "category": "``appflow``", + "description": "Added ability to select DataTransferApiType for DescribeConnector and CreateFlow requests when using Async supported connectors. Added supportedDataTransferType to DescribeConnector/DescribeConnectors/ListConnector response.", + "type": "api-change" + }, + { + "category": "``customer-profiles``", + "description": "This release introduces calculated attribute related APIs.", + "type": "api-change" + }, + { + "category": "``ivs``", + "description": "API Update for IVS Advanced Channel type", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "Amazon Sagemaker Autopilot adds support for Parquet file input to NLP text classification jobs.", + "type": "api-change" + }, + { + "category": "``wafv2``", + "description": "Corrected the information for the header order FieldToMatch setting", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-alexaforbusiness-95379.json b/.changes/next-release/api-change-alexaforbusiness-95379.json deleted file mode 100644 index 2c06134d989d..000000000000 --- a/.changes/next-release/api-change-alexaforbusiness-95379.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``alexaforbusiness``", - "description": "Alexa for Business has been deprecated and is no longer supported." -} diff --git a/.changes/next-release/api-change-appflow-15297.json b/.changes/next-release/api-change-appflow-15297.json deleted file mode 100644 index 41b6eedeafbb..000000000000 --- a/.changes/next-release/api-change-appflow-15297.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``appflow``", - "description": "Added ability to select DataTransferApiType for DescribeConnector and CreateFlow requests when using Async supported connectors. Added supportedDataTransferType to DescribeConnector/DescribeConnectors/ListConnector response." -} diff --git a/.changes/next-release/api-change-customerprofiles-91149.json b/.changes/next-release/api-change-customerprofiles-91149.json deleted file mode 100644 index 85a8aedef3d5..000000000000 --- a/.changes/next-release/api-change-customerprofiles-91149.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``customer-profiles``", - "description": "This release introduces calculated attribute related APIs." -} diff --git a/.changes/next-release/api-change-ivs-9249.json b/.changes/next-release/api-change-ivs-9249.json deleted file mode 100644 index a781709f18b7..000000000000 --- a/.changes/next-release/api-change-ivs-9249.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ivs``", - "description": "API Update for IVS Advanced Channel type" -} diff --git a/.changes/next-release/api-change-sagemaker-71080.json b/.changes/next-release/api-change-sagemaker-71080.json deleted file mode 100644 index 21b8ab9c99fa..000000000000 --- a/.changes/next-release/api-change-sagemaker-71080.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``sagemaker``", - "description": "Amazon Sagemaker Autopilot adds support for Parquet file input to NLP text classification jobs." -} diff --git a/.changes/next-release/api-change-wafv2-42400.json b/.changes/next-release/api-change-wafv2-42400.json deleted file mode 100644 index ccf96c4ee90d..000000000000 --- a/.changes/next-release/api-change-wafv2-42400.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``wafv2``", - "description": "Corrected the information for the header order FieldToMatch setting" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 18c0498674cb..87f1682ff858 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.27.145 +======== + +* api-change:``alexaforbusiness``: Alexa for Business has been deprecated and is no longer supported. +* api-change:``appflow``: Added ability to select DataTransferApiType for DescribeConnector and CreateFlow requests when using Async supported connectors. Added supportedDataTransferType to DescribeConnector/DescribeConnectors/ListConnector response. +* api-change:``customer-profiles``: This release introduces calculated attribute related APIs. +* api-change:``ivs``: API Update for IVS Advanced Channel type +* api-change:``sagemaker``: Amazon Sagemaker Autopilot adds support for Parquet file input to NLP text classification jobs. +* api-change:``wafv2``: Corrected the information for the header order FieldToMatch setting + + 1.27.144 ======== diff --git a/awscli/__init__.py b/awscli/__init__.py index 7cc9fd4a34e4..603eec825da5 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.27.144' +__version__ = '1.27.145' # # 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 a6137912a4f4..15d4b37c56c9 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.144' +release = '1.27.145' # 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 2a0ff2618825..f086fcc1e9d4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.29.144 + botocore==1.29.145 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 0b7bf68641d9..5da29bbb1f87 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.29.144', + 'botocore==1.29.145', 'docutils>=0.10,<0.17', 's3transfer>=0.6.0,<0.7.0', 'PyYAML>=3.10,<5.5',