From 75265ef7d51c29c953e7000efdd25dc2ff5b7ba6 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 18 Dec 2023 21:38:10 +0000 Subject: [PATCH] Bumping version to 1.34.3 --- .changes/1.34.3.json | 22 +++++++++++++++++++ .../api-change-cognitoidp-86134.json | 5 ----- .../next-release/api-change-eks-65854.json | 5 ----- .../api-change-quicksight-42627.json | 5 ----- .../api-change-route53resolver-67240.json | 5 ----- CHANGELOG.rst | 9 ++++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 9 files changed, 34 insertions(+), 23 deletions(-) create mode 100644 .changes/1.34.3.json delete mode 100644 .changes/next-release/api-change-cognitoidp-86134.json delete mode 100644 .changes/next-release/api-change-eks-65854.json delete mode 100644 .changes/next-release/api-change-quicksight-42627.json delete mode 100644 .changes/next-release/api-change-route53resolver-67240.json diff --git a/.changes/1.34.3.json b/.changes/1.34.3.json new file mode 100644 index 0000000000..f12e1b9dda --- /dev/null +++ b/.changes/1.34.3.json @@ -0,0 +1,22 @@ +[ + { + "category": "``cognito-idp``", + "description": "[``botocore``] Amazon Cognito now supports trigger versions that define the fields in the request sent to pre token generation Lambda triggers.", + "type": "api-change" + }, + { + "category": "``eks``", + "description": "[``botocore``] Add support for EKS Cluster Access Management.", + "type": "api-change" + }, + { + "category": "``quicksight``", + "description": "[``botocore``] A docs-only release to add missing entities to the API reference.", + "type": "api-change" + }, + { + "category": "``route53resolver``", + "description": "[``botocore``] Add DOH protocols in resolver endpoints.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-cognitoidp-86134.json b/.changes/next-release/api-change-cognitoidp-86134.json deleted file mode 100644 index dbe497e1e6..0000000000 --- a/.changes/next-release/api-change-cognitoidp-86134.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``cognito-idp``", - "description": "[``botocore``] Amazon Cognito now supports trigger versions that define the fields in the request sent to pre token generation Lambda triggers." -} diff --git a/.changes/next-release/api-change-eks-65854.json b/.changes/next-release/api-change-eks-65854.json deleted file mode 100644 index a6f20f748a..0000000000 --- a/.changes/next-release/api-change-eks-65854.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``eks``", - "description": "[``botocore``] Add support for EKS Cluster Access Management." -} diff --git a/.changes/next-release/api-change-quicksight-42627.json b/.changes/next-release/api-change-quicksight-42627.json deleted file mode 100644 index 2c4da09333..0000000000 --- a/.changes/next-release/api-change-quicksight-42627.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``quicksight``", - "description": "[``botocore``] A docs-only release to add missing entities to the API reference." -} diff --git a/.changes/next-release/api-change-route53resolver-67240.json b/.changes/next-release/api-change-route53resolver-67240.json deleted file mode 100644 index a269fa97d5..0000000000 --- a/.changes/next-release/api-change-route53resolver-67240.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``route53resolver``", - "description": "[``botocore``] Add DOH protocols in resolver endpoints." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 15ff587e7b..c40d619559 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.34.3 +====== + +* api-change:``cognito-idp``: [``botocore``] Amazon Cognito now supports trigger versions that define the fields in the request sent to pre token generation Lambda triggers. +* api-change:``eks``: [``botocore``] Add support for EKS Cluster Access Management. +* api-change:``quicksight``: [``botocore``] A docs-only release to add missing entities to the API reference. +* api-change:``route53resolver``: [``botocore``] Add DOH protocols in resolver endpoints. + + 1.34.2 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index 6d4a162dd9..c5019ab19e 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.2' +__version__ = '1.34.3' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index ba586d36a2..350460db20 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.2,<1.35.0 + botocore>=1.34.3,<1.35.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.9.0,<0.10.0 diff --git a/setup.py b/setup.py index ed16d24ac1..8db21b6f46 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.2,<1.35.0', + 'botocore>=1.34.3,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.9.0,<0.10.0', ]