diff --git a/.changes/1.34.13.json b/.changes/1.34.13.json new file mode 100644 index 0000000000..b19f6c454c --- /dev/null +++ b/.changes/1.34.13.json @@ -0,0 +1,47 @@ +[ + { + "category": "``config``", + "description": "[``botocore``] Updated ResourceType enum with new resource types onboarded by AWS Config in November and December 2023.", + "type": "api-change" + }, + { + "category": "``docdb``", + "description": "[``botocore``] Adding PerformanceInsightsEnabled and PerformanceInsightsKMSKeyId fields to DescribeDBInstances Response.", + "type": "api-change" + }, + { + "category": "``ecs``", + "description": "[``botocore``] This release adds support for managed instance draining which facilitates graceful termination of Amazon ECS instances.", + "type": "api-change" + }, + { + "category": "``es``", + "description": "[``botocore``] This release adds support for new or existing Amazon OpenSearch domains to enable TLS 1.3 or TLS 1.2 with perfect forward secrecy cipher suites for domain endpoints.", + "type": "api-change" + }, + { + "category": "``lightsail``", + "description": "[``botocore``] This release adds support to set up an HTTPS endpoint on an instance.", + "type": "api-change" + }, + { + "category": "``opensearch``", + "description": "[``botocore``] This release adds support for new or existing Amazon OpenSearch domains to enable TLS 1.3 or TLS 1.2 with perfect forward secrecy cipher suites for domain endpoints.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] Adding support for provisioned throughput mode for SageMaker Feature Groups", + "type": "api-change" + }, + { + "category": "``servicecatalog``", + "description": "[``botocore``] Added Idempotency token support to Service Catalog AssociateServiceActionWithProvisioningArtifact, DisassociateServiceActionFromProvisioningArtifact, DeleteServiceAction API", + "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 37fe8c9d53..f0ca00aa86 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,20 @@ CHANGELOG ========= +1.34.13 +======= + +* api-change:``config``: [``botocore``] Updated ResourceType enum with new resource types onboarded by AWS Config in November and December 2023. +* api-change:``docdb``: [``botocore``] Adding PerformanceInsightsEnabled and PerformanceInsightsKMSKeyId fields to DescribeDBInstances Response. +* api-change:``ecs``: [``botocore``] This release adds support for managed instance draining which facilitates graceful termination of Amazon ECS instances. +* api-change:``es``: [``botocore``] This release adds support for new or existing Amazon OpenSearch domains to enable TLS 1.3 or TLS 1.2 with perfect forward secrecy cipher suites for domain endpoints. +* api-change:``lightsail``: [``botocore``] This release adds support to set up an HTTPS endpoint on an instance. +* api-change:``opensearch``: [``botocore``] This release adds support for new or existing Amazon OpenSearch domains to enable TLS 1.3 or TLS 1.2 with perfect forward secrecy cipher suites for domain endpoints. +* api-change:``sagemaker``: [``botocore``] Adding support for provisioned throughput mode for SageMaker Feature Groups +* api-change:``servicecatalog``: [``botocore``] Added Idempotency token support to Service Catalog AssociateServiceActionWithProvisioningArtifact, DisassociateServiceActionFromProvisioningArtifact, DeleteServiceAction API +* api-change:``endpoint-rules``: [``botocore``] Update endpoint-rules client to latest version + + 1.34.12 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index ab7afdbf1d..92359c3722 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.12' +__version__ = '1.34.13' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 968b75751a..9d1ad000e5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.12,<1.35.0 + botocore>=1.34.13,<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 c3fb02759d..54a1eafc31 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.12,<1.35.0', + 'botocore>=1.34.13,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]