diff --git a/.changes/1.34.7.json b/.changes/1.34.7.json new file mode 100644 index 0000000000..7713e6b2e6 --- /dev/null +++ b/.changes/1.34.7.json @@ -0,0 +1,42 @@ +[ + { + "category": "``bedrock-agent``", + "description": "[``botocore``] Adding Claude 2.1 support to Bedrock Agents", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "[``botocore``] This release adds additional configurations for Query Session Context on the following APIs: GetUnfilteredTableMetadata, GetUnfilteredPartitionMetadata, GetUnfilteredPartitionsMetadata.", + "type": "api-change" + }, + { + "category": "``lakeformation``", + "description": "[``botocore``] This release adds additional configurations on GetTemporaryGlueTableCredentials for Query Session Context.", + "type": "api-change" + }, + { + "category": "``mediaconnect``", + "description": "[``botocore``] 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": "[``botocore``] 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": "[``botocore``] Provides minor corrections and an updated description of APIs.", + "type": "api-change" + }, + { + "category": "``secretsmanager``", + "description": "[``botocore``] Update endpoint rules and examples.", + "type": "api-change" + }, + { + "category": "``endpoint-rules``", + "description": "[``botocore``] Update endpoint-rules client to latest version", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7e03875b92..1b410decb5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ CHANGELOG ========= +1.34.7 +====== + +* api-change:``bedrock-agent``: [``botocore``] Adding Claude 2.1 support to Bedrock Agents +* api-change:``glue``: [``botocore``] This release adds additional configurations for Query Session Context on the following APIs: GetUnfilteredTableMetadata, GetUnfilteredPartitionMetadata, GetUnfilteredPartitionsMetadata. +* api-change:``lakeformation``: [``botocore``] This release adds additional configurations on GetTemporaryGlueTableCredentials for Query Session Context. +* api-change:``mediaconnect``: [``botocore``] This release adds the DescribeSourceMetadata API. This API can be used to view the stream information of the flow's source. +* api-change:``networkmonitor``: [``botocore``] 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``: [``botocore``] Provides minor corrections and an updated description of APIs. +* api-change:``secretsmanager``: [``botocore``] Update endpoint rules and examples. +* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version + + 1.34.6 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index 9cd930bbd9..ee7f5b94f1 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.34.6' +__version__ = '1.34.7' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index f0db0373d2..4c7879613e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.6,<1.35.0 + botocore>=1.34.7,<1.35.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index e5ca3f7fdd..43ba83c04b 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.6,<1.35.0', + 'botocore>=1.34.7,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]