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 requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ botocore>=1.35,<1.36
celery>=5.2.6
coverage>=4.5.4,<5.0 # Coverage 5.x moves from a json database to SQLite. Moving to 5.x will require substantial rewrites in ietf.utils.test_runner and ietf.release.views
defusedxml>=0.7.1 # for TastyPie when using xml; not a declared dependency
Django>4.2,<5
Django>4.2.28

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

critical

The version specifier >4.2.28 for Django excludes version 4.2.28 itself. As this PR aims to fix a security vulnerability by upgrading to 4.2.28, this specifier will not install the intended version. Instead, it will look for a version strictly greater than 4.2.28.

To ensure the correct version is installed, please change the specifier to >=4.2.28. It is also advisable to retain the upper bound <5 from the previous constraint to prevent accidentally pulling in Django 5, for which the project does not seem to be ready yet.

Django>=4.2.28,<5

django-admin-rangefilter>=0.13.2
django-analytical>=3.1.0
django-bootstrap5>=21.3
Expand Down
Loading