diff --git a/.changes/1.34.23.json b/.changes/1.34.23.json new file mode 100644 index 0000000000..64dac924c6 --- /dev/null +++ b/.changes/1.34.23.json @@ -0,0 +1,22 @@ +[ + { + "category": "``athena``", + "description": "[``botocore``] Introducing new NotebookS3LocationUri parameter to Athena ImportNotebook API. Payload is no longer required and either Payload or NotebookS3LocationUri needs to be provided (not both) for a successful ImportNotebook API call. If both are provided, an InvalidRequestException will be thrown.", + "type": "api-change" + }, + { + "category": "``codebuild``", + "description": "[``botocore``] Release CodeBuild Reserved Capacity feature", + "type": "api-change" + }, + { + "category": "``dynamodb``", + "description": "[``botocore``] This release adds support for including ApproximateCreationDateTimePrecision configurations in EnableKinesisStreamingDestination API, adds the same as an optional field in the response of DescribeKinesisStreamingDestination, and adds support for a new UpdateKinesisStreamingDestination API.", + "type": "api-change" + }, + { + "category": "``qconnect``", + "description": "[``botocore``] Increased Quick Response name max length to 100", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 60fb7734e4..57c64b5670 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.34.23 +======= + +* api-change:``athena``: [``botocore``] Introducing new NotebookS3LocationUri parameter to Athena ImportNotebook API. Payload is no longer required and either Payload or NotebookS3LocationUri needs to be provided (not both) for a successful ImportNotebook API call. If both are provided, an InvalidRequestException will be thrown. +* api-change:``codebuild``: [``botocore``] Release CodeBuild Reserved Capacity feature +* api-change:``dynamodb``: [``botocore``] This release adds support for including ApproximateCreationDateTimePrecision configurations in EnableKinesisStreamingDestination API, adds the same as an optional field in the response of DescribeKinesisStreamingDestination, and adds support for a new UpdateKinesisStreamingDestination API. +* api-change:``qconnect``: [``botocore``] Increased Quick Response name max length to 100 + + 1.34.22 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index ad8d40d2ab..58753ef264 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.22' +__version__ = '1.34.23' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 88a4049c67..4e56f9f796 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.22,<1.35.0 + botocore>=1.34.23,<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 4816081b15..4e16e4f994 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.22,<1.35.0', + 'botocore>=1.34.23,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]