Skip to content

Commit 48aee85

Browse files
[miniconda] - cryptography - GHSA-h4gh-qq45-vh27 (#1183)
1 parent 0432a2f commit 48aee85

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/miniconda/.devcontainer/apply_security_patches.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
#!/bin/bash
22

3+
# vulnerablities
4+
# cryptography - [GHSA-h4gh-qq45-vh27]
5+
36
# define array of packages for pinning to the patched versions
47
# vulnerable_packages=( "package1=version1" "package2=version2" "package3=version3" )
5-
vulnerable_packages=( "tqdm=4.66.4" "requests=2.32.0" "urllib3=2.2.2" "certifi=2024.7.4")
8+
vulnerable_packages=( "tqdm=4.66.4" "requests=2.32.0" "urllib3=2.2.2" "certifi=2024.7.4" "cryptography=43.0.1" )
69

710
# Define the number of rows (based on the length of vulnerable_packages)
811
rows=${#vulnerable_packages[@]}

src/miniconda/test-project/test.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ check "gitconfig-contains-name" sh -c "cat /etc/gitconfig | grep 'name = devcont
1818

1919
check "usr-local-etc-config-does-not-exist" test ! -f "/usr/local/etc/gitconfig"
2020

21-
checkPythonPackageVersion "cryptography" "42.0.4"
21+
checkPythonPackageVersion "cryptography" "43.0.1"
2222
checkPythonPackageVersion "setuptools" "65.5.1"
2323
checkPythonPackageVersion "wheel" "0.38.1"
2424
checkPythonPackageVersion "urllib3" "2.2.2"
2525

26-
checkCondaPackageVersion "cryptography" "42.0.4"
26+
checkCondaPackageVersion "cryptography" "43.0.1"
2727
checkCondaPackageVersion "setuptools" "65.5.1"
2828
checkCondaPackageVersion "wheel" "0.38.1"
2929
checkCondaPackageVersion "requests" "2.32.0"

0 commit comments

Comments
 (0)