-
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.
[7.0.0] Bump minimum botocore requirements
- Loading branch information
Showing
8 changed files
with
49 additions
and
19 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,6 @@ | ||
breaking_changes: | ||
- The amazon.aws collection has dropped support for ``botocore<1.29.0`` and | ||
``boto3<1.26.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/1763). |
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,10 @@ | ||
breaking_changes: | ||
- amazon.aws collection - due to the AWS SDKs announcing the end of support | ||
for Python less than 3.7 (https://aws.amazon.com/blogs/developer/python-support-policy-updates-for-aws-sdks-and-tools/) | ||
support for Python less than 3.7 by this collection wss been deprecated in release 6.0.0 and removed in release 7.0.0. | ||
(https://github.com/ansible-collections/amazon.aws/pull/1763). | ||
|
||
# We've already announced the deprecation for <3.8 (with 6.0.0), dropping support for <3.9 on ours side will happen | ||
# after April 2026. This is about 2 years + 5 months away assuming a November 7.0.0 release, we could announce | ||
# the deprecation now, but assuming we release 8.0.0 in about 6 months a just short of 2 year | ||
# deprecation feels fine given it's predictable. |
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,2 +1,2 @@ | ||
modules: | ||
python_requires: '>=3.6' | ||
python_requires: '>=3.7' |
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 | ||
boto3==1.22.0 | ||
botocore==1.25.0 | ||
botocore==1.29.0 | ||
boto3==1.26.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.23.0 | ||
awscli==1.27.0 |