From e4860dbc49acb19ac52affd088ab4355e2e3479a Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Tue, 14 May 2024 18:04:25 +0000 Subject: [PATCH 1/2] Add changelog entries from botocore --- .changes/next-release/api-change-connect-72309.json | 5 +++++ .changes/next-release/api-change-s3-19289.json | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .changes/next-release/api-change-connect-72309.json create mode 100644 .changes/next-release/api-change-s3-19289.json diff --git a/.changes/next-release/api-change-connect-72309.json b/.changes/next-release/api-change-connect-72309.json new file mode 100644 index 0000000000..6c0ce52551 --- /dev/null +++ b/.changes/next-release/api-change-connect-72309.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``connect``", + "description": "[``botocore``] Amazon Connect provides enhanced search capabilities for flows & flow modules on the Connect admin website and programmatically using APIs. You can search for flows and flow modules by name, description, type, status, and tags, to filter and identify a specific flow in your Connect instances." +} diff --git a/.changes/next-release/api-change-s3-19289.json b/.changes/next-release/api-change-s3-19289.json new file mode 100644 index 0000000000..8ac759999a --- /dev/null +++ b/.changes/next-release/api-change-s3-19289.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``s3``", + "description": "[``botocore``] Updated a few x-id in the http uri traits" +} From 8605cd6bbb61b96179bf6e93192fc43ab41c3ee3 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Tue, 14 May 2024 18:05:44 +0000 Subject: [PATCH 2/2] Bumping version to 1.34.105 --- .changes/1.34.105.json | 12 ++++++++++++ .changes/next-release/api-change-connect-72309.json | 5 ----- .changes/next-release/api-change-s3-19289.json | 5 ----- CHANGELOG.rst | 7 +++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 7 files changed, 22 insertions(+), 13 deletions(-) create mode 100644 .changes/1.34.105.json delete mode 100644 .changes/next-release/api-change-connect-72309.json delete mode 100644 .changes/next-release/api-change-s3-19289.json diff --git a/.changes/1.34.105.json b/.changes/1.34.105.json new file mode 100644 index 0000000000..ee8c3cc9dd --- /dev/null +++ b/.changes/1.34.105.json @@ -0,0 +1,12 @@ +[ + { + "category": "``connect``", + "description": "[``botocore``] Amazon Connect provides enhanced search capabilities for flows & flow modules on the Connect admin website and programmatically using APIs. You can search for flows and flow modules by name, description, type, status, and tags, to filter and identify a specific flow in your Connect instances.", + "type": "api-change" + }, + { + "category": "``s3``", + "description": "[``botocore``] Updated a few x-id in the http uri traits", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-connect-72309.json b/.changes/next-release/api-change-connect-72309.json deleted file mode 100644 index 6c0ce52551..0000000000 --- a/.changes/next-release/api-change-connect-72309.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``connect``", - "description": "[``botocore``] Amazon Connect provides enhanced search capabilities for flows & flow modules on the Connect admin website and programmatically using APIs. You can search for flows and flow modules by name, description, type, status, and tags, to filter and identify a specific flow in your Connect instances." -} diff --git a/.changes/next-release/api-change-s3-19289.json b/.changes/next-release/api-change-s3-19289.json deleted file mode 100644 index 8ac759999a..0000000000 --- a/.changes/next-release/api-change-s3-19289.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``s3``", - "description": "[``botocore``] Updated a few x-id in the http uri traits" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4256b35506..75f941797c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.34.105 +======== + +* api-change:``connect``: [``botocore``] Amazon Connect provides enhanced search capabilities for flows & flow modules on the Connect admin website and programmatically using APIs. You can search for flows and flow modules by name, description, type, status, and tags, to filter and identify a specific flow in your Connect instances. +* api-change:``s3``: [``botocore``] Updated a few x-id in the http uri traits + + 1.34.104 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index 3877946829..3de680a60e 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.104' +__version__ = '1.34.105' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 3b77005b1c..d623a43c45 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.104,<1.35.0 + botocore>=1.34.105,<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 19ff749853..0b3385048d 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.104,<1.35.0', + 'botocore>=1.34.105,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]