From 230efd9c276cbcb2cfa51db4974cb2ed59714474 Mon Sep 17 00:00:00 2001 From: Gaurav Saini <147703805+gauravsaini04@users.noreply.github.com> Date: Wed, 13 Nov 2024 03:33:26 +0000 Subject: [PATCH] [Miniconda] - remove stale patches ( when higher version is available from upstream ) --- src/miniconda/.devcontainer/apply_security_patches.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/miniconda/.devcontainer/apply_security_patches.sh b/src/miniconda/.devcontainer/apply_security_patches.sh index a63bc754f..5686d7bca 100644 --- a/src/miniconda/.devcontainer/apply_security_patches.sh +++ b/src/miniconda/.devcontainer/apply_security_patches.sh @@ -5,7 +5,7 @@ # define array of packages for pinning to the patched versions # vulnerable_packages=( "package1=version1" "package2=version2" "package3=version3" ) -vulnerable_packages=( "tqdm=4.66.4" "requests=2.32.0" "urllib3=2.2.2" "certifi=2024.7.4" "cryptography=43.0.1" ) +vulnerable_packages=( "cryptography=43.0.1" ) # Define the number of rows (based on the length of vulnerable_packages) rows=${#vulnerable_packages[@]}