diff --git a/.changes/1.35.41.json b/.changes/1.35.41.json new file mode 100644 index 0000000000..6ad5f1d326 --- /dev/null +++ b/.changes/1.35.41.json @@ -0,0 +1,42 @@ +[ + { + "category": "``amplify``", + "description": "[``botocore``] Added sourceUrlType field to StartDeployment request", + "type": "api-change" + }, + { + "category": "``cloudformation``", + "description": "[``botocore``] Documentation update for AWS CloudFormation API Reference.", + "type": "api-change" + }, + { + "category": "``codebuild``", + "description": "[``botocore``] Enable proxy for reserved capacity fleet.", + "type": "api-change" + }, + { + "category": "``ivs``", + "description": "[``botocore``] On a channel that you own, you can now replace an ongoing stream with a new stream by streaming up with the priority parameter appended to the stream key.", + "type": "api-change" + }, + { + "category": "``qbusiness``", + "description": "[``botocore``] Amazon Q Business now supports embedding the Amazon Q Business web experience on third-party websites.", + "type": "api-change" + }, + { + "category": "``redshift``", + "description": "[``botocore``] This release launches the CreateIntegration, DeleteIntegration, DescribeIntegrations and ModifyIntegration APIs to create and manage Amazon Redshift Zero-ETL Integrations.", + "type": "api-change" + }, + { + "category": "``resiliencehub``", + "description": "[``botocore``] AWS Resilience Hub now integrates with the myApplications platform, enabling customers to easily assess the resilience of applications defined in myApplications. The new Resiliency widget provides visibility into application resilience and actionable recommendations for improvement.", + "type": "api-change" + }, + { + "category": "``sesv2``", + "description": "[``botocore``] This release adds support for email maximum delivery seconds that allows senders to control the time within which their emails are attempted for delivery.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bbe008b414..b0d71d1538 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ CHANGELOG ========= +1.35.41 +======= + +* api-change:``amplify``: [``botocore``] Added sourceUrlType field to StartDeployment request +* api-change:``cloudformation``: [``botocore``] Documentation update for AWS CloudFormation API Reference. +* api-change:``codebuild``: [``botocore``] Enable proxy for reserved capacity fleet. +* api-change:``ivs``: [``botocore``] On a channel that you own, you can now replace an ongoing stream with a new stream by streaming up with the priority parameter appended to the stream key. +* api-change:``qbusiness``: [``botocore``] Amazon Q Business now supports embedding the Amazon Q Business web experience on third-party websites. +* api-change:``redshift``: [``botocore``] This release launches the CreateIntegration, DeleteIntegration, DescribeIntegrations and ModifyIntegration APIs to create and manage Amazon Redshift Zero-ETL Integrations. +* api-change:``resiliencehub``: [``botocore``] AWS Resilience Hub now integrates with the myApplications platform, enabling customers to easily assess the resilience of applications defined in myApplications. The new Resiliency widget provides visibility into application resilience and actionable recommendations for improvement. +* api-change:``sesv2``: [``botocore``] This release adds support for email maximum delivery seconds that allows senders to control the time within which their emails are attempted for delivery. + + 1.35.40 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index bc6a6193be..8b44cfe39b 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.40' +__version__ = '1.35.41' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 8c7ac9e7b3..cc3e720fb9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.35.40,<1.36.0 + botocore>=1.35.41,<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 454244684d..a85d641913 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.35.40,<1.36.0', + 'botocore>=1.35.41,<1.36.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]