diff --git a/.changes/1.34.117.json b/.changes/1.34.117.json new file mode 100644 index 0000000000..d5c5b32307 --- /dev/null +++ b/.changes/1.34.117.json @@ -0,0 +1,22 @@ +[ + { + "category": "``codebuild``", + "description": "[``botocore``] AWS CodeBuild now supports Self-hosted GitHub Actions runners for Github Enterprise", + "type": "api-change" + }, + { + "category": "``codeguru-security``", + "description": "[``botocore``] This release includes minor model updates and documentation updates.", + "type": "api-change" + }, + { + "category": "``elasticache``", + "description": "[``botocore``] Update to attributes of TestFailover and minor revisions.", + "type": "api-change" + }, + { + "category": "``launch-wizard``", + "description": "[``botocore``] This release adds support for describing workload deployment specifications, deploying additional workload types, and managing tags for Launch Wizard resources with API operations.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6b5a8804ea..540b049a06 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.34.117 +======== + +* api-change:``codebuild``: [``botocore``] AWS CodeBuild now supports Self-hosted GitHub Actions runners for Github Enterprise +* api-change:``codeguru-security``: [``botocore``] This release includes minor model updates and documentation updates. +* api-change:``elasticache``: [``botocore``] Update to attributes of TestFailover and minor revisions. +* api-change:``launch-wizard``: [``botocore``] This release adds support for describing workload deployment specifications, deploying additional workload types, and managing tags for Launch Wizard resources with API operations. + + 1.34.116 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index f45dc4462d..841df94f3c 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.34.116' +__version__ = '1.34.117' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index dddb461cc2..206e76194b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.116,<1.35.0 + botocore>=1.34.117,<1.35.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index 30cd7f6872..f4f37e6e0d 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.116,<1.35.0', + 'botocore>=1.34.117,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]