diff --git a/.changes/1.28.75.json b/.changes/1.28.75.json new file mode 100644 index 0000000000..8c82ff0a5c --- /dev/null +++ b/.changes/1.28.75.json @@ -0,0 +1,32 @@ +[ + { + "category": "``amplify``", + "description": "[``botocore``] Add backend field to CreateBranch and UpdateBranch requests. Add pagination support for ListApps, ListDomainAssociations, ListBranches, and ListJobs", + "type": "api-change" + }, + { + "category": "``application-insights``", + "description": "[``botocore``] Automate attaching managed policies", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] Capacity Blocks for ML are a new EC2 purchasing option for reserving GPU instances on a future date to support short duration machine learning (ML) workloads. Capacity Blocks automatically place instances close together inside Amazon EC2 UltraClusters for low-latency, high-throughput networking.", + "type": "api-change" + }, + { + "category": "``m2``", + "description": "[``botocore``] Added name filter ability for ListDataSets API, added ForceUpdate for Updating environment and BatchJob submission using S3BatchJobIdentifier", + "type": "api-change" + }, + { + "category": "``neptunedata``", + "description": "[``botocore``] Minor change to not retry CancelledByUserException", + "type": "api-change" + }, + { + "category": "``translate``", + "description": "[``botocore``] Added support for Brevity translation settings feature.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8803d183b9..1dfb6744de 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.28.75 +======= + +* api-change:``amplify``: [``botocore``] Add backend field to CreateBranch and UpdateBranch requests. Add pagination support for ListApps, ListDomainAssociations, ListBranches, and ListJobs +* api-change:``application-insights``: [``botocore``] Automate attaching managed policies +* api-change:``ec2``: [``botocore``] Capacity Blocks for ML are a new EC2 purchasing option for reserving GPU instances on a future date to support short duration machine learning (ML) workloads. Capacity Blocks automatically place instances close together inside Amazon EC2 UltraClusters for low-latency, high-throughput networking. +* api-change:``m2``: [``botocore``] Added name filter ability for ListDataSets API, added ForceUpdate for Updating environment and BatchJob submission using S3BatchJobIdentifier +* api-change:``neptunedata``: [``botocore``] Minor change to not retry CancelledByUserException +* api-change:``translate``: [``botocore``] Added support for Brevity translation settings feature. + + 1.28.74 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 66c18d82a4..b2fdfc0051 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.28.74' +__version__ = '1.28.75' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index d4da046bc4..3ae90d6145 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.31.74,<1.32.0 + botocore>=1.31.75,<1.32.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.7.0,<0.8.0 diff --git a/setup.py b/setup.py index 024d4ba667..a11e013e61 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.31.74,<1.32.0', + 'botocore>=1.31.75,<1.32.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.7.0,<0.8.0', ]