-
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add output version argument to merge command (#388)
Copy of #366 --------- Signed-off-by: andreas hilti <[email protected]> Co-authored-by: andreas hilti <[email protected]>
- Loading branch information
1 parent
3bebe12
commit 01fb950
Showing
17 changed files
with
95 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"MD013": { | ||
"code_blocks": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
33 changes: 33 additions & 0 deletions
33
...apshots__/MergeTests.Merge_Flat_sbom1.json_sbom2.json_json_sbom.json_autodetect_v1_4.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"bomFormat": "CycloneDX", | ||
"specVersion": "1.4", "version": 1, | ||
"metadata": { | ||
"component": { | ||
"type": "application", | ||
"name": "thing1", | ||
"version": "1" | ||
} | ||
}, | ||
"components": [ | ||
{ | ||
"type": "library", | ||
"name": "acme-library", | ||
"version": "1.0.0" | ||
}, | ||
{ | ||
"type": "application", | ||
"name": "thing1", | ||
"version": "1" | ||
}, | ||
{ | ||
"type": "framework", | ||
"name": "acme-framework", | ||
"version": "1.0.0" | ||
}, | ||
{ | ||
"type": "application", | ||
"name": "thing2", | ||
"version": "1" | ||
} | ||
] | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
27 changes: 27 additions & 0 deletions
27
...hots__/MergeTests.Merge_Flat_sbom1.xml_sbom2.xml_autodetect_sbom.xml_autodetect_v1_4.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<bom xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="1" xmlns="http://cyclonedx.org/schema/bom/1.4"> | ||
<metadata> | ||
<component type="application"> | ||
<name>thing1</name> | ||
<version>1</version> | ||
</component> | ||
</metadata> | ||
<components> | ||
<component type="library"> | ||
<name>acme-library</name> | ||
<version>1.0.0</version> | ||
</component> | ||
<component type="application"> | ||
<name>thing1</name> | ||
<version>1</version> | ||
</component> | ||
<component type="framework"> | ||
<name>acme-framework</name> | ||
<version>1.0.0</version> | ||
</component> | ||
<component type="application"> | ||
<name>thing2</name> | ||
<version>1</version> | ||
</component> | ||
</components> | ||
</bom> |
File renamed without changes.
File renamed without changes.