From c84703e11cd5dd47c97b6defa291179c259d4b34 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 27 Oct 2024 14:43:41 +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-8309091 - https://snyk.io/vuln/SNYK-PYTHON-WERKZEUG-8309092 --- 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..d1ef3f823 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.6 # not directly required, pinned by Snyk to avoid a vulnerability \ No newline at end of file