diff --git a/.changes/1.35.83.json b/.changes/1.35.83.json new file mode 100644 index 0000000000..62a1d04c38 --- /dev/null +++ b/.changes/1.35.83.json @@ -0,0 +1,52 @@ +[ + { + "category": "``account``", + "description": "[``botocore``] Update endpoint configuration.", + "type": "api-change" + }, + { + "category": "``backup``", + "description": "[``botocore``] Add Support for Backup Indexing", + "type": "api-change" + }, + { + "category": "``backupsearch``", + "description": "[``botocore``] Add support for searching backups", + "type": "api-change" + }, + { + "category": "``batch``", + "description": "[``botocore``] This feature allows AWS Batch on Amazon EKS to support configuration of Pod Annotations, overriding Namespace on which the Batch job's Pod runs on, and allows Subpath and Persistent Volume claim to be set for AWS Batch on Amazon EKS jobs.", + "type": "api-change" + }, + { + "category": "``cleanroomsml``", + "description": "[``botocore``] Add support for SQL compute configuration for StartAudienceGenerationJob API.", + "type": "api-change" + }, + { + "category": "``cloudfront``", + "description": "[``botocore``] Adds support for OriginReadTimeout and OriginKeepaliveTimeout to create CloudFront Distributions with VPC Origins.", + "type": "api-change" + }, + { + "category": "``codepipeline``", + "description": "[``botocore``] AWS CodePipeline V2 type pipelines now support Managed Compute Rule.", + "type": "api-change" + }, + { + "category": "``ecs``", + "description": "[``botocore``] Added support for enableFaultInjection task definition parameter which can be used to enable Fault Injection feature on ECS tasks.", + "type": "api-change" + }, + { + "category": "``m2``", + "description": "[``botocore``] This release adds support for AWS Mainframe Modernization(M2) Service to allow specifying network type(ipv4, dual) for the environment instances. For dual network type, m2 environment applications will serve both IPv4 and IPv6 requests, whereas for ipv4 it will serve only IPv4 requests.", + "type": "api-change" + }, + { + "category": "``synthetics``", + "description": "[``botocore``] Add support to toggle outbound IPv6 traffic on canaries connected to dualstack subnets. This behavior can be controlled via the new Ipv6AllowedForDualStack parameter of the VpcConfig input object in CreateCanary and UpdateCanary APIs.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fc02485867..ae2e8b5c55 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,21 @@ CHANGELOG ========= +1.35.83 +======= + +* api-change:``account``: [``botocore``] Update endpoint configuration. +* api-change:``backup``: [``botocore``] Add Support for Backup Indexing +* api-change:``backupsearch``: [``botocore``] Add support for searching backups +* api-change:``batch``: [``botocore``] This feature allows AWS Batch on Amazon EKS to support configuration of Pod Annotations, overriding Namespace on which the Batch job's Pod runs on, and allows Subpath and Persistent Volume claim to be set for AWS Batch on Amazon EKS jobs. +* api-change:``cleanroomsml``: [``botocore``] Add support for SQL compute configuration for StartAudienceGenerationJob API. +* api-change:``cloudfront``: [``botocore``] Adds support for OriginReadTimeout and OriginKeepaliveTimeout to create CloudFront Distributions with VPC Origins. +* api-change:``codepipeline``: [``botocore``] AWS CodePipeline V2 type pipelines now support Managed Compute Rule. +* api-change:``ecs``: [``botocore``] Added support for enableFaultInjection task definition parameter which can be used to enable Fault Injection feature on ECS tasks. +* api-change:``m2``: [``botocore``] This release adds support for AWS Mainframe Modernization(M2) Service to allow specifying network type(ipv4, dual) for the environment instances. For dual network type, m2 environment applications will serve both IPv4 and IPv6 requests, whereas for ipv4 it will serve only IPv4 requests. +* api-change:``synthetics``: [``botocore``] Add support to toggle outbound IPv6 traffic on canaries connected to dualstack subnets. This behavior can be controlled via the new Ipv6AllowedForDualStack parameter of the VpcConfig input object in CreateCanary and UpdateCanary APIs. + + 1.35.82 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 1b0389d00f..7ea1c74207 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.35.82' +__version__ = '1.35.83' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index ba638c1bcb..84c5208041 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.35.82,<1.36.0 + botocore>=1.35.83,<1.36.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index 21552ab27f..f930b4b517 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.35.82,<1.36.0', + 'botocore>=1.35.83,<1.36.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]