@salesforce/plugin-info 2.3.6 → 2.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,11 +5,11 @@ export default class Doctor extends SfCommand<SfDoctorDiagnosis> {
5
5
  static readonly description: string;
6
6
  static readonly examples: string[];
7
7
  static readonly flags: {
8
- command: import("@oclif/core/lib/interfaces").OptionFlag<string>;
9
- plugin: import("@oclif/core/lib/interfaces").OptionFlag<string>;
10
- 'output-dir': import("@oclif/core/lib/interfaces").OptionFlag<string>;
8
+ command: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
9
+ plugin: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
10
+ 'output-dir': import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
11
11
  'create-issue': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
12
- loglevel: import("@oclif/core/lib/interfaces").OptionFlag<string>;
12
+ loglevel: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
13
13
  };
14
14
  private tasks;
15
15
  private doctor;
@@ -6,9 +6,9 @@ export default class Display extends SfCommand<DisplayOutput> {
6
6
  static aliases: string[];
7
7
  static readonly examples: string[];
8
8
  static readonly flags: {
9
- version: import("@oclif/core/lib/interfaces").OptionFlag<string>;
9
+ version: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
10
10
  hook: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
11
- loglevel: import("@oclif/core/lib/interfaces").OptionFlag<string>;
11
+ loglevel: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
12
12
  };
13
13
  run(): Promise<DisplayOutput>;
14
14
  }
@@ -1 +1 @@
1
- {"version":"2.3.6","commands":{"doctor":{"id":"doctor","summary":"Gather CLI configuration data and run diagnostic tests to discover and report potential problems in your environment.","description":"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.\n\nUse 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.\n\nPlugin providers can also implement their own doctor diagnostic tests by listening to the \"sf-doctor\" event and running plugin specific tests that are then included in the doctor diagnostics log.","strict":true,"pluginName":"@salesforce/plugin-info","pluginAlias":"@salesforce/plugin-info","pluginType":"core","aliases":[],"examples":["Run CLI doctor diagnostics:\n<%= config.bin %> doctor","Run CLI doctor diagnostics and the specified command, and write the debug output to a file:\n<%= config.bin %> doctor --command \"force:org:list --all\"","Run CLI doctor diagnostics for a specific plugin:\n<%= config.bin %> doctor --plugin @salesforce/plugin-source"],"flags":{"json":{"name":"json","type":"boolean","description":"Format output as json.","helpGroup":"GLOBAL","allowNo":false},"command":{"name":"command","type":"option","char":"c","summary":"Command to run in debug mode; results are written to a log file.","multiple":false},"plugin":{"name":"plugin","type":"option","char":"p","summary":"Specific plugin on which to run diagnostics.","multiple":false},"output-dir":{"name":"output-dir","type":"option","char":"d","summary":"Directory to save all created files rather than the current working directory.","multiple":false,"aliases":["outputdir","o"]},"create-issue":{"name":"create-issue","type":"boolean","char":"i","summary":"Create a new issue on our GitHub repo and attach all diagnostic results.","allowNo":false,"aliases":["createissue"]},"loglevel":{"name":"loglevel","type":"option","hidden":true,"multiple":false,"deprecated":{"message":"The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."}}},"args":[]},"info:releasenotes:display":{"id":"info:releasenotes:display","summary":"Display Salesforce CLI release notes on the command line.","description":"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.","strict":true,"pluginName":"@salesforce/plugin-info","pluginAlias":"@salesforce/plugin-info","pluginType":"core","aliases":["whatsnew"],"examples":["Display release notes for the currently installed CLI version:\n<%= config.bin %> <%= command.id %> stable, stable-rc, latest, latest-rc, rc","Display release notes for CLI version 7.120.0:\n<%= config.bin %> <%= command.id %> --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):\n<%= config.bin %> <%= command.id %> --version latest"],"flags":{"json":{"name":"json","type":"boolean","description":"Format output as json.","helpGroup":"GLOBAL","allowNo":false},"version":{"name":"version","type":"option","char":"v","summary":"CLI version or tag for which to display release notes.","multiple":false},"hook":{"name":"hook","type":"boolean","summary":"This hidden parameter is used in post install or update hooks.","hidden":true,"allowNo":false},"loglevel":{"name":"loglevel","type":"option","hidden":true,"multiple":false,"deprecated":{"message":"The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."}}},"args":[],"helpers":["stable","stable-rc","latest","latest-rc","rc"]}}}
1
+ {"version":"2.4.1","commands":{"doctor":{"id":"doctor","summary":"Gather CLI configuration data and run diagnostic tests to discover and report potential problems in your environment.","description":"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.\n\nUse 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.\n\nPlugin providers can also implement their own doctor diagnostic tests by listening to the \"sf-doctor\" event and running plugin specific tests that are then included in the doctor diagnostics log.","strict":true,"pluginName":"@salesforce/plugin-info","pluginAlias":"@salesforce/plugin-info","pluginType":"core","aliases":[],"examples":["Run CLI doctor diagnostics:\n<%= config.bin %> doctor","Run CLI doctor diagnostics and the specified command, and write the debug output to a file:\n<%= config.bin %> doctor --command \"force:org:list --all\"","Run CLI doctor diagnostics for a specific plugin:\n<%= config.bin %> doctor --plugin @salesforce/plugin-source"],"flags":{"json":{"name":"json","type":"boolean","description":"Format output as json.","helpGroup":"GLOBAL","allowNo":false},"command":{"name":"command","type":"option","char":"c","summary":"Command to run in debug mode; results are written to a log file.","multiple":false},"plugin":{"name":"plugin","type":"option","char":"p","summary":"Specific plugin on which to run diagnostics.","multiple":false},"output-dir":{"name":"output-dir","type":"option","char":"d","summary":"Directory to save all created files rather than the current working directory.","multiple":false,"aliases":["outputdir","o"]},"create-issue":{"name":"create-issue","type":"boolean","char":"i","summary":"Create a new issue on our GitHub repo and attach all diagnostic results.","allowNo":false,"aliases":["createissue"]},"loglevel":{"name":"loglevel","type":"option","hidden":true,"multiple":false,"deprecated":{"message":"The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."}}},"args":[]},"info:releasenotes:display":{"id":"info:releasenotes:display","summary":"Display Salesforce CLI release notes on the command line.","description":"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.","strict":true,"pluginName":"@salesforce/plugin-info","pluginAlias":"@salesforce/plugin-info","pluginType":"core","aliases":["whatsnew"],"examples":["Display release notes for the currently installed CLI version:\n<%= config.bin %> <%= command.id %> stable, stable-rc, latest, latest-rc, rc","Display release notes for CLI version 7.120.0:\n<%= config.bin %> <%= command.id %> --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):\n<%= config.bin %> <%= command.id %> --version latest"],"flags":{"json":{"name":"json","type":"boolean","description":"Format output as json.","helpGroup":"GLOBAL","allowNo":false},"version":{"name":"version","type":"option","char":"v","summary":"CLI version or tag for which to display release notes.","multiple":false},"hook":{"name":"hook","type":"boolean","summary":"This hidden parameter is used in post install or update hooks.","hidden":true,"allowNo":false},"loglevel":{"name":"loglevel","type":"option","hidden":true,"multiple":false,"deprecated":{"message":"The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."}}},"args":[],"helpers":["stable","stable-rc","latest","latest-rc","rc"]}}}
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-info",
3
3
  "description": "Plugin for accessing cli info from the command line",
4
- "version": "2.3.6",
4
+ "version": "2.4.1",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "main": "lib/index.js",
8
8
  "dependencies": {
9
- "@oclif/core": "^1.25.0",
9
+ "@oclif/core": "^2.0.7",
10
10
  "@salesforce/core": "^3.33.0",
11
11
  "@salesforce/kit": "^1.8.0",
12
- "@salesforce/sf-plugins-core": "^1.22.2",
12
+ "@salesforce/sf-plugins-core": "^2.0.1",
13
13
  "got": "^11.8.6",
14
14
  "marked": "^4.2.5",
15
15
  "marked-terminal": "^4.2.0",
@@ -21,8 +21,8 @@
21
21
  },
22
22
  "devDependencies": {
23
23
  "@oclif/plugin-command-snapshot": "^3.2.17",
24
- "@oclif/plugin-version": "1.1.3",
25
- "@salesforce/cli-plugins-testkit": "^3.2.15",
24
+ "@oclif/plugin-version": "1.2.1",
25
+ "@salesforce/cli-plugins-testkit": "^3.2.19",
26
26
  "@salesforce/dev-config": "^3.1.0",
27
27
  "@salesforce/dev-scripts": "^3.1.0",
28
28
  "@salesforce/plugin-command-reference": "^1.5.10",
@@ -44,7 +44,7 @@
44
44
  "eslint-config-salesforce-typescript": "^1.1.1",
45
45
  "eslint-plugin-header": "^3.1.1",
46
46
  "eslint-plugin-import": "^2.26.0",
47
- "eslint-plugin-jsdoc": "^39.6.4",
47
+ "eslint-plugin-jsdoc": "^39.6.10",
48
48
  "eslint-plugin-sf-plugin": "^1.6.3",
49
49
  "husky": "^7.0.4",
50
50
  "mocha": "^9.1.3",
@@ -127,7 +127,7 @@
127
127
  "access": "public"
128
128
  },
129
129
  "sfdx": {
130
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-info/2.3.6.crt",
131
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-info/2.3.6.sig"
130
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-info/2.4.1.crt",
131
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-info/2.4.1.sig"
132
132
  }
133
133
  }