-
-
Notifications
You must be signed in to change notification settings - Fork 56
Open
Labels
contribContributed features not part of the core library.Contributed features not part of the core library.enhancementNew feature or requestNew feature or requestquestionFurther information is requestedFurther information is requested
Description
The C# Library and the CLI tool expose to the user the methods for merging different SBOMs using either hierarchical or flat strategies. This is completely absent in the python library and forces to user to write them leading to differences in implementations. Would it make sense to expose this function/method? The C# library HierarchicalMerge function takes in a list of boms and the merge component, so i guess it would be something like
def hierachical_merge(boms, metadata_component):
# merge stuff
return merged_bomwhile the flat merge
def flat_merge(boms):
return merged_bomMetadata
Metadata
Assignees
Labels
contribContributed features not part of the core library.Contributed features not part of the core library.enhancementNew feature or requestNew feature or requestquestionFurther information is requestedFurther information is requested