From c3f1e7d7f09a9cec64b3084c07450c450e9f9de7 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Fri, 22 Mar 2024 18:05:30 +0000 Subject: [PATCH] Bumping version to 1.34.69 --- .changes/1.34.69.json | 27 +++++++++++++++++++ .../api-change-firehose-87656.json | 5 ---- .../next-release/api-change-kendra-55331.json | 5 ---- .../api-change-pricing-84927.json | 5 ---- .../api-change-rolesanywhere-11037.json | 5 ---- .../api-change-securityhub-98392.json | 5 ---- CHANGELOG.rst | 10 +++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 10 files changed, 40 insertions(+), 28 deletions(-) create mode 100644 .changes/1.34.69.json delete mode 100644 .changes/next-release/api-change-firehose-87656.json delete mode 100644 .changes/next-release/api-change-kendra-55331.json delete mode 100644 .changes/next-release/api-change-pricing-84927.json delete mode 100644 .changes/next-release/api-change-rolesanywhere-11037.json delete mode 100644 .changes/next-release/api-change-securityhub-98392.json diff --git a/.changes/1.34.69.json b/.changes/1.34.69.json new file mode 100644 index 0000000000..f130c4087a --- /dev/null +++ b/.changes/1.34.69.json @@ -0,0 +1,27 @@ +[ + { + "category": "``firehose``", + "description": "[``botocore``] Updates Amazon Firehose documentation for message regarding Enforcing Tags IAM Policy.", + "type": "api-change" + }, + { + "category": "``kendra``", + "description": "[``botocore``] Documentation update, March 2024. Corrects some docs for Amazon Kendra.", + "type": "api-change" + }, + { + "category": "``pricing``", + "description": "[``botocore``] Add ResourceNotFoundException to ListPriceLists and GetPriceListFileUrl APIs", + "type": "api-change" + }, + { + "category": "``rolesanywhere``", + "description": "[``botocore``] This release relaxes constraints on the durationSeconds request parameter for the *Profile APIs that support it. This parameter can now take on values that go up to 43200.", + "type": "api-change" + }, + { + "category": "``securityhub``", + "description": "[``botocore``] Added new resource detail object to ASFF, including resource for LastKnownExploitAt", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-firehose-87656.json b/.changes/next-release/api-change-firehose-87656.json deleted file mode 100644 index bab77035a6..0000000000 --- a/.changes/next-release/api-change-firehose-87656.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``firehose``", - "description": "[``botocore``] Updates Amazon Firehose documentation for message regarding Enforcing Tags IAM Policy." -} diff --git a/.changes/next-release/api-change-kendra-55331.json b/.changes/next-release/api-change-kendra-55331.json deleted file mode 100644 index f2c6708980..0000000000 --- a/.changes/next-release/api-change-kendra-55331.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``kendra``", - "description": "[``botocore``] Documentation update, March 2024. Corrects some docs for Amazon Kendra." -} diff --git a/.changes/next-release/api-change-pricing-84927.json b/.changes/next-release/api-change-pricing-84927.json deleted file mode 100644 index a948d4ef1a..0000000000 --- a/.changes/next-release/api-change-pricing-84927.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``pricing``", - "description": "[``botocore``] Add ResourceNotFoundException to ListPriceLists and GetPriceListFileUrl APIs" -} diff --git a/.changes/next-release/api-change-rolesanywhere-11037.json b/.changes/next-release/api-change-rolesanywhere-11037.json deleted file mode 100644 index 868d36e071..0000000000 --- a/.changes/next-release/api-change-rolesanywhere-11037.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``rolesanywhere``", - "description": "[``botocore``] This release relaxes constraints on the durationSeconds request parameter for the *Profile APIs that support it. This parameter can now take on values that go up to 43200." -} diff --git a/.changes/next-release/api-change-securityhub-98392.json b/.changes/next-release/api-change-securityhub-98392.json deleted file mode 100644 index cd33762b3d..0000000000 --- a/.changes/next-release/api-change-securityhub-98392.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``securityhub``", - "description": "[``botocore``] Added new resource detail object to ASFF, including resource for LastKnownExploitAt" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0f52166fc5..8f43d42d59 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ CHANGELOG ========= +1.34.69 +======= + +* api-change:``firehose``: [``botocore``] Updates Amazon Firehose documentation for message regarding Enforcing Tags IAM Policy. +* api-change:``kendra``: [``botocore``] Documentation update, March 2024. Corrects some docs for Amazon Kendra. +* api-change:``pricing``: [``botocore``] Add ResourceNotFoundException to ListPriceLists and GetPriceListFileUrl APIs +* api-change:``rolesanywhere``: [``botocore``] This release relaxes constraints on the durationSeconds request parameter for the *Profile APIs that support it. This parameter can now take on values that go up to 43200. +* api-change:``securityhub``: [``botocore``] Added new resource detail object to ASFF, including resource for LastKnownExploitAt + + 1.34.68 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 138c185ddb..9e72083285 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.68' +__version__ = '1.34.69' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 9d4a8ddd25..511a41a536 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.68,<1.35.0 + botocore>=1.34.69,<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 d0be2a33c9..3d03f27ef2 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.34.68,<1.35.0', + 'botocore>=1.34.69,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]