-
Notifications
You must be signed in to change notification settings - Fork 587
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
Replace core SBOM-creation API with builder pattern #1383
Merged
Merged
Changes from 3 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
be31e1e
remove existing cataloging API
wagoodman 4e224b5
add file cataloging config
wagoodman 4172a41
add package cataloging config
wagoodman afc5783
add configs for cross-cutting concerns
wagoodman f511367
rename CLI option configs to not require import aliases later
wagoodman f36de9d
update all nested structs for the Catalog struct
wagoodman 768e232
update Catalog cli options
wagoodman 143b0f6
migrate relationship capabilities to separate internal package
wagoodman e5c582f
refactor golang cataloger to use configuration options when creating …
wagoodman 62b19c2
create internal object to facilitate reading from and writing to an SBOM
wagoodman 839b017
create a command-like object (task) to facilitate partial SBOM creation
wagoodman 44d8543
add cataloger selection capability
wagoodman 87f3eac
add package, file, and environment related tasks
wagoodman 4848648
update existing file catalogers to use nested UI elements
wagoodman 0ed13db
add CreateSBOMConfig that drives the SBOM creation process
wagoodman b811336
capture SBOM creation info as a struct
wagoodman a5fe920
add CreateSBOM() function
wagoodman a3a3961
fix tests
wagoodman 473605c
update docs with SBOM selection help + breaking changes
wagoodman 63c23e2
fix multiple override default inputs
wagoodman 2550e62
fix deprecation flag printing to stdout
wagoodman 098fbd7
refactor cataloger selection description to separate object
wagoodman 208333c
address review comments
wagoodman e561879
keep expression errors and show specific suggestions only
wagoodman 3f38495
address additional review feedback
wagoodman dbfcf26
Merge remote-tracking branch 'origin/main' into refactor-cataloging-api
wagoodman 81fa9b2
address more review comments
wagoodman 9fcbbef
addressed additional PR review feedback
wagoodman 81d621b
fix file selection references
wagoodman af42ef5
remove guess language data generation option
wagoodman 498870d
add tests for coordinatesForSelection
wagoodman 5628045
rename relationship attributes
wagoodman f8626b1
add descriptions to relationships config fields
wagoodman f4fb2e1
improve documentation around configuration options
wagoodman 55b4c1d
add explicit errors around legacy config entries
wagoodman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from @willmurphyscode , blocking: we need to explicitly pass all coordinates, since there is no guarantee to have any results from a owned-files indication
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm going to fix the functional problem in this PR, but to address the signature and generator issue I really should break that into a separate PR that I follow up with after this PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this will have some play into the solution here #2487