diff --git a/.changes/1.28.66.json b/.changes/1.28.66.json new file mode 100644 index 0000000000..690d35ecd9 --- /dev/null +++ b/.changes/1.28.66.json @@ -0,0 +1,27 @@ +[ + { + "category": "``cloud9``", + "description": "[``botocore``] Update to imageId parameter behavior and dates updated.", + "type": "api-change" + }, + { + "category": "``dynamodb``", + "description": "[``botocore``] Updating descriptions for several APIs.", + "type": "api-change" + }, + { + "category": "``kendra``", + "description": "[``botocore``] Changes for a new feature in Amazon Kendra's Query API to Collapse/Expand query results", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] This release adds support for upgrading the storage file system configuration on the DB instance using a blue/green deployment or a read replica.", + "type": "api-change" + }, + { + "category": "``wisdom``", + "description": "[``botocore``] This release adds an max limit of 25 recommendation ids for NotifyRecommendationsReceived API.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 84c629109a..44fc6023ef 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.28.66 +======= + +* api-change:``cloud9``: [``botocore``] Update to imageId parameter behavior and dates updated. +* api-change:``dynamodb``: [``botocore``] Updating descriptions for several APIs. +* api-change:``kendra``: [``botocore``] Changes for a new feature in Amazon Kendra's Query API to Collapse/Expand query results +* api-change:``rds``: [``botocore``] This release adds support for upgrading the storage file system configuration on the DB instance using a blue/green deployment or a read replica. +* api-change:``wisdom``: [``botocore``] This release adds an max limit of 25 recommendation ids for NotifyRecommendationsReceived API. + + 1.28.65 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index cdf6325b8a..4e80062d17 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.65' +__version__ = '1.28.66' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index dff52435e3..5dd116bb8e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.31.65,<1.32.0 + botocore>=1.31.66,<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 c55c9bd7a9..f6ef1ea177 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.31.65,<1.32.0', + 'botocore>=1.31.66,<1.32.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.7.0,<0.8.0', ]