diff --git a/.changes/1.35.3.json b/.changes/1.35.3.json new file mode 100644 index 0000000000..c573f6f5e0 --- /dev/null +++ b/.changes/1.35.3.json @@ -0,0 +1,37 @@ +[ + { + "category": "``codestar``", + "description": "[``botocore``] The codestar client has been removed following the deprecation of the service on July 31, 2024.", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] DescribeInstanceStatus now returns health information on EBS volumes attached to Nitro instances", + "type": "api-change" + }, + { + "category": "``entityresolution``", + "description": "[``botocore``] Increase the mapping attributes in Schema to 35.", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "[``botocore``] Add optional field JobRunQueuingEnabled to CreateJob and UpdateJob APIs.", + "type": "api-change" + }, + { + "category": "``lambda``", + "description": "[``botocore``] Release FilterCriteria encryption for Lambda EventSourceMapping, enabling customers to encrypt their filter criteria using a customer-owned KMS key.", + "type": "api-change" + }, + { + "category": "``securityhub``", + "description": "[``botocore``] Security Hub documentation and definition updates", + "type": "api-change" + }, + { + "category": "``ses``", + "description": "[``botocore``] Enable email receiving customers to provide SES with access to their S3 buckets via an IAM role for \"Deliver to S3 Action\"", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8072d89fd3..f6fbfa36e5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,18 @@ CHANGELOG ========= +1.35.3 +====== + +* api-change:``codestar``: [``botocore``] The codestar client has been removed following the deprecation of the service on July 31, 2024. +* api-change:``ec2``: [``botocore``] DescribeInstanceStatus now returns health information on EBS volumes attached to Nitro instances +* api-change:``entityresolution``: [``botocore``] Increase the mapping attributes in Schema to 35. +* api-change:``glue``: [``botocore``] Add optional field JobRunQueuingEnabled to CreateJob and UpdateJob APIs. +* api-change:``lambda``: [``botocore``] Release FilterCriteria encryption for Lambda EventSourceMapping, enabling customers to encrypt their filter criteria using a customer-owned KMS key. +* api-change:``securityhub``: [``botocore``] Security Hub documentation and definition updates +* api-change:``ses``: [``botocore``] Enable email receiving customers to provide SES with access to their S3 buckets via an IAM role for "Deliver to S3 Action" + + 1.35.2 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index 11dc1af472..77a71fbf3f 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.2' +__version__ = '1.35.3' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 5163a36af7..9986485257 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.35.2,<1.36.0 + botocore>=1.35.3,<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 61d8d90fae..87cb333e19 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.35.2,<1.36.0', + 'botocore>=1.35.3,<1.36.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]