mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
fix: PURLs with "nuget" type are dotnet packages (#2466)
Otherwise, Grype won't match on well-formed .NET purls from other SBOM tools. Signed-off-by: Will Murphy <will.murphy@anchore.com>
This commit is contained in:
parent
0e5fb8e01f
commit
7c67df397e
@ -80,7 +80,7 @@ func LanguageByName(name string) Language {
|
||||
return Rust
|
||||
case packageurl.TypePub, string(DartPubPkg), string(Dart):
|
||||
return Dart
|
||||
case packageurl.TypeDotnet:
|
||||
case packageurl.TypeDotnet, packageurl.TypeNuget:
|
||||
return Dotnet
|
||||
case packageurl.TypeCocoapods, packageurl.TypeSwift, string(CocoapodsPkg), string(SwiftPkg):
|
||||
return Swift
|
||||
|
||||
@ -38,6 +38,10 @@ func TestLanguageFromPURL(t *testing.T) {
|
||||
purl: "pkg:dotnet/Microsoft.CodeAnalysis.Razor@2.2.0",
|
||||
want: Dotnet,
|
||||
},
|
||||
{
|
||||
purl: "pkg:nuget/Newtonsoft.Json@13.0.0",
|
||||
want: Dotnet,
|
||||
},
|
||||
{
|
||||
purl: "pkg:cargo/clap@2.33.0",
|
||||
want: Rust,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user