-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Fix for 3 vulnerabilities #173
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 |
|---|---|---|
|
|
@@ -74,7 +74,7 @@ git+https://github.com/zapier/django-rest-hooks.git@v1.6.0 | |
| # via -r requirements.in | ||
| django-statsd==2.5.2 | ||
| # via -r requirements.in | ||
| django==3.1.8 | ||
| django==4.2.27 | ||
|
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. Bug: Source requirements.in not updated, fix will be revertedThe |
||
| # via | ||
| # -r requirements.in | ||
| # django-axes | ||
|
|
@@ -205,7 +205,7 @@ social-auth-core==4.0.2 | |
| # via | ||
| # -r requirements.in | ||
| # social-auth-app-django | ||
| sqlparse==0.3.0 | ||
| sqlparse==0.5.4 | ||
| # via django | ||
| statshog==1.0.6 | ||
| # via -r requirements.in | ||
|
|
||
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.
Bug: Django 4.2 requires higher asgiref version than pinned
The upgrade to
django==4.2.27creates a dependency conflict withasgiref==3.3.1which remains pinned at line 13. Django 4.2.x requiresasgiref>=3.6.0, but the current version is 3.3.1. This incompatibility will cause pip to fail during dependency resolution or result in runtime errors. The PR's own warning explicitly notes this conflict.Additional Locations (1)
requirements.txt#L12-L13