Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,12 @@ sudo_if /opt/conda/bin/python3 -m pip install --upgrade pip
# https://github.com/advisories/GHSA-r6ph-v2qm-q3c2
update_conda_package pyopenssl "26.0.0"

update_conda_package cryptography "46.0.5"
# https://github.com/advisories/GHSA-p423-j2cm-9vmq
update_conda_package cryptography "46.0.7"

# https://nvd.nist.gov/vuln/detail/CVE-2025-6176
update_conda_package brotli "1.2.0"

# https://github.com/advisories/GHSA-mf9w-mj56-hr94
update_python_package /opt/conda/bin/python3 python-dotenv "1.2.2"

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": "6.0.4",
"version": "6.0.5",
"build": {
"latest": true,
"rootDistro": "debian",
Expand Down
3 changes: 2 additions & 1 deletion src/universal/test-project/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,11 @@ checkPythonPackageVersion "python" "requests" "2.31.0"

## Conda Python
checkCondaPackageVersion "requests" "2.31.0"
checkCondaPackageVersion "cryptography" "46.0.5"
checkCondaPackageVersion "cryptography" "46.0.7"
checkCondaPackageVersion "pyopenssl" "26.0.0"
checkCondaPackageVersion "urllib3" "2.6.3"
checkCondaPackageVersion "brotli" "1.2.0"
checkCondaPackageVersion "python-dotenv" "1.2.2"

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