@salesforce/cli 1.39.0 → 1.40.0
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.
- package/CHANGELOG.md +2 -0
- package/README.md +34 -1
- package/npm-shrinkwrap.json +35300 -23897
- package/oclif.manifest.json +1 -1
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.40.0](https://github.com/salesforcecli/cli/compare/v1.39.0...v1.40.0) (2022-08-03)
|
|
6
|
+
|
|
5
7
|
## [1.39.0](https://github.com/salesforcecli/cli/compare/v1.38.0...v1.39.0) (2022-07-27)
|
|
6
8
|
|
|
7
9
|
## [1.38.0](https://github.com/salesforcecli/cli/compare/v1.36.0...v1.38.0) (2022-07-20)
|
package/README.md
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
- [Getting Started](#getting-started)
|
|
12
12
|
- [Feedback](#feedback)
|
|
13
13
|
- [Usage](#usage)
|
|
14
|
+
- [Architecture](#architecture)
|
|
14
15
|
- [Commands](#commands)
|
|
15
16
|
<!-- tocstop -->
|
|
16
17
|
|
|
@@ -31,7 +32,7 @@ $ npm install -g @salesforce/cli
|
|
|
31
32
|
$ sf COMMAND
|
|
32
33
|
running command...
|
|
33
34
|
$ sf (--version|-v)
|
|
34
|
-
@salesforce/cli/1.
|
|
35
|
+
@salesforce/cli/1.40.0 linux-x64 node-v14.20.0
|
|
35
36
|
$ sf --help [COMMAND]
|
|
36
37
|
USAGE
|
|
37
38
|
$ sf COMMAND
|
|
@@ -40,6 +41,10 @@ USAGE
|
|
|
40
41
|
|
|
41
42
|
<!-- usagestop -->
|
|
42
43
|
|
|
44
|
+
# Architecture
|
|
45
|
+
|
|
46
|
+
See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
|
|
47
|
+
|
|
43
48
|
# Commands
|
|
44
49
|
|
|
45
50
|
<!-- commands -->
|
|
@@ -96,6 +101,7 @@ USAGE
|
|
|
96
101
|
- [`sf plugins:install PLUGIN...`](#sf-pluginsinstall-plugin-1)
|
|
97
102
|
- [`sf plugins:link PLUGIN`](#sf-pluginslink-plugin)
|
|
98
103
|
- [`sf plugins:uninstall PLUGIN...`](#sf-pluginsuninstall-plugin)
|
|
104
|
+
- [`sf plugins:trust:verify -n <string> [-r <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sf-pluginstrustverify--n-string--r-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
|
|
99
105
|
- [`sf plugins:uninstall PLUGIN...`](#sf-pluginsuninstall-plugin-1)
|
|
100
106
|
- [`sf plugins:uninstall PLUGIN...`](#sf-pluginsuninstall-plugin-2)
|
|
101
107
|
- [`sf plugins update`](#sf-plugins-update)
|
|
@@ -2504,6 +2510,33 @@ ALIASES
|
|
|
2504
2510
|
$ sf plugins remove
|
|
2505
2511
|
```
|
|
2506
2512
|
|
|
2513
|
+
## `sf plugins:trust:verify -n <string> [-r <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
2514
|
+
|
|
2515
|
+
Validate a digital signature for a npm package.
|
|
2516
|
+
|
|
2517
|
+
```
|
|
2518
|
+
USAGE
|
|
2519
|
+
$ sf plugins trust verify -n <string> [-r <string>] [--json] [--loglevel
|
|
2520
|
+
trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
|
|
2521
|
+
|
|
2522
|
+
FLAGS
|
|
2523
|
+
-n, --npm=<value> (required) Specify the npm name.
|
|
2524
|
+
This can include a tag/version.
|
|
2525
|
+
-r, --registry=<value> The registry name. The behavior is
|
|
2526
|
+
the same as npm.
|
|
2527
|
+
--json format output as json
|
|
2528
|
+
--loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
|
|
2529
|
+
this command invocation
|
|
2530
|
+
|
|
2531
|
+
DESCRIPTION
|
|
2532
|
+
Validate a digital signature for a npm package.
|
|
2533
|
+
|
|
2534
|
+
EXAMPLES
|
|
2535
|
+
$ sf plugins trust verify --npm @scope/npmName --registry http://my.repo.org:4874
|
|
2536
|
+
|
|
2537
|
+
$ sf plugins trust verify --npm @scope/npmName
|
|
2538
|
+
```
|
|
2539
|
+
|
|
2507
2540
|
## `sf plugins:uninstall PLUGIN...`
|
|
2508
2541
|
|
|
2509
2542
|
Removes a plugin from the CLI.
|