diff --git a/.changes/1.36.25.json b/.changes/1.36.25.json new file mode 100644 index 0000000000..937eafddaa --- /dev/null +++ b/.changes/1.36.25.json @@ -0,0 +1,32 @@ +[ + { + "category": "``codebuild``", + "description": "[``botocore``] Add webhook status and status message to AWS CodeBuild webhooks", + "type": "api-change" + }, + { + "category": "``guardduty``", + "description": "[``botocore``] Reduce the minimum number of required attack sequence signals from 2 to 1", + "type": "api-change" + }, + { + "category": "``license-manager-user-subscriptions``", + "description": "[``botocore``] Updates entity to include Microsoft RDS SAL as a valid type of user subscription.", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] CloudWatch Database Insights now supports Amazon RDS.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] Added new capability in the UpdateCluster operation to remove instance groups from your SageMaker HyperPod cluster.", + "type": "api-change" + }, + { + "category": "``workspaces-web``", + "description": "[``botocore``] Add support for toolbar configuration under user settings.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 03605df131..f35cdeafe3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.36.25 +======= + +* api-change:``codebuild``: [``botocore``] Add webhook status and status message to AWS CodeBuild webhooks +* api-change:``guardduty``: [``botocore``] Reduce the minimum number of required attack sequence signals from 2 to 1 +* api-change:``license-manager-user-subscriptions``: [``botocore``] Updates entity to include Microsoft RDS SAL as a valid type of user subscription. +* api-change:``rds``: [``botocore``] CloudWatch Database Insights now supports Amazon RDS. +* api-change:``sagemaker``: [``botocore``] Added new capability in the UpdateCluster operation to remove instance groups from your SageMaker HyperPod cluster. +* api-change:``workspaces-web``: [``botocore``] Add support for toolbar configuration under user settings. + + 1.36.24 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 430efb36a9..0a31a87cec 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.36.24' +__version__ = '1.36.25' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 9b55b80144..9cac4f67d6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.36.24,<1.37.0 + botocore>=1.36.25,<1.37.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.11.0,<0.12.0 diff --git a/setup.py b/setup.py index fd0a6560ca..0696826eca 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.36.24,<1.37.0', + 'botocore>=1.36.25,<1.37.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.11.0,<0.12.0', ]