From 347c1d6d69610709385fe7419955bc61755878b2 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Thu, 8 Feb 2024 19:09:20 +0000 Subject: [PATCH] Bumping version to 1.34.38 --- .changes/1.34.38.json | 17 +++++++++++++++++ .../api-change-codepipeline-55029.json | 5 ----- .../api-change-quicksight-48407.json | 5 ----- .../api-change-workspaces-50224.json | 5 ----- CHANGELOG.rst | 8 ++++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 8 files changed, 28 insertions(+), 18 deletions(-) create mode 100644 .changes/1.34.38.json delete mode 100644 .changes/next-release/api-change-codepipeline-55029.json delete mode 100644 .changes/next-release/api-change-quicksight-48407.json delete mode 100644 .changes/next-release/api-change-workspaces-50224.json diff --git a/.changes/1.34.38.json b/.changes/1.34.38.json new file mode 100644 index 0000000000..12b3ee148c --- /dev/null +++ b/.changes/1.34.38.json @@ -0,0 +1,17 @@ +[ + { + "category": "``codepipeline``", + "description": "[``botocore``] Add ability to execute pipelines with new parallel & queued execution modes and add support for triggers with filtering on branches and file paths.", + "type": "api-change" + }, + { + "category": "``quicksight``", + "description": "[``botocore``] General Interactions for Visuals; Waterfall Chart Color Configuration; Documentation Update", + "type": "api-change" + }, + { + "category": "``workspaces``", + "description": "[``botocore``] This release introduces User-Decoupling feature. This feature allows Workspaces Core customers to provision workspaces without providing users. CreateWorkspaces and DescribeWorkspaces APIs will now take a new optional parameter \"WorkspaceName\".", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-codepipeline-55029.json b/.changes/next-release/api-change-codepipeline-55029.json deleted file mode 100644 index 414026e610..0000000000 --- a/.changes/next-release/api-change-codepipeline-55029.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``codepipeline``", - "description": "[``botocore``] Add ability to execute pipelines with new parallel & queued execution modes and add support for triggers with filtering on branches and file paths." -} diff --git a/.changes/next-release/api-change-quicksight-48407.json b/.changes/next-release/api-change-quicksight-48407.json deleted file mode 100644 index 3ab7634fce..0000000000 --- a/.changes/next-release/api-change-quicksight-48407.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``quicksight``", - "description": "[``botocore``] General Interactions for Visuals; Waterfall Chart Color Configuration; Documentation Update" -} diff --git a/.changes/next-release/api-change-workspaces-50224.json b/.changes/next-release/api-change-workspaces-50224.json deleted file mode 100644 index 4aaf482dab..0000000000 --- a/.changes/next-release/api-change-workspaces-50224.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``workspaces``", - "description": "[``botocore``] This release introduces User-Decoupling feature. This feature allows Workspaces Core customers to provision workspaces without providing users. CreateWorkspaces and DescribeWorkspaces APIs will now take a new optional parameter \"WorkspaceName\"." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 65d95e5dfa..2c532ace61 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.34.38 +======= + +* api-change:``codepipeline``: [``botocore``] Add ability to execute pipelines with new parallel & queued execution modes and add support for triggers with filtering on branches and file paths. +* api-change:``quicksight``: [``botocore``] General Interactions for Visuals; Waterfall Chart Color Configuration; Documentation Update +* api-change:``workspaces``: [``botocore``] This release introduces User-Decoupling feature. This feature allows Workspaces Core customers to provision workspaces without providing users. CreateWorkspaces and DescribeWorkspaces APIs will now take a new optional parameter "WorkspaceName". + + 1.34.37 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 3f7e2993f3..9b3b6c42ba 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.37' +__version__ = '1.34.38' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index d6f6c24980..74d9d2e459 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.37,<1.35.0 + botocore>=1.34.38,<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 7cdeb1b8ba..5d80097da6 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.37,<1.35.0', + 'botocore>=1.34.38,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]