Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fixing urllib3 vulnerability
  • Loading branch information
sireeshajonnalagadda authored Sep 9, 2025
commit 481b32857f1e2fe5c5db2f01e6aa8e7d95d221ec
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ sudo_if /opt/conda/bin/python3 -m pip install --upgrade pip
# https://github.com/advisories/GHSA-h4gh-qq45-vh27
update_python_package /opt/conda/bin/python3 cryptography "43.0.1"

# https://github.com/advisories/GHSA-34jh-p97f-mpxf
update_conda_package urllib3 "1.26.19"
# https://github.com/advisories/GHSA-pq67-6m6q-mj2v
update_conda_package urllib3 "2.5.0"

# https://github.com/advisories/GHSA-9hjg-9r4m-mvj7
update_conda_package requests "2.32.4"
Expand Down
6 changes: 3 additions & 3 deletions src/universal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ You can decide how often you want updates by referencing a [semantic version](ht
For example:

- `mcr.microsoft.com/devcontainers/universal:4-noble`
- `mcr.microsoft.com/devcontainers/universal:4.0-noble`
- `mcr.microsoft.com/devcontainers/universal:4.0.0-noble`
- `mcr.microsoft.com/devcontainers/universal:4.1-noble`
- `mcr.microsoft.com/devcontainers/universal:4.1.0-noble`

See [history](history) for information on the contents of each version and [here for a complete list of available tags](https://mcr.microsoft.com/v2/devcontainers/universal/tags/list).

Expand All @@ -47,7 +47,7 @@ Access to the Anaconda repository is covered by the [Anaconda Terms of Service](

While the image itself works unmodified, you can also directly reference pre-built versions of `Dockerfile` by using the `image` property in `.devcontainer/devcontainer.json` or updating the `FROM` statement in your own `Dockerfile` to:

`mcr.microsoft.com/devcontainers/universal:4-linux`
`mcr.microsoft.com/devcontainers/universal:4.1-linux`

Alternatively, you can use the contents of [.devcontainer](.devcontainer) to fully customize your container's contents or to build it for a container host architecture not supported by the image.

Expand Down
2 changes: 1 addition & 1 deletion src/universal/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "4.0.1",
"version": "4.1.0",
"build": {
"latest": true,
"rootDistro": "debian",
Expand Down
4 changes: 2 additions & 2 deletions src/universal/test-project/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -186,13 +186,13 @@ ls -la /home/codespace
## Python - current
checkPythonPackageVersion "python" "setuptools" "65.5.1"
checkPythonPackageVersion "python" "requests" "2.31.0"
checkPythonPackageVersion "python" "urllib3" "2.0.7"
checkPythonPackageVersion "python" "urllib3" "2.5.0"

## Conda Python
checkCondaPackageVersion "requests" "2.31.0"
checkCondaPackageVersion "cryptography" "41.0.4"
checkCondaPackageVersion "pyopenssl" "23.2.0"
checkCondaPackageVersion "urllib3" "1.26.17"
checkCondaPackageVersion "urllib3" "2.5.0"

## Test Conda
check "conda-update-conda" bash -c "conda update -y conda"
Expand Down
Loading