-
Notifications
You must be signed in to change notification settings - Fork 80
refactor(rebranding-effort): Replace mentions of 'Black Duck' with 'Black Duck SCA' (IDETECT-4768) #1543
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
base: master
Are you sure you want to change the base?
Conversation
…ca server (IDETECT-4768)
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.
Pull Request Overview
This PR replaces instances of "Black Duck" with "Black Duck SCA" throughout the codebase as part of a rebranding effort to use the full product name consistently.
- Updates user-facing strings, log messages, and documentation to use "Black Duck SCA" instead of "Black Duck"
- Modifies error messages and warnings to reflect the new branding
- Updates configuration property descriptions and help text
Reviewed Changes
Copilot reviewed 40 out of 40 changed files in this pull request and generated 1 comment.
Show a summary per file
File | Description |
---|---|
BlackDuckBomDetectResult.java | Updates result message format string |
ReportService.java | Updates debug and warning log messages |
RiskReportPdfWriter.java | Updates PDF document metadata and header text |
FindProjectGroupOperation.java | Updates exception message |
FindLicenseUrlOperation.java | Updates error message |
PolicyChecker.java | Updates log message |
CorrelatedScanCountUploadService.java | Updates debug log message |
RapidScanConfigBdio2StreamUploader.java | Updates exception message |
RapidModeGenerateJsonOperation.java | Updates warning log message |
PublishSignatureScanReports.java | Updates error message |
CreateScanBatchRunnerWithBlackDuck.java | Updates debug log message |
CreateScanBatchOperation.java | Updates error message |
ImpactAnalysisCallable.java | Updates error message format |
ImpactAnalysisBatchOutput.java | Updates error and exception messages |
BinaryUploadOperation.java | Updates error message format |
ExceptionUtility.java | Updates timeout error message constant |
OperationWrapper.java | Updates response body error message |
IntelligentModeStepRunner.java | Updates debug log message |
IacScanStepRunner.java | Updates exception message |
OperationRunner.java | Updates various log and error messages |
BlackDuckVersionParser.java | Updates trace and warning log messages |
BlackDuckVersionCheckerResult.java | Updates success message |
BlackDuckVersionChecker.java | Updates debug and error messages |
ProductBoot.java | Updates various log messages and error text |
BlackDuckConnectivityChecker.java | Updates debug, error, and info log messages |
ProductDecider.java | Updates debug log messages |
SignatureScannerDecisionBranch.java | Updates interactive prompt text |
InteractiveModeDecisionTree.java | Updates interactive prompt text |
BlackDuckServerDecisionBranch.java | Updates interactive prompt text |
BlackDuckConnectionDecisionBranch.java | Updates interactive prompt text |
ExitCodeType.java | Updates exit code descriptions |
BlackDuckConfigFactory.java | Updates exception message |
DetectProperties.java | Updates property descriptions and help text |
ApplicationUpdater.java | Updates log messages |
unsupportedreleasenotes.md | Updates documentation text |
runningwithblackduck.md | Updates documentation reference |
overview.md | Updates example log output |
quickstart.md | Updates command examples |
selfupdatingdetect.md | Updates example log output |
ConanLockfileParser.java | Updates warning log message |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
@@ -26,13 +26,13 @@ public BlackDuckVersionChecker( | |||
public BlackDuckVersionCheckerResult check(String actualBlackDuckVersionString) { | |||
Optional<BlackDuckVersion> actualBlackDuckVersion = parser.parse(actualBlackDuckVersionString); | |||
if (!actualBlackDuckVersion.isPresent()) { | |||
logger.debug("Unable to parse Black Duck version string {}, so unable to perform version compatibility check", actualBlackDuckVersion); | |||
logger.debug("Unable to parse Black SCA Duck version string {}, so unable to perform version compatibility check", actualBlackDuckVersion); |
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.
There's a typo in the log message: 'Black SCA Duck' should be 'Black Duck SCA' to match the consistent branding pattern used throughout the rest of the codebase.
logger.debug("Unable to parse Black SCA Duck version string {}, so unable to perform version compatibility check", actualBlackDuckVersion); | |
logger.debug("Unable to parse Black Duck SCA version string {}, so unable to perform version compatibility check", actualBlackDuckVersion); |
Copilot uses AI. Check for mistakes.
No description provided.