-
Notifications
You must be signed in to change notification settings - Fork 343
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[9.0.0] Bump botocore/boto3 requirements (add deprecation reminder ab…
…out Python 3.8 support) (#2161) SUMMARY Bump botocore/boto3 requirements inline with general policy. ISSUE TYPE Feature Pull Request COMPONENT NAME README.md changelogs/fragments/botocore-python.yaml plugins/module_utils/botocore.py plugins/modules/rds_instance.py requirements.txt tests/integration/constraints.txt tests/unit/constraints.txt ADDITIONAL INFORMATION Note: For Python 3.13 users botocore >= 1.29.13 or later is a hard requirement (import errors due to cgi being removed) Reviewed-by: Alina Buzachis
- Loading branch information
Showing
11 changed files
with
36 additions
and
55 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 amazon.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/amazon.aws/pull/2161). | ||
deprecated_features: | ||
- amazon.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/amazon.aws/pull/2161). |
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
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,5 +1,2 @@ | ||
--- | ||
dependencies: | ||
- role: setup_botocore_pip | ||
vars: | ||
botocore_version: 1.29.44 | ||
dependencies: [] |
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,8 +1,7 @@ | ||
# Specifically run tests against the oldest versions that we support | ||
botocore==1.29.0; python_version < '3.13' | ||
botocore==1.29.0; python_version >= '3.13' | ||
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 |
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