diff --git a/.changes/1.35.59.json b/.changes/1.35.59.json new file mode 100644 index 0000000000..0683fd8fa5 --- /dev/null +++ b/.changes/1.35.59.json @@ -0,0 +1,32 @@ +[ + { + "category": "``codebuild``", + "description": "[``botocore``] AWS CodeBuild now supports non-containerized Linux and Windows builds on Reserved Capacity.", + "type": "api-change" + }, + { + "category": "``controltower``", + "description": "[``botocore``] Added ResetEnabledControl API.", + "type": "api-change" + }, + { + "category": "``fis``", + "description": "[``botocore``] This release adds support for generating experiment reports with the experiment report configuration", + "type": "api-change" + }, + { + "category": "``gamelift``", + "description": "[``botocore``] Amazon GameLift releases container fleets support for general availability. Deploy Linux-based containerized game server software for hosting on Amazon GameLift.", + "type": "api-change" + }, + { + "category": "``payment-cryptography``", + "description": "[``botocore``] Updated ListAliases API with KeyArn filter.", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] Updates Amazon RDS documentation for Amazon RDS Extended Support for Amazon Aurora MySQL.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5ee5e39a8c..6887135d6b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,17 @@ CHANGELOG ========= +1.35.59 +======= + +* api-change:``codebuild``: [``botocore``] AWS CodeBuild now supports non-containerized Linux and Windows builds on Reserved Capacity. +* api-change:``controltower``: [``botocore``] Added ResetEnabledControl API. +* api-change:``fis``: [``botocore``] This release adds support for generating experiment reports with the experiment report configuration +* api-change:``gamelift``: [``botocore``] Amazon GameLift releases container fleets support for general availability. Deploy Linux-based containerized game server software for hosting on Amazon GameLift. +* api-change:``payment-cryptography``: [``botocore``] Updated ListAliases API with KeyArn filter. +* api-change:``rds``: [``botocore``] Updates Amazon RDS documentation for Amazon RDS Extended Support for Amazon Aurora MySQL. + + 1.35.58 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 76418611f2..5b55ab236d 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.35.58' +__version__ = '1.35.59' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 451dbd6290..b174183f5e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.35.58,<1.36.0 + botocore>=1.35.59,<1.36.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index 6411a396de..271447b958 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.35.58,<1.36.0', + 'botocore>=1.35.59,<1.36.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]