-
-
Notifications
You must be signed in to change notification settings - Fork 598
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
Migrate Global Component Model to Per Project Model #593
Labels
enhancement
New feature or request
p1
Critical bugs that prevent DT from being used, or features that must be implemented ASAP
pending release
Milestone
Comments
Closed
stevespringett
added a commit
that referenced
this issue
Aug 2, 2020
stevespringett
added a commit
that referenced
this issue
Aug 5, 2020
…es resulting from failed tests.
stevespringett
added a commit
that referenced
this issue
Aug 5, 2020
stevespringett
added a commit
that referenced
this issue
Aug 8, 2020
stevespringett
added a commit
that referenced
this issue
Aug 27, 2020
… when vulnerabilities were added to component. Simplified use of FindingAttribution when adding a vuln to a component. Added FindingAttribution support to Findings API.
stevespringett
added a commit
that referenced
this issue
Sep 3, 2020
…ithout a global component model, the potential for individual component analysis is exponential. This change, along with minor refactor of all vulnerability analyzers, allow results to be cached per Package URL + analyzer + url. Also added was a task that runs every 3 days that removes all cached results.
NOTE: This appears to be mostly complete. |
stevespringett
added a commit
that referenced
this issue
Sep 19, 2020
stevespringett
added a commit
that referenced
this issue
Oct 6, 2020
…onal hash search functionality. Added independent lucene index searching for components, licenses, vulns, projects.
lislei
added a commit
to lislei/dependency-track
that referenced
this issue
Oct 20, 2020
Postgres 10 is sensitive to order of join statements. This fixes: `ERROR: missing FROM-clause entry for table "VULNERABILITY" at character 1122`
stevespringett
added a commit
that referenced
this issue
Nov 15, 2020
#593: Postgres compatible query
Closing. Implemented in v4.0 - to be released soon. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
enhancement
New feature or request
p1
Critical bugs that prevent DT from being used, or features that must be implemented ASAP
pending release
Currently, components exist globally and their use is tied to zero or more projects through the dependency object. This has the advantage in that it's fast to determine where a component is used, but has many disadvantages. At the time when Dependency-Check was used for vulnerability analysis, having global audits was necessary to scale the false positive problem. This scenario no longer exists so the reasoning for having global audit capabilities has greatly decreased.
This major enhancement will be to move away from a global component model to a per project component model.
This will allow DT to:
In order for DT to fully realize the benefits of CycloneDX and future versions of SPDX (v3.0+), this enhancement needs to be made.
It will still be possible to retrieve component usage across portfolio, but the queries involved will need to change and may introduce a performance impact. Database storage requirements will also increase.
Related to: #590, #372 , #251
The text was updated successfully, but these errors were encountered: