diff --git a/.changes/1.32.7.json b/.changes/1.32.7.json new file mode 100644 index 000000000000..dcbaa56c4871 --- /dev/null +++ b/.changes/1.32.7.json @@ -0,0 +1,42 @@ +[ + { + "category": "``bedrock-agent``", + "description": "Adding Claude 2.1 support to Bedrock Agents", + "type": "api-change" + }, + { + "category": "``endpoint-rules``", + "description": "Update endpoint-rules command to latest version", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "This release adds additional configurations for Query Session Context on the following APIs: GetUnfilteredTableMetadata, GetUnfilteredPartitionMetadata, GetUnfilteredPartitionsMetadata.", + "type": "api-change" + }, + { + "category": "``lakeformation``", + "description": "This release adds additional configurations on GetTemporaryGlueTableCredentials for Query Session Context.", + "type": "api-change" + }, + { + "category": "``mediaconnect``", + "description": "This release adds the DescribeSourceMetadata API. This API can be used to view the stream information of the flow's source.", + "type": "api-change" + }, + { + "category": "``networkmonitor``", + "description": "CloudWatch Network Monitor is a new service within CloudWatch that will help network administrators and operators continuously monitor network performance metrics such as round-trip-time and packet loss between their AWS-hosted applications and their on-premises locations.", + "type": "api-change" + }, + { + "category": "``omics``", + "description": "Provides minor corrections and an updated description of APIs.", + "type": "api-change" + }, + { + "category": "``secretsmanager``", + "description": "Update endpoint rules and examples.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b298bf37b710..7deb588420a5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ CHANGELOG ========= +1.32.7 +====== + +* api-change:``bedrock-agent``: Adding Claude 2.1 support to Bedrock Agents +* api-change:``endpoint-rules``: Update endpoint-rules command to latest version +* api-change:``glue``: This release adds additional configurations for Query Session Context on the following APIs: GetUnfilteredTableMetadata, GetUnfilteredPartitionMetadata, GetUnfilteredPartitionsMetadata. +* api-change:``lakeformation``: This release adds additional configurations on GetTemporaryGlueTableCredentials for Query Session Context. +* api-change:``mediaconnect``: This release adds the DescribeSourceMetadata API. This API can be used to view the stream information of the flow's source. +* api-change:``networkmonitor``: CloudWatch Network Monitor is a new service within CloudWatch that will help network administrators and operators continuously monitor network performance metrics such as round-trip-time and packet loss between their AWS-hosted applications and their on-premises locations. +* api-change:``omics``: Provides minor corrections and an updated description of APIs. +* api-change:``secretsmanager``: Update endpoint rules and examples. + + 1.32.6 ====== diff --git a/awscli/__init__.py b/awscli/__init__.py index fcbfe77a98a5..bdef79270aac 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.32.6' +__version__ = '1.32.7' # # Get our data path to be added to botocore's search path diff --git a/awscli/customizations/argrename.py b/awscli/customizations/argrename.py index fb720af4490a..0ce0c6a0d8ac 100644 --- a/awscli/customizations/argrename.py +++ b/awscli/customizations/argrename.py @@ -108,6 +108,9 @@ 'ecs.execute-command.no-interactive': 'non-interactive', 'controltower.create-landing-zone.version': 'landing-zone-version', 'controltower.update-landing-zone.version': 'landing-zone-version', + 'glue.get-unfiltered-partition-metadata.region': 'resource-region', + 'glue.get-unfiltered-partitions-metadata.region': 'resource-region', + 'glue.get-unfiltered-table-metadata.region': 'resource-region', } # Same format as ARGUMENT_RENAMES, but instead of renaming the arguments, diff --git a/doc/source/conf.py b/doc/source/conf.py index 71b02cb22951..3b9e063b9602 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.32' # The full version, including alpha/beta/rc tags. -release = '1.32.6' +release = '1.32.7' # 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 8153110bd160..c187f1847bf3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.34.6 + botocore==1.34.7 docutils>=0.10,<0.17 s3transfer>=0.10.0,<0.11.0 PyYAML>=3.10,<6.1 diff --git a/setup.py b/setup.py index 59e96f5cbde5..296aa3debab7 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.34.6', + 'botocore==1.34.7', 'docutils>=0.10,<0.17', 's3transfer>=0.10.0,<0.11.0', 'PyYAML>=3.10,<6.1',