chore: bump extensions for SBOM per-component results - #7149
Open
MoisBrigitte wants to merge 1 commit into
Open
Conversation
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
Merged
4 tasks
MoisBrigitte
force-pushed
the
chore/bump-gaf-asset-link
branch
8 times, most recently
from
August 19, 2026 10:33
72629a4 to
eba5b1f
Compare
9 tasks
Contributor
|
MoisBrigitte
marked this pull request as ready for review
August 19, 2026 13:55
MoisBrigitte
force-pushed
the
chore/bump-gaf-asset-link
branch
from
August 19, 2026 13:55
73cae97 to
b79c7ae
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
…BOM per-component results cli-extension-os-flows now reports one result per component for SBOM tests, so `snyk sbom test` renders a section per component instead of a single section covering the whole document. go-application-framework v0.16.1 carries the matching change to the UFM human readable template, which renders the asset inventory link once below the overall test summary rather than under each result. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
MoisBrigitte
force-pushed
the
chore/bump-gaf-asset-link
branch
from
August 19, 2026 13:58
b79c7ae to
ae7be42
Compare
PR Reviewer Guide 🔍
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request Submission Checklist
What does this PR do?
Dependency bumps only, no source changes. Both
cliv2andcliv2-private:go-application-frameworkv0.16.0v0.16.1-0.20260819102712-53729422c5cd(5372942)cli-extension-os-flowsv0.0.0-20260818092349-91c745a9ee7av0.0.0-20260819103218-611f8d16dc54(611f8d1)Together they change how SBOM test results are presented:
snyk test --all-projectsreports one result per project.Draft: both pins are branch commits on unmerged PRs. Needs re-pointing at
mainpseudo-versions once they land, then it can come out of draft.Where should the reviewer start?
cliv2/go.modandcliv2-private/go.mod, plus the correspondinggo.sumentries. No source changes.How should this be manually tested?
Requires an org with SBOM testing and asset inventory enabled:
View your asset(s) at: …appears exactly once, immediately below theOverall Test Summarybox. Before, it appeared once per component, mid-output.Worth smoke testing that plain
snyk testandsnyk test --all-projectsare unchanged — neither reports an asset, so neither should print that line at all.What's the product update that needs to be communicated to CLI users?
snyk sbom testnow reports one result per component in the SBOM, rather than a single combined result. With--report, the asset inventory link is shown once at the end of the results instead of under every component.Risk assessment (Low | Medium | High)?
Medium. Two things carry the risk, neither of them in this repo:
snyk sbom testoutput — one result per component, and one entry per component in the legacy JSON — so anything parsing that output sees a different structure.Any background context you want to provide?
A modelling gap sits underneath the asset link fix:
assetis a property of the test, but the UFM payload is a bare array of results with nowhere to put test-level facts, so it is copied onto every result and then stripped from all but one by the producer. Closing that gap is prepared separately, stacked on these branches — it also needs a change tocli-extension-axi, which parses the payload itself rather than using the framework's decoder. Not part of this PR.Links to automated tests
Both upstream PRs carry their own coverage:
multi_project_with_assetinTest_UfmPresenter_HumanReadable— there was no test for the asset link at all before.Test_RunSbomFlow_ReportsTestWideLinksOnceand theTestUnifiedFindingPresenter_AssetLinksubtests.Both modules build clean here (
go build ./...incliv2andcliv2-private).🤖 Generated with Claude Code