Skip to content

Commit 4f7186e

Browse files
[Anaconda] - Pillow - Patch security vulnerability GHSA-3f63-hfp8-52jq (#938)
Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>
1 parent ae92f07 commit 4f7186e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/anaconda/.devcontainer/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ RUN . /etc/os-release && if [ "${VERSION_CODENAME}" != "bullseye" ]; then exit 1
88
RUN conda install \
99
# https://github.com/advisories/GHSA-q3qx-c6g2-7pw2
1010
aiohttp=3.9.0 \
11-
# https://github.com/advisories/GHSA-j7hp-h8jx-5ppr
12-
pillow=10.0.1 \
1311
# https://github.com/advisories/GHSA-v845-jxx5-vc9f
1412
urllib3==1.26.18 \
1513
# https://github.com/advisories/GHSA-jfhm-5ghh-2f97
@@ -35,7 +33,9 @@ RUN python3 -m pip install --upgrade \
3533
# https://github.com/advisories/GHSA-5wvp-7f3h-6wmm
3634
pyarrow==14.0.1 \
3735
# https://github.com/advisories/GHSA-v68g-wm8c-6x7j
38-
transformers==4.36.0
36+
transformers==4.36.0 \
37+
# https://github.com/advisories/GHSA-3f63-hfp8-52jq
38+
pillow==10.2.0
3939

4040
# Reset and copy updated files with updated privs to keep image size down
4141
FROM mcr.microsoft.com/devcontainers/base:1-bullseye

src/anaconda/test-project/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ checkPythonPackageVersion "aiohttp" "3.9.0"
4747
checkPythonPackageVersion "jupyter_server" "2.7.2"
4848
checkPythonPackageVersion "tornado" "6.3.3"
4949
checkPythonPackageVersion "pyarrow" "14.0.1"
50+
checkPythonPackageVersion "pillow" "10.2.0"
5051

5152
checkCondaPackageVersion "pyopenssl" "23.2.0"
5253
checkCondaPackageVersion "cryptography" "41.0.7"
5354
checkCondaPackageVersion "requests" "2.31.0"
5455
checkCondaPackageVersion "pygments" "2.15.1"
5556
checkCondaPackageVersion "mpmath" "1.3.0"
5657
checkCondaPackageVersion "aiohttp" "3.9.0"
57-
checkCondaPackageVersion "pillow" "10.0.1"
5858
checkCondaPackageVersion "urllib3" "1.26.17"
5959
checkCondaPackageVersion "pyarrow" "14.0.1"
6060

0 commit comments

Comments
 (0)