We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1e7a5b commit cd2854cCopy full SHA for cd2854c
vulnerabilities/importers/osv.py
@@ -46,6 +46,7 @@
46
"cargo": "cargo",
47
"almalinux:8": "rpm",
48
"almalinux:9": "rpm",
49
+ "almalinux:10": "rpm",
50
}
51
52
@@ -312,7 +313,7 @@ def get_affected_purl(affected_pkg, raw_id):
312
313
namespace = ""
314
if purl_type == "maven":
315
namespace, _, name = name.partition(":")
- if ecosys == "almalinux:8" or ecosys == "almalinux:9":
316
+ if ecosys in ["almalinux:8","almalinux:9" , "almalinux:10"]:
317
namespace = "almalinux"
318
319
purl = PackageURL(type=purl_type, namespace=namespace, name=name)
0 commit comments