Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion run/idp-sql/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ pg8000==1.31.5
gunicorn==23.0.0
firebase-admin==7.0.0
structlog==25.1.0
urllib3<2.0.0 #https://stackoverflow.com/questions/76175361/firebase-authentication-httpresponse-object-has-no-attribute-strict-status
urllib3<2.6.4 #https://stackoverflow.com/questions/76175361/firebase-authentication-httpresponse-object-has-no-attribute-strict-status
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The comment referencing the StackOverflow issue is now misleading and contradictory. The linked issue explains why urllib3 was restricted to versions below 2.0.0. Since this PR updates the dependency to allow version 2 (which is compatible with firebase-admin v7.0.0), the comment should be removed. Additionally, to ensure the application actually uses version 2 and incorporates the security fixes mentioned in the release notes (e.g., the decompression bomb fixes in v2.6.0 and the redirect fix in v2.6.3), it is recommended to add a lower bound to the version constraint.

urllib3>=2.6.3,<2.6.4