From 5b45465823ba6f942a8a1c4e22caf6e6da38f06c Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Sun, 14 Jan 2024 05:22:48 +0000 Subject: [PATCH 1/2] Add changelog entries from botocore --- .changes/next-release/api-change-sagemaker-11951.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changes/next-release/api-change-sagemaker-11951.json diff --git a/.changes/next-release/api-change-sagemaker-11951.json b/.changes/next-release/api-change-sagemaker-11951.json new file mode 100644 index 0000000000..622410864a --- /dev/null +++ b/.changes/next-release/api-change-sagemaker-11951.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``sagemaker``", + "description": "[``botocore``] This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts." +} From dca34ab35adaabb6dbdd0f38ab11554274d866f7 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Sun, 14 Jan 2024 05:23:02 +0000 Subject: [PATCH 2/2] Bumping version to 1.34.19 --- .changes/1.34.19.json | 7 +++++++ .changes/next-release/api-change-sagemaker-11951.json | 5 ----- CHANGELOG.rst | 6 ++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 8 deletions(-) create mode 100644 .changes/1.34.19.json delete mode 100644 .changes/next-release/api-change-sagemaker-11951.json diff --git a/.changes/1.34.19.json b/.changes/1.34.19.json new file mode 100644 index 0000000000..3f2545ee75 --- /dev/null +++ b/.changes/1.34.19.json @@ -0,0 +1,7 @@ +[ + { + "category": "``sagemaker``", + "description": "[``botocore``] This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-sagemaker-11951.json b/.changes/next-release/api-change-sagemaker-11951.json deleted file mode 100644 index 622410864a..0000000000 --- a/.changes/next-release/api-change-sagemaker-11951.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``sagemaker``", - "description": "[``botocore``] This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 666efceb96..f9e98726b0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,12 @@ CHANGELOG ========= +1.34.19 +======= + +* api-change:``sagemaker``: [``botocore``] This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts. + + 1.34.18 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index d7ad4c6d3c..4a21e2990a 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.18' +__version__ = '1.34.19' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 82fba35f16..20aa668a46 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.18,<1.35.0 + botocore>=1.34.19,<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 0a7de65880..6865b819d4 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.18,<1.35.0', + 'botocore>=1.34.19,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]