diff --git a/.changes/1.34.57.json b/.changes/1.34.57.json new file mode 100644 index 0000000000..98ea274df7 --- /dev/null +++ b/.changes/1.34.57.json @@ -0,0 +1,32 @@ +[ + { + "category": "``dynamodb``", + "description": "[``botocore``] Doc only updates for DynamoDB documentation", + "type": "api-change" + }, + { + "category": "``imagebuilder``", + "description": "[``botocore``] Add PENDING status to Lifecycle Execution resource status. Add StartTime and EndTime to ListLifecycleExecutionResource API response.", + "type": "api-change" + }, + { + "category": "``mwaa``", + "description": "[``botocore``] Amazon MWAA adds support for Apache Airflow v2.8.1.", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] Updated the input of CreateDBCluster and ModifyDBCluster to support setting CA certificates. Updated the output of DescribeDBCluster to show current CA certificate setting value.", + "type": "api-change" + }, + { + "category": "``redshift``", + "description": "[``botocore``] Update for documentation only. Covers port ranges, definition updates for data sharing, and definition updates to cluster-snapshot documentation.", + "type": "api-change" + }, + { + "category": "``verifiedpermissions``", + "description": "[``botocore``] Deprecating details in favor of configuration for GetIdentitySource and ListIdentitySources APIs.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 60c47fb3c7..0ae2a86d27 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.34.57 +======= + +* api-change:``dynamodb``: [``botocore``] Doc only updates for DynamoDB documentation +* api-change:``imagebuilder``: [``botocore``] Add PENDING status to Lifecycle Execution resource status. Add StartTime and EndTime to ListLifecycleExecutionResource API response. +* api-change:``mwaa``: [``botocore``] Amazon MWAA adds support for Apache Airflow v2.8.1. +* api-change:``rds``: [``botocore``] Updated the input of CreateDBCluster and ModifyDBCluster to support setting CA certificates. Updated the output of DescribeDBCluster to show current CA certificate setting value. +* api-change:``redshift``: [``botocore``] Update for documentation only. Covers port ranges, definition updates for data sharing, and definition updates to cluster-snapshot documentation. +* api-change:``verifiedpermissions``: [``botocore``] Deprecating details in favor of configuration for GetIdentitySource and ListIdentitySources APIs. + + 1.34.56 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 7a32da59a9..48946ab388 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.56' +__version__ = '1.34.57' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 977c7fa3cd..6703d07241 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.56,<1.35.0 + botocore>=1.34.57,<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 19e650f6a0..c58216166a 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.56,<1.35.0', + 'botocore>=1.34.57,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]