diff --git a/.changes/1.34.114.json b/.changes/1.34.114.json new file mode 100644 index 0000000000..d8d4f330be --- /dev/null +++ b/.changes/1.34.114.json @@ -0,0 +1,22 @@ +[ + { + "category": "``dynamodb``", + "description": "[``botocore``] Doc-only update for DynamoDB. Specified the IAM actions needed to authorize a user to create a table with a resource-based policy.", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] Providing support to accept BgpAsnExtended attribute", + "type": "api-change" + }, + { + "category": "``kafka``", + "description": "[``botocore``] Adds ControllerNodeInfo in ListNodes response to support Raft mode for MSK", + "type": "api-change" + }, + { + "category": "``swf``", + "description": "[``botocore``] This release adds new APIs for deleting activity type and workflow type resources.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index af289a1991..570ae42d50 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.34.114 +======== + +* api-change:``dynamodb``: [``botocore``] Doc-only update for DynamoDB. Specified the IAM actions needed to authorize a user to create a table with a resource-based policy. +* api-change:``ec2``: [``botocore``] Providing support to accept BgpAsnExtended attribute +* api-change:``kafka``: [``botocore``] Adds ControllerNodeInfo in ListNodes response to support Raft mode for MSK +* api-change:``swf``: [``botocore``] This release adds new APIs for deleting activity type and workflow type resources. + + 1.34.113 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index fc0805fa83..f77dd18159 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.113' +__version__ = '1.34.114' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 9440fc4eb5..d17371f506 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.113,<1.35.0 + botocore>=1.34.114,<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 04912d7a21..2a376bdb0d 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.113,<1.35.0', + 'botocore>=1.34.114,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]