@salesforce/cli 1.39.0 → 1.42.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 CHANGED
@@ -2,6 +2,12 @@
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.42.0](https://github.com/salesforcecli/cli/compare/v1.41.0...v1.42.0) (2022-08-17)
6
+
7
+ ## [1.41.0](https://github.com/salesforcecli/cli/compare/v1.40.0...v1.41.0) (2022-08-10)
8
+
9
+ ## [1.40.0](https://github.com/salesforcecli/cli/compare/v1.39.0...v1.40.0) (2022-08-03)
10
+
5
11
  ## [1.39.0](https://github.com/salesforcecli/cli/compare/v1.38.0...v1.39.0) (2022-07-27)
6
12
 
7
13
  ## [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.39.0 linux-x64 node-v14.20.0
35
+ @salesforce/cli/1.42.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)
@@ -104,6 +110,7 @@ USAGE
104
110
  - [`sf run function start`](#sf-run-function-start)
105
111
  - [`sf run function start container`](#sf-run-function-start-container)
106
112
  - [`sf run function start local`](#sf-run-function-start-local)
113
+ - [`sf search`](#sf-search)
107
114
  - [`sf update [CHANNEL]`](#sf-update-channel)
108
115
  - [`sf version`](#sf-version)
109
116
  - [`sf whatsnew [-v <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sf-whatsnew--v-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
@@ -2504,6 +2511,33 @@ ALIASES
2504
2511
  $ sf plugins remove
2505
2512
  ```
2506
2513
 
2514
+ ## `sf plugins:trust:verify -n <string> [-r <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
2515
+
2516
+ Validate a digital signature for a npm package.
2517
+
2518
+ ```
2519
+ USAGE
2520
+ $ sf plugins trust verify -n <string> [-r <string>] [--json] [--loglevel
2521
+ trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
2522
+
2523
+ FLAGS
2524
+ -n, --npm=<value> (required) Specify the npm name.
2525
+ This can include a tag/version.
2526
+ -r, --registry=<value> The registry name. The behavior is
2527
+ the same as npm.
2528
+ --json format output as json
2529
+ --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
2530
+ this command invocation
2531
+
2532
+ DESCRIPTION
2533
+ Validate a digital signature for a npm package.
2534
+
2535
+ EXAMPLES
2536
+ $ sf plugins trust verify --npm @scope/npmName --registry http://my.repo.org:4874
2537
+
2538
+ $ sf plugins trust verify --npm @scope/npmName
2539
+ ```
2540
+
2507
2541
  ## `sf plugins:uninstall PLUGIN...`
2508
2542
 
2509
2543
  Removes a plugin from the CLI.
@@ -2810,6 +2844,22 @@ EXAMPLES
2810
2844
  $ sf run function start local --port 5000 --language javascript
2811
2845
  ```
2812
2846
 
2847
+ ## `sf search`
2848
+
2849
+ Search for a command.
2850
+
2851
+ ```
2852
+ USAGE
2853
+ $ sf search
2854
+
2855
+ DESCRIPTION
2856
+ Search for a command.
2857
+
2858
+ Once you select a command, hit enter and it will show the help for that command.
2859
+ ```
2860
+
2861
+ _See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/v0.0.1/dist/commands/search.ts)_
2862
+
2813
2863
  ## `sf update [CHANNEL]`
2814
2864
 
2815
2865
  update the sf CLI