From 75c5d39719479cb49d47fdd9cf30ab8795516474 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Fri, 10 May 2024 18:23:01 +0000 Subject: [PATCH] Bumping version to 1.34.103 --- .changes/1.34.103.json | 22 +++++++++++++++++++ .../api-change-discovery-48228.json | 5 ----- .../api-change-greengrassv2-12496.json | 5 ----- .../api-change-sagemaker-92744.json | 5 ----- .../api-change-ssooidc-80819.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.103.json delete mode 100644 .changes/next-release/api-change-discovery-48228.json delete mode 100644 .changes/next-release/api-change-greengrassv2-12496.json delete mode 100644 .changes/next-release/api-change-sagemaker-92744.json delete mode 100644 .changes/next-release/api-change-ssooidc-80819.json diff --git a/.changes/1.34.103.json b/.changes/1.34.103.json new file mode 100644 index 0000000000..f1815e2163 --- /dev/null +++ b/.changes/1.34.103.json @@ -0,0 +1,22 @@ +[ + { + "category": "``discovery``", + "description": "[``botocore``] add v2 smoke tests and smithy smokeTests trait for SDK testing", + "type": "api-change" + }, + { + "category": "``greengrassv2``", + "description": "[``botocore``] Mark ComponentVersion in ComponentDeploymentSpecification as required.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] Introduced support for G6 instance types on Sagemaker Notebook Instances and on SageMaker Studio for JupyterLab and CodeEditor applications.", + "type": "api-change" + }, + { + "category": "``sso-oidc``", + "description": "[``botocore``] Updated request parameters for PKCE support.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-discovery-48228.json b/.changes/next-release/api-change-discovery-48228.json deleted file mode 100644 index 1610490a14..0000000000 --- a/.changes/next-release/api-change-discovery-48228.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``discovery``", - "description": "[``botocore``] add v2 smoke tests and smithy smokeTests trait for SDK testing" -} diff --git a/.changes/next-release/api-change-greengrassv2-12496.json b/.changes/next-release/api-change-greengrassv2-12496.json deleted file mode 100644 index 540be947da..0000000000 --- a/.changes/next-release/api-change-greengrassv2-12496.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``greengrassv2``", - "description": "[``botocore``] Mark ComponentVersion in ComponentDeploymentSpecification as required." -} diff --git a/.changes/next-release/api-change-sagemaker-92744.json b/.changes/next-release/api-change-sagemaker-92744.json deleted file mode 100644 index 41a5f795a3..0000000000 --- a/.changes/next-release/api-change-sagemaker-92744.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``sagemaker``", - "description": "[``botocore``] Introduced support for G6 instance types on Sagemaker Notebook Instances and on SageMaker Studio for JupyterLab and CodeEditor applications." -} diff --git a/.changes/next-release/api-change-ssooidc-80819.json b/.changes/next-release/api-change-ssooidc-80819.json deleted file mode 100644 index b11f788144..0000000000 --- a/.changes/next-release/api-change-ssooidc-80819.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``sso-oidc``", - "description": "[``botocore``] Updated request parameters for PKCE support." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4a136fcf2d..9c9d6888f9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.34.103 +======== + +* api-change:``discovery``: [``botocore``] add v2 smoke tests and smithy smokeTests trait for SDK testing +* api-change:``greengrassv2``: [``botocore``] Mark ComponentVersion in ComponentDeploymentSpecification as required. +* api-change:``sagemaker``: [``botocore``] Introduced support for G6 instance types on Sagemaker Notebook Instances and on SageMaker Studio for JupyterLab and CodeEditor applications. +* api-change:``sso-oidc``: [``botocore``] Updated request parameters for PKCE support. + + 1.34.102 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index e0a400365e..5cc7c1991a 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.102' +__version__ = '1.34.103' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 64e168a96a..1f7b79a43f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.102,<1.35.0 + botocore>=1.34.103,<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 09d566916f..01b3568ac4 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.102,<1.35.0', + 'botocore>=1.34.103,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]