-
Notifications
You must be signed in to change notification settings - Fork 7
[Snyk] Fix for 24 vulnerabilities #534
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 | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -108,3 +108,5 @@ Sickle==0.7.0 # https://pypi.org/project/sickle/ | |||||||||
| # ------------------------------------------------------------------------------ | ||||||||||
| oaipmh-scythe==0.13.0 # https://pypi.org/project/oaipmh-scythe/ | ||||||||||
|
|
||||||||||
| sqlparse>=0.5.4 # not directly required, pinned by Snyk to avoid a vulnerability | ||||||||||
| zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability | ||||||||||
|
Comment on lines
+111
to
+112
|
||||||||||
| sqlparse>=0.5.4 # not directly required, pinned by Snyk to avoid a vulnerability | |
| zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability | |
| sqlparse==0.5.4 # not directly required, pinned by Snyk to avoid a vulnerability (was '>=0.5.4') | |
| zipp==3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability (was '>=3.19.1') |
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.
The inline note says "pinned by Snyk", but the specifier used is ">=" which is a constraint, not a pin. Either change the specifier to an exact pin or update the wording so it’s accurate.