diff --git a/.changes/1.27.154.json b/.changes/1.27.154.json new file mode 100644 index 000000000000..24620389026e --- /dev/null +++ b/.changes/1.27.154.json @@ -0,0 +1,22 @@ +[ + { + "category": "``auditmanager``", + "description": "This release introduces 2 Audit Manager features: CSV exports and new manual evidence options. You can now export your evidence finder results in CSV format. In addition, you can now add manual evidence to a control by entering free-form text or uploading a file from your browser.", + "type": "api-change" + }, + { + "category": "``efs``", + "description": "Update efs command to latest version", + "type": "api-change" + }, + { + "category": "``guardduty``", + "description": "Updated descriptions for some APIs.", + "type": "api-change" + }, + { + "category": "``location``", + "description": "Amazon Location Service adds categories to places, including filtering on those categories in searches. Also, you can now add metadata properties to your geofences.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7c56a181c786..465a1fd2039c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.27.154 +======== + +* api-change:``auditmanager``: This release introduces 2 Audit Manager features: CSV exports and new manual evidence options. You can now export your evidence finder results in CSV format. In addition, you can now add manual evidence to a control by entering free-form text or uploading a file from your browser. +* api-change:``efs``: Update efs command to latest version +* api-change:``guardduty``: Updated descriptions for some APIs. +* api-change:``location``: Amazon Location Service adds categories to places, including filtering on those categories in searches. Also, you can now add metadata properties to your geofences. + + 1.27.153 ======== diff --git a/awscli/__init__.py b/awscli/__init__.py index e649fa26b21a..03f02da247d5 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.27.153' +__version__ = '1.27.154' # # 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 cb652a74fc59..15edfc789b4b 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.153' +release = '1.27.154' # 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 22c7b4268999..5e900605f7e0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.29.153 + botocore==1.29.154 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 f4e9b0adbfd3..1c0af9e92dab 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.29.153', + 'botocore==1.29.154', 'docutils>=0.10,<0.17', 's3transfer>=0.6.0,<0.7.0', 'PyYAML>=3.10,<5.5',