-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Security upgrade idna from 2.10 to 3.7 #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,3 +2,4 @@ | |
| # see https://airflow.apache.org/docs/apache-airflow/stable/installation/installing-from-pypi.html#constraints-files | ||
| apache-airflow[gcp]==1.10.15 # updates beyond 1.10.15 are untested with this code | ||
| apache-airflow-backport-providers-google==2021.3.3 | ||
| idna>=3.7 # not directly required, pinned by Snyk to avoid a vulnerability | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P1: This Prompt for AI agents |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change introduces a critical dependency conflict. While intended to fix
SNYK-PYTHON-IDNA-6597975, upgrading toidna>=3.7is incompatible withrequests < 2.26.0. The PR description confirms thatrequests 2.23.0is present in the environment, which strictly requiresidna<3. This conflict will cause the installation to fail. To resolve this while addressing the security vulnerability,requestsmust also be upgraded to version2.26.0or higher, assuming it remains compatible withapache-airflow==1.10.15.