-
Notifications
You must be signed in to change notification settings - Fork 261
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
Add supply chain context to the solution component mermaid graph #8626
Conversation
Signed-off-by: Mandy Chessell <[email protected]>
@@ -81,7 +81,7 @@ | |||
{ | |||
try | |||
{ | |||
if (fileChanged.getAbsolutePath().startsWith(directoryToMonitor.directoryFile.getAbsolutePath())) | |||
if (fileChanged.getCanonicalPath().startsWith(directoryToMonitor.directoryFile.getCanonicalPath())) |
Check failure
Code scanning / CodeQL
Partial path traversal vulnerability Critical
FileAlterationListener managedListener = new FileMonitoringListener(listener); | ||
try | ||
{ | ||
FileAlterationObserver observer = new FileAlterationObserver(fileToMonitor.getCanonicalPath()); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
FileAlterationObserver.FileAlterationObserver
FileAlterationListener managedListener = new FolderMonitoringListener(listener, false, fileFilter); | ||
try | ||
{ | ||
FileAlterationObserver observer = new FileAlterationObserver(directoryToMonitor.getCanonicalPath(), fileFilter); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
FileAlterationObserver.FileAlterationObserver
FileAlterationListener managedListener = new FolderMonitoringListener(listener, false, fileFilter); | ||
try | ||
{ | ||
FileAlterationObserver observer = new FileAlterationObserver(directoryToMonitor.getCanonicalPath(), fileFilter); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
Description
This PR extends the mermaid graph for solution components to include the "parent" solution components and their corresponding information supply chain segments and informaiton supply chain(s). Here is an example showing the onboarding pipeline. Notice it includes the components that interact with and the information supply information that it belongs to:
Related Issue(s)
Testing
Release Notes & Documentation
Additional notes