diff --git a/.changes/1.28.24.json b/.changes/1.28.24.json new file mode 100644 index 0000000000..7263283492 --- /dev/null +++ b/.changes/1.28.24.json @@ -0,0 +1,32 @@ +[ + { + "category": "``cloudtrail``", + "description": "[``botocore``] Documentation updates for CloudTrail.", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "[``botocore``] This release adds APIs to provision agents that are global / available in multiple AWS regions and distribute them across these regions by percentage.", + "type": "api-change" + }, + { + "category": "``elbv2``", + "description": "[``botocore``] Update elbv2 client to latest version", + "type": "api-change" + }, + { + "category": "``omics``", + "description": "[``botocore``] This release adds instanceType to GetRunTask & ListRunTasks responses.", + "type": "api-change" + }, + { + "category": "``secretsmanager``", + "description": "[``botocore``] Add additional InvalidRequestException to list of possible exceptions for ListSecret.", + "type": "api-change" + }, + { + "category": "``transfer``", + "description": "[``botocore``] Documentation updates for AW Transfer Family", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 36395cbc37..f6ad4796e4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.28.24 +======= + +* api-change:``cloudtrail``: [``botocore``] Documentation updates for CloudTrail. +* api-change:``connect``: [``botocore``] This release adds APIs to provision agents that are global / available in multiple AWS regions and distribute them across these regions by percentage. +* api-change:``elbv2``: [``botocore``] Update elbv2 client to latest version +* api-change:``omics``: [``botocore``] This release adds instanceType to GetRunTask & ListRunTasks responses. +* api-change:``secretsmanager``: [``botocore``] Add additional InvalidRequestException to list of possible exceptions for ListSecret. +* api-change:``transfer``: [``botocore``] Documentation updates for AW Transfer Family + + 1.28.23 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 628c19efdf..c3cb6f2078 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.23' +__version__ = '1.28.24' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index a1424ca86c..ee9dcc2837 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.31.23,<1.32.0 + botocore>=1.31.24,<1.32.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index 7913331b31..6a20fd1c3d 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.31.23,<1.32.0', + 'botocore>=1.31.24,<1.32.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]