-
Notifications
You must be signed in to change notification settings - Fork 2
[Snyk] Fix for 2 vulnerabilities #37
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: master
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 |
|---|---|---|
|
|
@@ -21,8 +21,8 @@ s3transfer==0.1.1 | |
| six==1.10.0 | ||
| tqdm==4.11.2 | ||
| Unidecode==0.4.19 | ||
| Werkzeug==0.15.5 | ||
| Werkzeug==3.1.5 | ||
| wsgi-request-logger==0.4.5 | ||
| zappa==0.20.2 | ||
| wheel>=0.38.0 # not directly required, pinned by Snyk to avoid a vulnerability | ||
| urllib3>=1.26.5 # not directly required, pinned by Snyk to avoid a vulnerability | ||
| urllib3>=2.6.3 # 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. 🛑 Dependency Conflict Risk: The urllib3 upgrade to >=2.6.3 combined with other outdated dependencies creates a cascade of compatibility issues. The PR warning shows multiple dependency conflicts including missing required packages (MarkupSafe for Jinja2, s3transfer version mismatch for boto3). These conflicts could cause import errors or runtime failures. |
||
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.
🛑 Breaking Change Risk: Werkzeug upgrade from 0.15.5 to 3.1.5 is a major version jump that introduces breaking changes. This could cause runtime failures with Flask 1.0 which expects Werkzeug>=0.14 but may not be compatible with 3.x versions. The PR warning shows Flask 1.0 has requirement Werkzeug>=0.14, but you have Werkzeug 3.1.5, indicating a potential compatibility issue.