diff --git a/.changes/1.26.58.json b/.changes/1.26.58.json new file mode 100644 index 0000000000..36cf883952 --- /dev/null +++ b/.changes/1.26.58.json @@ -0,0 +1,17 @@ +[ + { + "category": "``events``", + "description": "[``botocore``] Update events client to latest version", + "type": "api-change" + }, + { + "category": "``iotfleetwise``", + "description": "[``botocore``] Add model validation to BatchCreateVehicle and BatchUpdateVehicle operations that invalidate requests with an empty vehicles list.", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "[``botocore``] Allow FIPS to be used with path-style URLs.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-events-73779.json b/.changes/next-release/api-change-events-73779.json deleted file mode 100644 index cd3dbc9be3..0000000000 --- a/.changes/next-release/api-change-events-73779.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``events``", - "description": "[``botocore``] Update events client to latest version" -} diff --git a/.changes/next-release/api-change-iotfleetwise-97337.json b/.changes/next-release/api-change-iotfleetwise-97337.json deleted file mode 100644 index e2829ed947..0000000000 --- a/.changes/next-release/api-change-iotfleetwise-97337.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``iotfleetwise``", - "description": "[``botocore``] Add model validation to BatchCreateVehicle and BatchUpdateVehicle operations that invalidate requests with an empty vehicles list." -} diff --git a/.changes/next-release/api-change-s3-47728.json b/.changes/next-release/api-change-s3-47728.json deleted file mode 100644 index 1bab1b700e..0000000000 --- a/.changes/next-release/api-change-s3-47728.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``s3``", - "description": "[``botocore``] Allow FIPS to be used with path-style URLs." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 75edc8eaad..348f528f23 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.26.58 +======= + +* api-change:``events``: [``botocore``] Update events client to latest version +* api-change:``iotfleetwise``: [``botocore``] Add model validation to BatchCreateVehicle and BatchUpdateVehicle operations that invalidate requests with an empty vehicles list. +* api-change:``s3``: [``botocore``] Allow FIPS to be used with path-style URLs. + + 1.26.57 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 51b191cc2e..dbd971cf7a 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.26.57' +__version__ = '1.26.58' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 691b729242..6b98ec96b6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.29.57,<1.30.0 + botocore>=1.29.58,<1.30.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index c8b6a93d93..c47f1bf70c 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.29.57,<1.30.0', + 'botocore>=1.29.58,<1.30.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]