-
Notifications
You must be signed in to change notification settings - Fork 831
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
Python Seldon Core Library dependency update #5951
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 |
---|---|---|
|
@@ -33,12 +33,12 @@ | |
"jaeger-client >= 4.1.0, < 4.5.0", | ||
"grpcio-opentracing >= 1.1.4, < 1.2.0", | ||
"grpcio-reflection < 2.0.0", | ||
"gunicorn >= 19.9.0, < 20.2.0", | ||
"gunicorn >= 19.9.0", | ||
"setuptools >= 65.5.1", | ||
"prometheus_client >= 0.7.1, < 0.9.0", | ||
"werkzeug >= 2.1.1, < 2.3", | ||
"werkzeug==3.0.4", | ||
# Addresses CVE SNYK-PYTHON-CRYPTOGRAPHY-3315328 | ||
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. (not related to this PR but this comment might be stale) |
||
"cryptography >= 39.0.1, < 41.1", | ||
"cryptography==43.0.1", | ||
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. should we just adjust the upper bound, why do we have to pin it to a particular version 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. I suggest 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.
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. Lets have a lower bound with the patched version we would want to have. It is unclear whether we have to have an upper bound, it depends on the tests. |
||
# Addresses CVE SNYK-PYTHON-PYYAML-590151 | ||
"PyYAML >= 5.4, <= 6.0.1", | ||
# Addresses CVE PRISMA-2021-0020 | ||
|
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.
should we just bump up the upper version, why do we have to pin it to a particular version?
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.
does this range work based on the CVE patch versions?
>=2.3.8, <=3.0.4
@sakoush @gsunner
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.
Perhaps we can have only a min bound, i.e.
>=2.3.8
. Upper bound could be added if there are issues with tests.