Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update Syft to v0.99.0 #432

Merged
merged 2 commits into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/attachReleaseAssets/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/downloadSyft/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/runSyftAction/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/SyftVersion.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = "v0.98.0";
export const VERSION = "v0.99.0";
116 changes: 68 additions & 48 deletions tests/integration/__snapshots__/formatExports.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@ exports[`CycloneDX JSON alpine 1`] = `
"version": 1,
"metadata": {
"timestamp": "redacted",
"tools": [
{
"vendor": "anchore",
"name": "syft",
"version": "redacted"
}
],
"tools": {
"components": [
{
"type": "application",
"author": "anchore",
"name": "syft",
"version": "redacted"
}
]
},
"component": {
"bom-ref": "redacted",
"type": "container",
Expand Down Expand Up @@ -170,13 +173,16 @@ exports[`CycloneDX JSON debian 1`] = `
"version": 1,
"metadata": {
"timestamp": "redacted",
"tools": [
{
"vendor": "anchore",
"name": "syft",
"version": "redacted"
}
],
"tools": {
"components": [
{
"type": "application",
"author": "anchore",
"name": "syft",
"version": "redacted"
}
]
},
"component": {
"bom-ref": "redacted",
"type": "container",
Expand Down Expand Up @@ -854,13 +860,16 @@ exports[`CycloneDX JSON npm 1`] = `
"version": 1,
"metadata": {
"timestamp": "redacted",
"tools": [
{
"vendor": "anchore",
"name": "syft",
"version": "redacted"
}
],
"tools": {
"components": [
{
"type": "application",
"author": "anchore",
"name": "syft",
"version": "redacted"
}
]
},
"component": {
"bom-ref": "redacted",
"type": "file",
Expand Down Expand Up @@ -1392,13 +1401,16 @@ exports[`CycloneDX JSON yarn 1`] = `
"version": 1,
"metadata": {
"timestamp": "redacted",
"tools": [
{
"vendor": "anchore",
"name": "syft",
"version": "redacted"
}
],
"tools": {
"components": [
{
"type": "application",
"author": "anchore",
"name": "syft",
"version": "redacted"
}
]
},
"component": {
"bom-ref": "redacted",
"type": "file",
Expand Down Expand Up @@ -1699,11 +1711,13 @@ exports[`CycloneDX XML alpine 1`] = `
<metadata>

<tools>
<tool>
<vendor>anchore</vendor>
<name>syft</name>

</tool>
<components>
<component type="application">
<author>anchore</author>
<name>syft</name>

</component>
</components>
</tools>
<component type="container">
<name>localhost:5000/match-coverage/alpine</name>
Expand Down Expand Up @@ -1779,11 +1793,13 @@ exports[`CycloneDX XML debian 1`] = `
<metadata>

<tools>
<tool>
<vendor>anchore</vendor>
<name>syft</name>

</tool>
<components>
<component type="application">
<author>anchore</author>
<name>syft</name>

</component>
</components>
</tools>
<component type="container">
<name>localhost:5000/match-coverage/debian</name>
Expand Down Expand Up @@ -2048,11 +2064,13 @@ exports[`CycloneDX XML npm 1`] = `
<metadata>

<tools>
<tool>
<vendor>anchore</vendor>
<name>syft</name>

</tool>
<components>
<component type="application">
<author>anchore</author>
<name>syft</name>

</component>
</components>
</tools>
<component type="file">
<name>tests/fixtures/npm-project</name>
Expand Down Expand Up @@ -2269,11 +2287,13 @@ exports[`CycloneDX XML yarn 1`] = `
<metadata>

<tools>
<tool>
<vendor>anchore</vendor>
<name>syft</name>

</tool>
<components>
<component type="application">
<author>anchore</author>
<name>syft</name>

</component>
</components>
</tools>
<component type="file">
<name>tests/fixtures/yarn-project</name>
Expand Down