diff --git a/.changes/1.26.19.json b/.changes/1.26.19.json new file mode 100644 index 0000000000..5fbfbf0664 --- /dev/null +++ b/.changes/1.26.19.json @@ -0,0 +1,37 @@ +[ + { + "category": "``ec2``", + "description": "[``botocore``] This release adds support for AWS Verified Access and the Hpc6id Amazon EC2 compute optimized instance type, which features 3rd generation Intel Xeon Scalable processors.", + "type": "api-change" + }, + { + "category": "``firehose``", + "description": "[``botocore``] Allow support for the Serverless offering for Amazon OpenSearch Service as a Kinesis Data Firehose delivery destination.", + "type": "api-change" + }, + { + "category": "``kms``", + "description": "[``botocore``] AWS KMS introduces the External Key Store (XKS), a new feature for customers who want to protect their data with encryption keys stored in an external key management system under their control.", + "type": "api-change" + }, + { + "category": "``omics``", + "description": "[``botocore``] Amazon Omics is a new, purpose-built service that can be used by healthcare and life science organizations to store, query, and analyze omics data. The insights from that data can be used to accelerate scientific discoveries and improve healthcare.", + "type": "api-change" + }, + { + "category": "``opensearchserverless``", + "description": "[``botocore``] Publish SDK for Amazon OpenSearch Serverless", + "type": "api-change" + }, + { + "category": "``securitylake``", + "description": "[``botocore``] Amazon Security Lake automatically centralizes security data from cloud, on-premises, and custom sources into a purpose-built data lake stored in your account. Security Lake makes it easier to analyze security data, so you can improve the protection of your workloads, applications, and data", + "type": "api-change" + }, + { + "category": "``simspaceweaver``", + "description": "[``botocore``] AWS SimSpace Weaver is a new service that helps customers build spatial simulations at new levels of scale - resulting in virtual worlds with millions of dynamic entities. See the AWS SimSpace Weaver developer guide for more details on how to get started. https://docs.aws.amazon.com/simspaceweaver", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 19d2a3e1f9..29f3360e1a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,18 @@ CHANGELOG ========= +1.26.19 +======= + +* api-change:``ec2``: [``botocore``] This release adds support for AWS Verified Access and the Hpc6id Amazon EC2 compute optimized instance type, which features 3rd generation Intel Xeon Scalable processors. +* api-change:``firehose``: [``botocore``] Allow support for the Serverless offering for Amazon OpenSearch Service as a Kinesis Data Firehose delivery destination. +* api-change:``kms``: [``botocore``] AWS KMS introduces the External Key Store (XKS), a new feature for customers who want to protect their data with encryption keys stored in an external key management system under their control. +* api-change:``omics``: [``botocore``] Amazon Omics is a new, purpose-built service that can be used by healthcare and life science organizations to store, query, and analyze omics data. The insights from that data can be used to accelerate scientific discoveries and improve healthcare. +* api-change:``opensearchserverless``: [``botocore``] Publish SDK for Amazon OpenSearch Serverless +* api-change:``securitylake``: [``botocore``] Amazon Security Lake automatically centralizes security data from cloud, on-premises, and custom sources into a purpose-built data lake stored in your account. Security Lake makes it easier to analyze security data, so you can improve the protection of your workloads, applications, and data +* api-change:``simspaceweaver``: [``botocore``] AWS SimSpace Weaver is a new service that helps customers build spatial simulations at new levels of scale - resulting in virtual worlds with millions of dynamic entities. See the AWS SimSpace Weaver developer guide for more details on how to get started. https://docs.aws.amazon.com/simspaceweaver + + 1.26.18 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 4121b26e35..4185002620 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.26.18' +__version__ = '1.26.19' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index c2b5f8e4a0..48071fee32 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.29.18,<1.30.0 + botocore>=1.29.19,<1.30.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index b0bed52429..2d90d2a382 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.29.18,<1.30.0', + 'botocore>=1.29.19,<1.30.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]