Skip to content

Commit d4d9840

Browse files
authored
Merge pull request #1688 from forcedotcom/jj/W-17311922
NEW (CodeAnalyzer) @W-17311922@ Add deprecation message for v4.x
2 parents a819109 + 01a0ed2 commit d4d9840

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

messages/common.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
Emit additional command output to stdout.
44

5-
# surveyRequestMessage
5+
# deprecationMessage
66

7-
We're continually improving Salesforce Code Analyzer. Tell us what you think! Give feedback at http://sfdc.co/CodeAnalyzerFeedback
7+
We plan to stop supporting v4.x of Code Analyzer in the coming months. We highly recommend that you start using v5.x, which is currently in Beta. For information on v5.x, see https://developer.salesforce.com/docs/platform/salesforce-code-analyzer/guide/version-5.html.

src/lib/ScannerCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export abstract class ScannerCommand extends SfCommand<AnyJson> implements Displ
4040
const logger: Logger = await Logger.child(this.ctor.name);
4141
const display: Display = new UxDisplay(this, this.spinner, inputs.verbose as boolean);
4242

43-
display.displayWarning(getMessage(BundleName.Common, 'surveyRequestMessage'));
43+
display.displayWarning(getMessage(BundleName.Common, 'deprecationMessage'));
4444
this.buildEventListeners(display);
4545

4646
const action: Action = this.createAction(logger, display);

0 commit comments

Comments
 (0)