From 55bb955ca18db33791beb7426a43a2fd76b94507 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 26 Oct 2023 17:23:24 +0000 Subject: [PATCH] fix: examples/e2e/requirements.txt to reduce vulnerabilities The following vulnerabilities are fixed by pinning transitive dependencies: - https://snyk.io/vuln/SNYK-PYTHON-WERKZEUG-6035177 --- examples/e2e/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/e2e/requirements.txt b/examples/e2e/requirements.txt index a11e78ea9..e1acc255f 100644 --- a/examples/e2e/requirements.txt +++ b/examples/e2e/requirements.txt @@ -1,4 +1,5 @@ Flask==1.1.1 pytest==5.4.1 requests==2.23.0 -testcontainers==3.3.0 \ No newline at end of file +testcontainers==3.3.0 +werkzeug>=3.0.1 # not directly required, pinned by Snyk to avoid a vulnerability \ No newline at end of file