diff --git a/.changes/1.35.2.json b/.changes/1.35.2.json new file mode 100644 index 0000000000..4a9486ef5d --- /dev/null +++ b/.changes/1.35.2.json @@ -0,0 +1,17 @@ +[ + { + "category": "``ecs``", + "description": "[``botocore``] Documentation only release to address various tickets", + "type": "api-change" + }, + { + "category": "``opensearchserverless``", + "description": "[``botocore``] Added FailureCode and FailureMessage to BatchGetCollectionResponse for BatchGetVPCEResponse for non-Active Collection and VPCE.", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "[``botocore``] Amazon Simple Storage Service / Features : Add support for conditional writes for PutObject and CompleteMultipartUpload APIs.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-ecs-31566.json b/.changes/next-release/api-change-ecs-31566.json deleted file mode 100644 index b01beb56da..0000000000 --- a/.changes/next-release/api-change-ecs-31566.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ecs``", - "description": "[``botocore``] Documentation only release to address various tickets" -} diff --git a/.changes/next-release/api-change-opensearchserverless-17129.json b/.changes/next-release/api-change-opensearchserverless-17129.json deleted file mode 100644 index b7a71950fd..0000000000 --- a/.changes/next-release/api-change-opensearchserverless-17129.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``opensearchserverless``", - "description": "[``botocore``] Added FailureCode and FailureMessage to BatchGetCollectionResponse for BatchGetVPCEResponse for non-Active Collection and VPCE." -} diff --git a/.changes/next-release/api-change-s3-1963.json b/.changes/next-release/api-change-s3-1963.json deleted file mode 100644 index 5ebdf3236f..0000000000 --- a/.changes/next-release/api-change-s3-1963.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``s3``", - "description": "[``botocore``] Amazon Simple Storage Service / Features : Add support for conditional writes for PutObject and CompleteMultipartUpload APIs." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1d194b2f01..8072d89fd3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.35.2 +====== + +* api-change:``ecs``: [``botocore``] Documentation only release to address various tickets +* api-change:``opensearchserverless``: [``botocore``] Added FailureCode and FailureMessage to BatchGetCollectionResponse for BatchGetVPCEResponse for non-Active Collection and VPCE. +* api-change:``s3``: [``botocore``] Amazon Simple Storage Service / Features : Add support for conditional writes for PutObject and CompleteMultipartUpload APIs. + + 1.35.1 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index ac4585c1f8..11dc1af472 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.1' +__version__ = '1.35.2' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 800598d889..5163a36af7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.35.1,<1.36.0 + botocore>=1.35.2,<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 9ee552f51b..61d8d90fae 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.35.1,<1.36.0', + 'botocore>=1.35.2,<1.36.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]