-
Notifications
You must be signed in to change notification settings - Fork 890
[anaconda]-fixing security vulnerabilities GHSA-87hc-h4r5-73f7: Werkzeug, GHSA-c336-7962-wfj2: distributed and GHSA-8rrh-rw8j-w5fx: wheel #1790
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
83b1a24
7280d72
161c72c
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -3,8 +3,8 @@ | |||||
| # vulnerabilities: | ||||||
| # werkzeug - [GHSA-f9vj-2wh5-fj8j] | ||||||
|
|
||||||
| vulnerable_packages=( "mistune=3.0.1" "aiohttp=3.10.11" "cryptography=44.0.1" "h11=0.16.0" "jinja2=3.1.6" "jupyter_core=5.8.1" "protobuf=5.29.5" "requests=2.32.4" "setuptools=78.1.1" "transformers=4.53.0" "urllib3=2.5.0" "Werkzeug=3.0.6" "jupyter-lsp=2.2.2" "scrapy=2.11.2" \ | ||||||
| "zipp=3.19.1" "tornado=6.4.2" "jupyterlab=4.4.8" "imagecodecs=2024.9.22" "fonttools=4.60.2" "pyarrow=17.0.0" "brotli=1.2.0" ) | ||||||
| vulnerable_packages=( "mistune=3.0.1" "aiohttp=3.10.11" "cryptography=44.0.1" "h11=0.16.0" "jinja2=3.1.6" "jupyter_core=5.8.1" "protobuf=5.29.5" "requests=2.32.4" "setuptools=78.1.1" "transformers=4.53.0" "urllib3=2.5.0" "Werkzeug=3.1.5" "jupyter-lsp=2.2.2" "scrapy=2.11.2" \ | ||||||
| "zipp=3.19.1" "tornado=6.4.2" "jupyterlab=4.4.8" "imagecodecs=2024.9.22" "fonttools=4.60.2" "pyarrow=17.0.0" "brotli=1.2.0" "distributed=2026.1.0" "wheel=0.46.2" ) | ||||||
|
Comment on lines
3
to
+7
|
||||||
|
|
||||||
| # Define the number of rows (based on the length of vulnerable_packages) | ||||||
| rows=${#vulnerable_packages[@]} | ||||||
|
|
@@ -28,7 +28,7 @@ done | |||||
|
|
||||||
| # Add an array for packages that should always pin to the provided version, | ||||||
| # even if higher version is available in conda channel | ||||||
| pin_to_required_version=("transformers" "imagecodecs" "brotli" "protobuf") | ||||||
| pin_to_required_version=("transformers" "imagecodecs" "brotli" "protobuf" "distributed") | ||||||
|
||||||
| pin_to_required_version=("transformers" "imagecodecs" "brotli" "protobuf" "distributed") | |
| pin_to_required_version=("transformers" "imagecodecs" "brotli" "protobuf") |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| { | ||
| "version": "1.3.11", | ||
| "version": "1.3.12", | ||
| "build": { | ||
| "latest": true, | ||
| "rootDistro": "debian", | ||
|
|
||
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.
vulnerable_packagesusesWerkzeug=...with capital-W while other entries are lowercase. Since this name is also passed toconda search/conda install, the mixed casing can make the conda lookup/install unreliable (conda package names are typically lowercase). Consider switching this entry towerkzeug=...for consistency/reliability.