diff --git a/.changes/1.34.77.json b/.changes/1.34.77.json new file mode 100644 index 0000000000..0ecd4c0058 --- /dev/null +++ b/.changes/1.34.77.json @@ -0,0 +1,47 @@ +[ + { + "category": "``cleanroomsml``", + "description": "[``botocore``] The release includes a public SDK for AWS Clean Rooms ML APIs, making them globally available to developers worldwide.", + "type": "api-change" + }, + { + "category": "``cloudformation``", + "description": "[``botocore``] This release would return a new field - PolicyAction in cloudformation's existed DescribeChangeSetResponse, showing actions we are going to apply on the physical resource (e.g., Delete, Retain) according to the user's template", + "type": "api-change" + }, + { + "category": "``datazone``", + "description": "[``botocore``] This release supports the feature of dataQuality to enrich asset with dataQualityResult in Amazon DataZone.", + "type": "api-change" + }, + { + "category": "``docdb``", + "description": "[``botocore``] This release adds Global Cluster Switchover capability which enables you to change your global cluster's primary AWS Region, the region that serves writes, while preserving the replication between all regions in the global cluster.", + "type": "api-change" + }, + { + "category": "``groundstation``", + "description": "[``botocore``] This release adds visibilityStartTime and visibilityEndTime to DescribeContact and ListContacts responses.", + "type": "api-change" + }, + { + "category": "``lambda``", + "description": "[``botocore``] Add Ruby 3.3 (ruby3.3) support to AWS Lambda", + "type": "api-change" + }, + { + "category": "``medialive``", + "description": "[``botocore``] Cmaf Ingest outputs are now supported in Media Live", + "type": "api-change" + }, + { + "category": "``medical-imaging``", + "description": "[``botocore``] SearchImageSets API now supports following enhancements - Additional support for searching on UpdatedAt and SeriesInstanceUID - Support for searching existing filters between dates/times - Support for sorting the search result by Ascending/Descending - Additional parameters returned in the response", + "type": "api-change" + }, + { + "category": "``transfer``", + "description": "[``botocore``] Add ability to specify Security Policies for SFTP Connectors", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6d1ca9e140..824a2e9999 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,20 @@ CHANGELOG ========= +1.34.77 +======= + +* api-change:``cleanroomsml``: [``botocore``] The release includes a public SDK for AWS Clean Rooms ML APIs, making them globally available to developers worldwide. +* api-change:``cloudformation``: [``botocore``] This release would return a new field - PolicyAction in cloudformation's existed DescribeChangeSetResponse, showing actions we are going to apply on the physical resource (e.g., Delete, Retain) according to the user's template +* api-change:``datazone``: [``botocore``] This release supports the feature of dataQuality to enrich asset with dataQualityResult in Amazon DataZone. +* api-change:``docdb``: [``botocore``] This release adds Global Cluster Switchover capability which enables you to change your global cluster's primary AWS Region, the region that serves writes, while preserving the replication between all regions in the global cluster. +* api-change:``groundstation``: [``botocore``] This release adds visibilityStartTime and visibilityEndTime to DescribeContact and ListContacts responses. +* api-change:``lambda``: [``botocore``] Add Ruby 3.3 (ruby3.3) support to AWS Lambda +* api-change:``medialive``: [``botocore``] Cmaf Ingest outputs are now supported in Media Live +* api-change:``medical-imaging``: [``botocore``] SearchImageSets API now supports following enhancements - Additional support for searching on UpdatedAt and SeriesInstanceUID - Support for searching existing filters between dates/times - Support for sorting the search result by Ascending/Descending - Additional parameters returned in the response +* api-change:``transfer``: [``botocore``] Add ability to specify Security Policies for SFTP Connectors + + 1.34.76 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 0fd406fe9e..c46de4d9cb 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.34.76' +__version__ = '1.34.77' # The default Boto3 session; autoloaded when needed. diff --git a/requirements-dev-lock.txt b/requirements-dev-lock.txt index 500c28d068..e8620c44d5 100644 --- a/requirements-dev-lock.txt +++ b/requirements-dev-lock.txt @@ -111,7 +111,7 @@ tomli==2.0.1 \ # via # coverage # pytest -wheel==0.38.1 \ - --hash=sha256:7a95f9a8dc0924ef318bd55b616112c70903192f524d120acc614f59547a9e1f \ - --hash=sha256:ea041edf63f4ccba53ad6e035427997b3bb10ee88a4cd014ae82aeb9eea77bb9 +wheel==0.43.0 \ + --hash=sha256:465ef92c69fa5c5da2d1cf8ac40559a8c940886afcef87dcf14b9470862f1d85 \ + --hash=sha256:55c570405f142630c6b9f72fe09d9b67cf1477fcf543ae5b8dcb1f5b7377da81 # via -r requirements-dev.txt diff --git a/requirements-dev.txt b/requirements-dev.txt index 359cfa1087..6141c927fa 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,4 +1,4 @@ -wheel==0.38.1 +wheel==0.43.0 coverage==7.2.7 setuptools==67.8.0;python_version>="3.12" diff --git a/setup.cfg b/setup.cfg index a1edab58d6..955240e954 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.76,<1.35.0 + botocore>=1.34.77,<1.35.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index d69c515ac3..d497b5e28f 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.76,<1.35.0', + 'botocore>=1.34.77,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]