diff --git a/.changes/1.26.57.json b/.changes/1.26.57.json new file mode 100644 index 0000000000..3efb6bae52 --- /dev/null +++ b/.changes/1.26.57.json @@ -0,0 +1,42 @@ +[ + { + "category": "``cloudformation``", + "description": "[``botocore``] Enabled FIPS aws-us-gov endpoints in SDK.", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] This release adds new functionality that allows customers to provision IPv6 CIDR blocks through Amazon VPC IP Address Manager (IPAM) as well as allowing customers to utilize IPAM Resource Discovery APIs.", + "type": "api-change" + }, + { + "category": "``m2``", + "description": "[``botocore``] Add returnCode, batchJobIdentifier in GetBatchJobExecution response, for user to view the batch job execution result & unique identifier from engine. Also removed unused headers from REST APIs", + "type": "api-change" + }, + { + "category": "``polly``", + "description": "[``botocore``] Add 5 new neural voices - Sergio (es-ES), Andres (es-MX), Remi (fr-FR), Adriano (it-IT) and Thiago (pt-BR).", + "type": "api-change" + }, + { + "category": "``redshift-serverless``", + "description": "[``botocore``] Added query monitoring rules as possible parameters for create and update workgroup operations.", + "type": "api-change" + }, + { + "category": "``s3control``", + "description": "[``botocore``] Add additional endpoint tests for S3 Control. Fix missing endpoint parameters for PutBucketVersioning and GetBucketVersioning. Prior to this fix, those operations may have resulted in an invalid endpoint being resolved.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] SageMaker Inference Recommender now decouples from Model Registry and could accept Model Name to invoke inference recommendations job; Inference Recommender now provides CPU/Memory Utilization metrics data in recommendation output.", + "type": "api-change" + }, + { + "category": "``sts``", + "description": "[``botocore``] Doc only change to update wording in a key topic", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 562f2ecc30..75edc8eaad 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ CHANGELOG ========= +1.26.57 +======= + +* api-change:``cloudformation``: [``botocore``] Enabled FIPS aws-us-gov endpoints in SDK. +* api-change:``ec2``: [``botocore``] This release adds new functionality that allows customers to provision IPv6 CIDR blocks through Amazon VPC IP Address Manager (IPAM) as well as allowing customers to utilize IPAM Resource Discovery APIs. +* api-change:``m2``: [``botocore``] Add returnCode, batchJobIdentifier in GetBatchJobExecution response, for user to view the batch job execution result & unique identifier from engine. Also removed unused headers from REST APIs +* api-change:``polly``: [``botocore``] Add 5 new neural voices - Sergio (es-ES), Andres (es-MX), Remi (fr-FR), Adriano (it-IT) and Thiago (pt-BR). +* api-change:``redshift-serverless``: [``botocore``] Added query monitoring rules as possible parameters for create and update workgroup operations. +* api-change:``s3control``: [``botocore``] Add additional endpoint tests for S3 Control. Fix missing endpoint parameters for PutBucketVersioning and GetBucketVersioning. Prior to this fix, those operations may have resulted in an invalid endpoint being resolved. +* api-change:``sagemaker``: [``botocore``] SageMaker Inference Recommender now decouples from Model Registry and could accept Model Name to invoke inference recommendations job; Inference Recommender now provides CPU/Memory Utilization metrics data in recommendation output. +* api-change:``sts``: [``botocore``] Doc only change to update wording in a key topic + + 1.26.56 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 5117860a9a..51b191cc2e 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.56' +__version__ = '1.26.57' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 24ae97dca3..691b729242 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.29.56,<1.30.0 + botocore>=1.29.57,<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 f412f8b56f..c8b6a93d93 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.29.56,<1.30.0', + 'botocore>=1.29.57,<1.30.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]