diff --git a/.changes/1.34.115.json b/.changes/1.34.115.json new file mode 100644 index 0000000000..61e83e2b81 --- /dev/null +++ b/.changes/1.34.115.json @@ -0,0 +1,27 @@ +[ + { + "category": "``athena``", + "description": "[``botocore``] Throwing validation errors on CreateNotebook with Name containing `/`,`:`,`\\`", + "type": "api-change" + }, + { + "category": "``codebuild``", + "description": "[``botocore``] AWS CodeBuild now supports manually creating GitHub webhooks", + "type": "api-change" + }, + { + "category": "``connect``", + "description": "[``botocore``] This release includes changes to DescribeContact API's response by including ConnectedToSystemTimestamp, RoutingCriteria, Customer, Campaign, AnsweringMachineDetectionStatus, CustomerVoiceActivity, QualityMetrics, DisconnectDetails, and SegmentAttributes information from a contact in Amazon Connect.", + "type": "api-change" + }, + { + "category": "``glue``", + "description": "[``botocore``] Add optional field JobMode to CreateJob and UpdateJob APIs.", + "type": "api-change" + }, + { + "category": "``securityhub``", + "description": "[``botocore``] Add ROOT type for TargetType model", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 570ae42d50..536d6d25ae 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.34.115 +======== + +* api-change:``athena``: [``botocore``] Throwing validation errors on CreateNotebook with Name containing `/`,`:`,`\` +* api-change:``codebuild``: [``botocore``] AWS CodeBuild now supports manually creating GitHub webhooks +* api-change:``connect``: [``botocore``] This release includes changes to DescribeContact API's response by including ConnectedToSystemTimestamp, RoutingCriteria, Customer, Campaign, AnsweringMachineDetectionStatus, CustomerVoiceActivity, QualityMetrics, DisconnectDetails, and SegmentAttributes information from a contact in Amazon Connect. +* api-change:``glue``: [``botocore``] Add optional field JobMode to CreateJob and UpdateJob APIs. +* api-change:``securityhub``: [``botocore``] Add ROOT type for TargetType model + + 1.34.114 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index f77dd18159..2106d6fe43 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.114' +__version__ = '1.34.115' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index d17371f506..897af5278f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.114,<1.35.0 + botocore>=1.34.115,<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 2a376bdb0d..083555e81c 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.114,<1.35.0', + 'botocore>=1.34.115,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]