-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Security upgrade urllib3 from 2.0.7 to 2.2.2 #24
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 | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -6,3 +6,4 @@ google-auth==2.17.3; python_version > '3.0' | |||||||||
| Werkzeug==3.1.8; python_version >= '3.9' | ||||||||||
| requests==2.34.2; python_version >= '3.10' | ||||||||||
| requests-toolbelt==1.0.0 | ||||||||||
| urllib3>=2.2.2 # 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. P0: Missing Python version marker on urllib3 dependency — will break installation on Python 2.7 (the project's target runtime per app.yaml). urllib3 2.2.2 requires Python >= 3.8, but the new line has no Prompt for AI agents
Suggested change
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. P2: Use Prompt for AI agents
Suggested change
|
||||||||||
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.
In
requirements.txt, it is best practice to pin dependencies to exact versions using==rather than>=. This ensures reproducible builds and prevents unexpected breaking changes when new versions of the package are released. Consider pinningurllib3to2.2.2exactly.