Skip to content

Commit c712cca

Browse files
committed
chore(release): 2.6.45 [skip ci]
1 parent b110148 commit c712cca

3 files changed

Lines changed: 56 additions & 21 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [2.6.45](https://github.com/salesforcecli/plugin-info/compare/2.6.44...2.6.45) (2023-09-25)
2+
3+
### Bug Fixes
4+
5+
- **deps:** bump @salesforce/sf-plugins-core from 3.1.22 to 3.1.23 ([9cdadfc](https://github.com/salesforcecli/plugin-info/commit/9cdadfc8728f4dd36026e8a3c71b58718dc2a6ae))
6+
17
## [2.6.44](https://github.com/salesforcecli/plugin-info/compare/2.6.43...2.6.44) (2023-09-24)
28

39
### Bug Fixes

README.md

Lines changed: 49 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -81,20 +81,29 @@ sfdx plugins
8181

8282
## `sfdx doctor`
8383

84-
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.
84+
Gather CLI configuration data and run diagnostic tests to discover and report potential problems in your environment.
8585

8686
```
8787
USAGE
88-
$ sfdx doctor
88+
$ sfdx doctor [--json] [-c <value>] [-p <value>] [-d <value>] [-i]
8989
90-
OPTIONS
91-
-c, --command=command
92-
-d, --output-dir=output-dir
93-
-i, --create-issue
94-
-p, --plugin=plugin
95-
--json Format output as json.
90+
FLAGS
91+
-c, --command=<value> Command to run in debug mode; results are written to a log file.
92+
-d, --output-dir=<value> Directory to save all created files rather than the current working directory.
93+
-i, --create-issue Create a new issue on our GitHub repo and attach all diagnostic results.
94+
-p, --plugin=<value> Specific plugin on which to run diagnostics.
95+
96+
GLOBAL FLAGS
97+
--json Format output as json.
9698
9799
DESCRIPTION
100+
Gather CLI configuration data and run diagnostic tests to discover and report potential problems in your environment.
101+
102+
When you run the doctor command without parameters, it first displays a diagnostic overview of your environment. It
103+
then writes a detailed diagnosis to a JSON file in the current directory. Use the --outputdir to specify a different
104+
directory. To run diagnostic tests on a specific plugin, use the --plugin parameter. If the plugin isn't listening to
105+
the doctor, then you get a warning.
106+
98107
Use the --command parameter to run a specific command in debug mode; the doctor writes both stdout and stderr to
99108
\*.log files that you can provide to Salesforce Customer Support or attach to a GitHub issue.
100109
@@ -103,37 +112,57 @@ DESCRIPTION
103112
104113
EXAMPLES
105114
Run CLI doctor diagnostics:
106-
sfdx doctor
115+
116+
$ sfdx doctor
117+
107118
Run CLI doctor diagnostics and the specified command, and write the debug output to a file:
108-
sfdx doctor --command "force:org:list --all"
119+
120+
$ sfdx doctor --command "force:org:list --all"
121+
109122
Run CLI doctor diagnostics for a specific plugin:
110-
sfdx doctor --plugin @salesforce/plugin-source
123+
124+
$ sfdx doctor --plugin @salesforce/plugin-source
111125
```
112126

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

115129
## `sfdx info:releasenotes:display`
116130

131+
Display Salesforce CLI release notes on the command line.
132+
117133
```
118134
USAGE
119-
$ sfdx info:releasenotes:display
135+
$ sfdx info:releasenotes:display [--json] [-v <value>]
120136
121-
OPTIONS
122-
-v, --version=version
123-
--json Format output as json.
137+
FLAGS
138+
-v, --version=<value> CLI version or tag for which to display release notes.
139+
140+
GLOBAL FLAGS
141+
--json Format output as json.
142+
143+
DESCRIPTION
144+
Display Salesforce CLI release notes on the command line.
145+
146+
By default, this command displays release notes for the currently installed CLI version on your computer. Use the
147+
--version flag to view release notes for a different release.
124148
125149
ALIASES
126150
$ sfdx whatsnew
127151
128152
EXAMPLES
129153
Display release notes for the currently installed CLI version:
130-
sfdx info:releasenotes:display stable, stable-rc, latest, latest-rc, rc
154+
155+
$ sfdx info:releasenotes:display stable, stable-rc, latest, latest-rc, rc
156+
131157
Display release notes for CLI version 7.120.0:
132-
sfdx info:releasenotes:display --version 7.120.0 stable, stable-rc, latest, latest-rc, rc
158+
159+
$ sfdx info:releasenotes:display --version 7.120.0 stable, stable-rc, latest, latest-rc, rc
160+
133161
Display release notes for the CLI version that corresponds to a tag (stable, stable-rc, latest, latest-rc, rc):
134-
sfdx info:releasenotes:display --version latest
162+
163+
$ sfdx info:releasenotes:display --version latest
135164
```
136165

137-
_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)_
166+
_See code: [src/commands/info/releasenotes/display.ts](https://github.com/salesforcecli/plugin-info/blob/2.6.45/src/commands/info/releasenotes/display.ts)_
138167

139168
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/plugin-info",
33
"description": "Plugin for accessing cli info from the command line",
4-
"version": "2.6.44",
4+
"version": "2.6.45",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"main": "lib/index.js",

0 commit comments

Comments
 (0)