-
Notifications
You must be signed in to change notification settings - Fork 7
[Snyk] Security upgrade lxml from 5.4.0 to 6.1.0 #622
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -101,4 +101,5 @@ wagtail-json-widget==0.0.9 # https://pypi.org/project/wagtail-json-widget/ | |||||
| # Citation export (CSL / BibTeX via citeproc-py) | ||||||
| # ------------------------------------------------------------------------------ | ||||||
| citeproc-py==0.9.0 # https://pypi.org/project/citeproc-py/ | ||||||
| citeproc-py-styles==0.1.5 # https://pypi.org/project/citeproc-py-styles/ (bibtex.csl, etc.) | ||||||
| citeproc-py-styles==0.1.5 # https://pypi.org/project/citeproc-py-styles/ (bibtex.csl, etc.) | ||||||
| lxml>=6.1.0 # not directly required, pinned by Snyk to avoid a vulnerability | ||||||
|
||||||
| lxml>=6.1.0 # not directly required, pinned by Snyk to avoid a vulnerability | |
| lxml>=6.1.0 # direct dependency; explicitly constrained to avoid a vulnerability |
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.
requirements/base.txtconsistently pins dependencies with==(likely for reproducible installs), but this addslxml>=6.1.0, which can pull in unexpected future major/minor releases. Consider pinning tolxml==6.1.0(or at least bounding it, e.g.<7) to match the rest of this file’s versioning approach.