[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: git: Hide more CVEs from the linter.
From: |
guix-commits |
Subject: |
02/03: gnu: git: Hide more CVEs from the linter. |
Date: |
Tue, 9 Aug 2022 15:43:14 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 987f5acb2d13bf475b0c5bc6cf0ceea787fb1c20
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Aug 9 22:13:47 2022 +0300
gnu: git: Hide more CVEs from the linter.
* gnu/packages/version-control.scm (git)[properties]: Add more CVEs to
the lint-hidden-cve property.
---
gnu/packages/version-control.scm | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 6652ac717f..9bf5ac76df 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -590,7 +590,14 @@ everything from small to very large projects with speed
and efficiency.")
(properties '((lint-hidden-cve . ("CVE-2018-1000182"
"CVE-2018-1000110"
"CVE-2019-1003010"
- "CVE-2020-2136"))))
+ "CVE-2020-2136"
+ "CVE-2021-21684"
+ "CVE-2022-30947"
+ "CVE-2022-30948"
+ "CVE-2022-30949"
+ "CVE-2022-36882"
+ "CVE-2022-36883"
+ "CVE-2022-36884"))))
(license license:gpl2)
(home-page "https://git-scm.com/")))