From e7963897e673cf2086c8afa4087790f082f56add Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 20 Nov 2023 20:17:16 +0000 Subject: [PATCH] Bumping version to 1.29.4 --- .changes/1.29.4.json | 22 +++++++++++++++++++ .../api-change-codestarconnections-2104.json | 5 ----- .../next-release/api-change-docdb-11702.json | 5 ----- .../next-release/api-change-ec2-37681.json | 5 ----- .../enhancement-MetadataFetcher-40786.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.29.4.json delete mode 100644 .changes/next-release/api-change-codestarconnections-2104.json delete mode 100644 .changes/next-release/api-change-docdb-11702.json delete mode 100644 .changes/next-release/api-change-ec2-37681.json delete mode 100644 .changes/next-release/enhancement-MetadataFetcher-40786.json diff --git a/.changes/1.29.4.json b/.changes/1.29.4.json new file mode 100644 index 0000000000..7a2400cd93 --- /dev/null +++ b/.changes/1.29.4.json @@ -0,0 +1,22 @@ +[ + { + "category": "IMDS", + "description": "[``botocore``] Adds a config option to opt out of IMDSv1 fallback", + "type": "enhancement" + }, + { + "category": "``codestar-connections``", + "description": "[``botocore``] This release updates a few CodeStar Connections related APIs.", + "type": "api-change" + }, + { + "category": "``docdb``", + "description": "[``botocore``] Amazon DocumentDB updates for new cluster storage configuration: Amazon DocumentDB I/O-Optimized.", + "type": "api-change" + }, + { + "category": "``ec2``", + "description": "[``botocore``] This release adds support for Security group referencing over Transit gateways, enabling you to simplify Security group management and control of instance-to-instance traffic across VPCs that are connected by Transit gateway.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-codestarconnections-2104.json b/.changes/next-release/api-change-codestarconnections-2104.json deleted file mode 100644 index 57b7ed8eca..0000000000 --- a/.changes/next-release/api-change-codestarconnections-2104.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``codestar-connections``", - "description": "[``botocore``] This release updates a few CodeStar Connections related APIs." -} diff --git a/.changes/next-release/api-change-docdb-11702.json b/.changes/next-release/api-change-docdb-11702.json deleted file mode 100644 index e1894662d3..0000000000 --- a/.changes/next-release/api-change-docdb-11702.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``docdb``", - "description": "[``botocore``] Amazon DocumentDB updates for new cluster storage configuration: Amazon DocumentDB I/O-Optimized." -} diff --git a/.changes/next-release/api-change-ec2-37681.json b/.changes/next-release/api-change-ec2-37681.json deleted file mode 100644 index ec706d8501..0000000000 --- a/.changes/next-release/api-change-ec2-37681.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ec2``", - "description": "[``botocore``] This release adds support for Security group referencing over Transit gateways, enabling you to simplify Security group management and control of instance-to-instance traffic across VPCs that are connected by Transit gateway." -} diff --git a/.changes/next-release/enhancement-MetadataFetcher-40786.json b/.changes/next-release/enhancement-MetadataFetcher-40786.json deleted file mode 100644 index c44c84bb39..0000000000 --- a/.changes/next-release/enhancement-MetadataFetcher-40786.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "enhancement", - "category": "IMDS", - "description": "[``botocore``] Adds a config option to opt out of IMDSv1 fallback" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 30f46e32ec..d213adb9cb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.29.4 +====== + +* enhancement:IMDS: [``botocore``] Adds a config option to opt out of IMDSv1 fallback +* api-change:``codestar-connections``: [``botocore``] This release updates a few CodeStar Connections related APIs. +* api-change:``docdb``: [``botocore``] Amazon DocumentDB updates for new cluster storage configuration: Amazon DocumentDB I/O-Optimized. +* api-change:``ec2``: [``botocore``] This release adds support for Security group referencing over Transit gateways, enabling you to simplify Security group management and control of instance-to-instance traffic across VPCs that are connected by Transit gateway. + + 1.29.3 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index cc10896a61..15c034de24 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.29.3' +__version__ = '1.29.4' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 599d678d2e..5c6946d93a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.32.3,<1.33.0 + botocore>=1.32.4,<1.33.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.7.0,<0.8.0 diff --git a/setup.py b/setup.py index 7af4da183c..e545695b46 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.32.3,<1.33.0', + 'botocore>=1.32.4,<1.33.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.7.0,<0.8.0', ]