diff --git a/.changes/1.27.30.json b/.changes/1.27.30.json new file mode 100644 index 000000000000..2226ce5c87f7 --- /dev/null +++ b/.changes/1.27.30.json @@ -0,0 +1,27 @@ +[ + { + "category": "``ce``", + "description": "This release supports percentage-based thresholds on Cost Anomaly Detection alert subscriptions.", + "type": "api-change" + }, + { + "category": "``cloudwatch``", + "description": "Update cloudwatch command to latest version", + "type": "api-change" + }, + { + "category": "``networkmanager``", + "description": "Appliance Mode support for AWS Cloud WAN.", + "type": "api-change" + }, + { + "category": "``redshift-data``", + "description": "This release adds a new --client-token field to ExecuteStatement and BatchExecuteStatement operations. Customers can now run queries with the additional client token parameter to ensures idempotency.", + "type": "api-change" + }, + { + "category": "``sagemaker-metrics``", + "description": "Update SageMaker Metrics documentation.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c54151bced00..37373d69e172 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,3 +13,4 @@ updates: - dependency-name: "colorama" - dependency-name: "docutils" - dependency-name: "cryptography" + - dependency-name: "awscrt" diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bd5440e2f409..d88204794d59 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.27.30 +======= + +* api-change:``ce``: This release supports percentage-based thresholds on Cost Anomaly Detection alert subscriptions. +* api-change:``cloudwatch``: Update cloudwatch command to latest version +* api-change:``networkmanager``: Appliance Mode support for AWS Cloud WAN. +* api-change:``redshift-data``: This release adds a new --client-token field to ExecuteStatement and BatchExecuteStatement operations. Customers can now run queries with the additional client token parameter to ensures idempotency. +* api-change:``sagemaker-metrics``: Update SageMaker Metrics documentation. + + 1.27.29 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index 793fd2ab18ad..9a764e7b49ff 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.27.29' +__version__ = '1.27.30' # # 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 ce21930f665e..71d518969e88 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.27.' # The full version, including alpha/beta/rc tags. -release = '1.27.29' +release = '1.27.30' # 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 1da35607471d..2d5eace7d264 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.29.29 + botocore==1.29.30 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 1f6199d304d9..dc7f0cf0259f 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.29.29', + 'botocore==1.29.30', 'docutils>=0.10,<0.17', 's3transfer>=0.6.0,<0.7.0', 'PyYAML>=3.10,<5.5',