diff --git a/.changes/1.34.81.json b/.changes/1.34.81.json new file mode 100644 index 0000000000..64cce36fd8 --- /dev/null +++ b/.changes/1.34.81.json @@ -0,0 +1,22 @@ +[ + { + "category": "``codebuild``", + "description": "[``botocore``] Add new webhook filter types for GitHub webhooks", + "type": "api-change" + }, + { + "category": "``mediaconvert``", + "description": "[``botocore``] This release includes support for bringing your own fonts to use for burn-in or DVB-Sub captioning workflows.", + "type": "api-change" + }, + { + "category": "``pinpoint``", + "description": "[``botocore``] The OrchestrationSendingRoleArn has been added to the email channel and is used to send emails from campaigns or journeys.", + "type": "api-change" + }, + { + "category": "``rds``", + "description": "[``botocore``] This release adds support for specifying the CA certificate to use for the new db instance when restoring from db snapshot, restoring from s3, restoring to point in time, and creating a db instance read replica.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b1417975d0..5e5f94a9fe 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.34.81 +======= + +* api-change:``codebuild``: [``botocore``] Add new webhook filter types for GitHub webhooks +* api-change:``mediaconvert``: [``botocore``] This release includes support for bringing your own fonts to use for burn-in or DVB-Sub captioning workflows. +* api-change:``pinpoint``: [``botocore``] The OrchestrationSendingRoleArn has been added to the email channel and is used to send emails from campaigns or journeys. +* api-change:``rds``: [``botocore``] This release adds support for specifying the CA certificate to use for the new db instance when restoring from db snapshot, restoring from s3, restoring to point in time, and creating a db instance read replica. + + 1.34.80 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 8a8b80b921..0c45c0aab4 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.80' +__version__ = '1.34.81' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 6666cc8423..ab0bb8ed48 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.80,<1.35.0 + botocore>=1.34.81,<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 26f3353097..658def8ea2 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.80,<1.35.0', + 'botocore>=1.34.81,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]