-
Notifications
You must be signed in to change notification settings - Fork 398
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump botocore/boto3 requirements (add deprecation reminder about Pyt…
…hon 3.8 support) (#2195) (#2196) This is a backport of PR #2195 as merged into main (a5f54a5). SUMMARY Bump botocore/boto3 requirements (add deprecation reminder about Python 3.8 support ISSUE TYPE Bugfix Pull Request Docs Pull Request Feature Pull Request New Module Pull Request COMPONENT NAME ADDITIONAL INFORMATION Reviewed-by: Alina Buzachis
- Loading branch information
1 parent
7a7e3ea
commit 9acdc0a
Showing
6 changed files
with
23 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
breaking_changes: | ||
- The community.aws collection has dropped support for ``botocore<1.31.0`` and | ||
``boto3<1.28.0``. Most modules will continue to work with older versions of | ||
the AWS SDK. However, compatability with older versions of the SDK is not guaranteed | ||
and will not be tested. When using older versions of the SDK a warning will | ||
be emitted by Ansible | ||
(https://github.com/ansible-collections/community.aws/pull/2195). | ||
deprecated_features: | ||
- community.aws collection - due to the AWS SDKs announcing the end of support | ||
for Python less than 3.8 (https://aws.amazon.com/blogs/developer/python-support-policy-updates-for-aws-sdks-and-tools/) | ||
support for Python less than 3.8 by this collection has been deprecated | ||
and will removed in release 10.0.0 | ||
(https://github.com/ansible-collections/community.aws/pull/2195). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Specifically run tests against the oldest versions that we support | ||
botocore==1.29.0 | ||
boto3==1.26.0 | ||
botocore==1.31.0 | ||
boto3==1.28.0 | ||
|
||
# AWS CLI has `botocore==` dependencies, provide the one that matches botocore | ||
# to avoid needing to download over a years worth of awscli wheels. | ||
awscli==1.27.0 | ||
awscli==1.29.0 |