From eb9b7188514351395d4e4f45bb457d984b24020c Mon Sep 17 00:00:00 2001 From: Marta Marciniak Date: Wed, 25 Mar 2026 09:01:23 +0100 Subject: [PATCH] fix: Add CVE-2026-4539 to the list of ignored vulnerabilities in noxfile --- noxfile.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/noxfile.py b/noxfile.py index b04e3753e..aa8aa0589 100644 --- a/noxfile.py +++ b/noxfile.py @@ -160,6 +160,8 @@ def audit(session: nox.Session) -> None: "CVE-2025-53000", # no fix available "--ignore-vuln", "CVE-2025-69872", # no fix available + "--ignore-vuln", + "CVE-2026-4539", # no fix available ) except CommandFailed: _format_json_with_jq(session, "reports/vulnerabilities.json")