From 80996d8accd870cc2dbf4e4c091251e26f40440f Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 19 Oct 2023 05:38:36 +0000 Subject: [PATCH] fix: demo/playground/scripts/requirements.txt to reduce vulnerabilities The following vulnerabilities are fixed by pinning transitive dependencies: - https://snyk.io/vuln/SNYK-PYTHON-URLLIB3-6002459 --- demo/playground/scripts/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/playground/scripts/requirements.txt b/demo/playground/scripts/requirements.txt index 20232d456d..33c13656f4 100644 --- a/demo/playground/scripts/requirements.txt +++ b/demo/playground/scripts/requirements.txt @@ -20,5 +20,5 @@ requests==2.31.0; python_version >= "3.7" routes==2.5.1 six==1.16.0; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.3.0" tomli==2.0.1; python_version < "3.11" and python_version >= "3.7" -urllib3==2.0.6; python_version >= "3.7" +urllib3==2.0.7; python_version >= "3.7" yarl==1.9.2; python_version >= "3.7"