Skip to content

Commit

Permalink
chore(release): 2.6.45 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-cli-bot committed Sep 25, 2023
1 parent b110148 commit c712cca
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 21 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [2.6.45](https://github.com/salesforcecli/plugin-info/compare/2.6.44...2.6.45) (2023-09-25)

### Bug Fixes

- **deps:** bump @salesforce/sf-plugins-core from 3.1.22 to 3.1.23 ([9cdadfc](https://github.com/salesforcecli/plugin-info/commit/9cdadfc8728f4dd36026e8a3c71b58718dc2a6ae))

## [2.6.44](https://github.com/salesforcecli/plugin-info/compare/2.6.43...2.6.44) (2023-09-24)

### Bug Fixes
Expand Down
69 changes: 49 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,20 +81,29 @@ sfdx plugins

## `sfdx doctor`

When you run the doctor command without parameters, it first displays a diagnostic overview of your environment. It then writes a detailed diagnosis to a JSON file in the current directory. Use the --outputdir to specify a different directory. To run diagnostic tests on a specific plugin, use the --plugin parameter. If the plugin isn't listening to the doctor, then you get a warning.
Gather CLI configuration data and run diagnostic tests to discover and report potential problems in your environment.

```
USAGE
$ sfdx doctor
$ sfdx doctor [--json] [-c <value>] [-p <value>] [-d <value>] [-i]
OPTIONS
-c, --command=command
-d, --output-dir=output-dir
-i, --create-issue
-p, --plugin=plugin
--json Format output as json.
FLAGS
-c, --command=<value> Command to run in debug mode; results are written to a log file.
-d, --output-dir=<value> Directory to save all created files rather than the current working directory.
-i, --create-issue Create a new issue on our GitHub repo and attach all diagnostic results.
-p, --plugin=<value> Specific plugin on which to run diagnostics.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Gather CLI configuration data and run diagnostic tests to discover and report potential problems in your environment.
When you run the doctor command without parameters, it first displays a diagnostic overview of your environment. It
then writes a detailed diagnosis to a JSON file in the current directory. Use the --outputdir to specify a different
directory. To run diagnostic tests on a specific plugin, use the --plugin parameter. If the plugin isn't listening to
the doctor, then you get a warning.
Use the --command parameter to run a specific command in debug mode; the doctor writes both stdout and stderr to
\*.log files that you can provide to Salesforce Customer Support or attach to a GitHub issue.
Expand All @@ -103,37 +112,57 @@ DESCRIPTION
EXAMPLES
Run CLI doctor diagnostics:
sfdx doctor
$ sfdx doctor
Run CLI doctor diagnostics and the specified command, and write the debug output to a file:
sfdx doctor --command "force:org:list --all"
$ sfdx doctor --command "force:org:list --all"
Run CLI doctor diagnostics for a specific plugin:
sfdx doctor --plugin @salesforce/plugin-source
$ sfdx doctor --plugin @salesforce/plugin-source
```

_See code: [src/commands/doctor.ts](https://github.com/salesforcecli/plugin-info/blob/v2.3.2-t.0/src/commands/doctor.ts)_
_See code: [src/commands/doctor.ts](https://github.com/salesforcecli/plugin-info/blob/2.6.45/src/commands/doctor.ts)_

## `sfdx info:releasenotes:display`

Display Salesforce CLI release notes on the command line.

```
USAGE
$ sfdx info:releasenotes:display
$ sfdx info:releasenotes:display [--json] [-v <value>]
OPTIONS
-v, --version=version
--json Format output as json.
FLAGS
-v, --version=<value> CLI version or tag for which to display release notes.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Display Salesforce CLI release notes on the command line.
By default, this command displays release notes for the currently installed CLI version on your computer. Use the
--version flag to view release notes for a different release.
ALIASES
$ sfdx whatsnew
EXAMPLES
Display release notes for the currently installed CLI version:
sfdx info:releasenotes:display stable, stable-rc, latest, latest-rc, rc
$ sfdx info:releasenotes:display stable, stable-rc, latest, latest-rc, rc
Display release notes for CLI version 7.120.0:
sfdx info:releasenotes:display --version 7.120.0 stable, stable-rc, latest, latest-rc, rc
$ sfdx info:releasenotes:display --version 7.120.0 stable, stable-rc, latest, latest-rc, rc
Display release notes for the CLI version that corresponds to a tag (stable, stable-rc, latest, latest-rc, rc):
sfdx info:releasenotes:display --version latest
$ sfdx info:releasenotes:display --version latest
```

_See code: [src/commands/info/releasenotes/display.ts](https://github.com/salesforcecli/plugin-info/blob/v2.3.2-t.0/src/commands/info/releasenotes/display.ts)_
_See code: [src/commands/info/releasenotes/display.ts](https://github.com/salesforcecli/plugin-info/blob/2.6.45/src/commands/info/releasenotes/display.ts)_

<!-- commandsstop -->
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@salesforce/plugin-info",
"description": "Plugin for accessing cli info from the command line",
"version": "2.6.44",
"version": "2.6.45",
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/cli/issues",
"main": "lib/index.js",
Expand Down

0 comments on commit c712cca

Please sign in to comment.