@salesforce/cli 2.134.0 → 2.134.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.
package/README.md CHANGED
@@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli
25
25
  $ sf COMMAND
26
26
  running command...
27
27
  $ sf (--version|-v)
28
- @salesforce/cli/2.134.0 linux-x64 node-v22.22.2
28
+ @salesforce/cli/2.134.1 linux-x64 node-v22.22.2
29
29
  $ sf --help [COMMAND]
30
30
  USAGE
31
31
  $ sf COMMAND
@@ -173,6 +173,9 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
173
173
  - [`sf plugins install PLUGIN`](#sf-plugins-install-plugin)
174
174
  - [`sf plugins link PATH`](#sf-plugins-link-path)
175
175
  - [`sf plugins reset`](#sf-plugins-reset)
176
+ - [`sf plugins trust allowlist add`](#sf-plugins-trust-allowlist-add)
177
+ - [`sf plugins trust allowlist list`](#sf-plugins-trust-allowlist-list)
178
+ - [`sf plugins trust allowlist remove`](#sf-plugins-trust-allowlist-remove)
176
179
  - [`sf plugins trust verify`](#sf-plugins-trust-verify)
177
180
  - [`sf plugins uninstall [PLUGIN]`](#sf-plugins-uninstall-plugin)
178
181
  - [`sf plugins update`](#sf-plugins-update)
@@ -7781,6 +7784,108 @@ FLAGS
7781
7784
 
7782
7785
  _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.62/src/commands/plugins/reset.ts)_
7783
7786
 
7787
+ ## `sf plugins trust allowlist add`
7788
+
7789
+ Add plugins to the plugin allowlist.
7790
+
7791
+ ```
7792
+ USAGE
7793
+ $ sf plugins trust allowlist add -n <value>... [--json] [--flags-dir <value>]
7794
+
7795
+ FLAGS
7796
+ -n, --name=<value>... (required) The npm name of the plugin to add to the allowlist. Add multiple plugins by
7797
+ specifying the `--name` flag multiple times.
7798
+
7799
+ GLOBAL FLAGS
7800
+ --flags-dir=<value> Import flag values from a directory.
7801
+ --json Format output as json.
7802
+
7803
+ DESCRIPTION
7804
+ Add plugins to the plugin allowlist.
7805
+
7806
+ The plugin allowlist lets users automatically install a plugin without being prompted, even when the plugin is
7807
+ unsigned.
7808
+
7809
+ This command adds one or more plugins to the `unsignedPluginAllowList.json` file, creating the file if it doesn't
7810
+ exist. Plugins already present in the allowlist are skipped.
7811
+
7812
+ EXAMPLES
7813
+ Add a single plugin to the allowlist:
7814
+
7815
+ $ sf plugins trust allowlist add --name @scope/my-plugin
7816
+
7817
+ Add multiple plugins to the allowlist:
7818
+
7819
+ $ sf plugins trust allowlist add --name @scope/my-plugin --name another-plugin
7820
+ ```
7821
+
7822
+ _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.0/src/commands/plugins/trust/allowlist/add.ts)_
7823
+
7824
+ ## `sf plugins trust allowlist list`
7825
+
7826
+ List the plugins on the plugin allowlist.
7827
+
7828
+ ```
7829
+ USAGE
7830
+ $ sf plugins trust allowlist list [--json] [--flags-dir <value>]
7831
+
7832
+ GLOBAL FLAGS
7833
+ --flags-dir=<value> Import flag values from a directory.
7834
+ --json Format output as json.
7835
+
7836
+ DESCRIPTION
7837
+ List the plugins on the plugin allowlist.
7838
+
7839
+ The plugin allowlist lets users automatically install a plugin without being prompted, even when the plugin is
7840
+ unsigned.
7841
+
7842
+ This command prints the contents of the `unsignedPluginAllowList.json` file as a table.
7843
+
7844
+ EXAMPLES
7845
+ List all plugins on the allowlist:
7846
+
7847
+ $ sf plugins trust allowlist list
7848
+ ```
7849
+
7850
+ _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.0/src/commands/plugins/trust/allowlist/list.ts)_
7851
+
7852
+ ## `sf plugins trust allowlist remove`
7853
+
7854
+ Remove plugins from the plugin allowlist.
7855
+
7856
+ ```
7857
+ USAGE
7858
+ $ sf plugins trust allowlist remove -n <value>... [--json] [--flags-dir <value>]
7859
+
7860
+ FLAGS
7861
+ -n, --name=<value>... (required) The npm name of the plugin to remove from the allowlist. Remove multiple plugins by
7862
+ specifying the `--name` flag multiple times.
7863
+
7864
+ GLOBAL FLAGS
7865
+ --flags-dir=<value> Import flag values from a directory.
7866
+ --json Format output as json.
7867
+
7868
+ DESCRIPTION
7869
+ Remove plugins from the plugin allowlist.
7870
+
7871
+ The plugin allowlist lets users automatically install a plugin without being prompted, even when the plugin is
7872
+ unsigned.
7873
+
7874
+ This command removes one or more plugins from the `unsignedPluginAllowList.json` file. Plugins not present in the
7875
+ allowlist are skipped.
7876
+
7877
+ EXAMPLES
7878
+ Remove a single plugin from the allowlist:
7879
+
7880
+ $ sf plugins trust allowlist remove --name @scope/my-plugin
7881
+
7882
+ Remove multiple plugins from the allowlist:
7883
+
7884
+ $ sf plugins trust allowlist remove --name @scope/my-plugin --name another-plugin
7885
+ ```
7886
+
7887
+ _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.0/src/commands/plugins/trust/allowlist/remove.ts)_
7888
+
7784
7889
  ## `sf plugins trust verify`
7785
7890
 
7786
7891
  Validate a digital signature.
@@ -7808,7 +7913,7 @@ EXAMPLES
7808
7913
  $ sf plugins trust verify --npm @scope/npmName
7809
7914
  ```
7810
7915
 
7811
- _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.7.127/src/commands/plugins/trust/verify.ts)_
7916
+ _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.0/src/commands/plugins/trust/verify.ts)_
7812
7917
 
7813
7918
  ## `sf plugins uninstall [PLUGIN]`
7814
7919
 
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.134.0",
3
+ "version": "2.134.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.134.0",
9
+ "version": "2.134.1",
10
10
  "hasInstallScript": true,
11
11
  "license": "Apache-2.0",
12
12
  "dependencies": {
13
13
  "@inquirer/select": "^2.3.5",
14
- "@oclif/core": "4.10.6",
14
+ "@oclif/core": "4.11.0",
15
15
  "@oclif/plugin-autocomplete": "3.2.46",
16
16
  "@oclif/plugin-commands": "4.1.47",
17
17
  "@oclif/plugin-help": "6.2.45",
@@ -40,7 +40,7 @@
40
40
  "@salesforce/plugin-sobject": "1.4.100",
41
41
  "@salesforce/plugin-telemetry": "3.8.15",
42
42
  "@salesforce/plugin-templates": "56.16.4",
43
- "@salesforce/plugin-trust": "3.7.127",
43
+ "@salesforce/plugin-trust": "3.8.0",
44
44
  "@salesforce/plugin-user": "3.9.0",
45
45
  "@salesforce/sf-plugins-core": "12.2.10",
46
46
  "ansis": "^3.12.0"
@@ -3674,9 +3674,9 @@
3674
3674
  }
3675
3675
  },
3676
3676
  "node_modules/@oclif/core": {
3677
- "version": "4.10.6",
3678
- "resolved": "https://registry.npmjs.org/@oclif/core/-/core-4.10.6.tgz",
3679
- "integrity": "sha512-ySCOYnPKZE3KACT1V9It99hWG9b8E5MpagbRdWxPNRO3beMqmbr4SLUQoFtZ9XRtW++kks1ZVwZOdpnR8rpb9A==",
3677
+ "version": "4.11.0",
3678
+ "resolved": "https://registry.npmjs.org/@oclif/core/-/core-4.11.0.tgz",
3679
+ "integrity": "sha512-nTkRMgxFlIKQIIYGvhO2JMsLSQ1aHPHblHfFgxgoBrGK8Ao/8wxc4eNOIv/+t8dMXliZd7mREVr6la4aXXXg5A==",
3680
3680
  "license": "MIT",
3681
3681
  "dependencies": {
3682
3682
  "ansi-escapes": "^4.3.2",
@@ -6191,9 +6191,9 @@
6191
6191
  }
6192
6192
  },
6193
6193
  "node_modules/@salesforce/plugin-trust": {
6194
- "version": "3.7.127",
6195
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.7.127.tgz",
6196
- "integrity": "sha512-yJZ2MkcMtKksQ17Tk6irKxoyCwle+tP0jGYNTj6eGqbhvBAC4ueLGjdYpGOe70taceu1LZPEEdwAgirlZ+0o8A==",
6194
+ "version": "3.8.0",
6195
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.8.0.tgz",
6196
+ "integrity": "sha512-SkG1HhfWMfo3hpKooukPW4wlVadk4lQlP3R2De8D6CElxNlr0zkQhWirQrt67nCkSZZKjXdyPOeJzqY2/9jMpA==",
6197
6197
  "license": "Apache-2.0",
6198
6198
  "dependencies": {
6199
6199
  "@oclif/core": "^4",
package/oclif.lock CHANGED
@@ -1749,10 +1749,10 @@
1749
1749
  node-gyp "^12.1.0"
1750
1750
  proc-log "^6.0.0"
1751
1751
 
1752
- "@oclif/core@^4", "@oclif/core@^4.0.27", "@oclif/core@^4.10.4", "@oclif/core@^4.10.5", "@oclif/core@^4.10.6", "@oclif/core@^4.8.0", "@oclif/core@>= 3.0.0", "@oclif/core@4.10.6":
1753
- version "4.10.6"
1754
- resolved "https://registry.npmjs.org/@oclif/core/-/core-4.10.6.tgz"
1755
- integrity sha512-ySCOYnPKZE3KACT1V9It99hWG9b8E5MpagbRdWxPNRO3beMqmbr4SLUQoFtZ9XRtW++kks1ZVwZOdpnR8rpb9A==
1752
+ "@oclif/core@^4", "@oclif/core@^4.0.27", "@oclif/core@^4.10.4", "@oclif/core@^4.10.5", "@oclif/core@^4.10.6", "@oclif/core@^4.8.0", "@oclif/core@>= 3.0.0", "@oclif/core@4.11.0":
1753
+ version "4.11.0"
1754
+ resolved "https://registry.npmjs.org/@oclif/core/-/core-4.11.0.tgz"
1755
+ integrity sha512-nTkRMgxFlIKQIIYGvhO2JMsLSQ1aHPHblHfFgxgoBrGK8Ao/8wxc4eNOIv/+t8dMXliZd7mREVr6la4aXXXg5A==
1756
1756
  dependencies:
1757
1757
  ansi-escapes "^4.3.2"
1758
1758
  ansis "^3.17.0"
@@ -2592,10 +2592,10 @@
2592
2592
  "@salesforce/sf-plugins-core" "^12"
2593
2593
  "@salesforce/templates" "^66.7.12"
2594
2594
 
2595
- "@salesforce/plugin-trust@^3.7.89", "@salesforce/plugin-trust@3.7.127":
2596
- version "3.7.127"
2597
- resolved "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.7.127.tgz"
2598
- integrity sha512-yJZ2MkcMtKksQ17Tk6irKxoyCwle+tP0jGYNTj6eGqbhvBAC4ueLGjdYpGOe70taceu1LZPEEdwAgirlZ+0o8A==
2595
+ "@salesforce/plugin-trust@^3.7.89", "@salesforce/plugin-trust@3.8.0":
2596
+ version "3.8.0"
2597
+ resolved "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.8.0.tgz"
2598
+ integrity sha512-SkG1HhfWMfo3hpKooukPW4wlVadk4lQlP3R2De8D6CElxNlr0zkQhWirQrt67nCkSZZKjXdyPOeJzqY2/9jMpA==
2599
2599
  dependencies:
2600
2600
  "@oclif/core" "^4"
2601
2601
  "@salesforce/core" "^8.28.1"
@@ -4554,5 +4554,5 @@
4554
4554
  "requiresProject": true
4555
4555
  }
4556
4556
  },
4557
- "version": "2.134.0"
4557
+ "version": "2.134.1"
4558
4558
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.134.0",
4
+ "version": "2.134.1",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -146,7 +146,7 @@
146
146
  },
147
147
  "dependencies": {
148
148
  "@inquirer/select": "^2.3.5",
149
- "@oclif/core": "4.10.6",
149
+ "@oclif/core": "4.11.0",
150
150
  "@oclif/plugin-autocomplete": "3.2.46",
151
151
  "@oclif/plugin-commands": "4.1.47",
152
152
  "@oclif/plugin-help": "6.2.45",
@@ -175,7 +175,7 @@
175
175
  "@salesforce/plugin-sobject": "1.4.100",
176
176
  "@salesforce/plugin-telemetry": "3.8.15",
177
177
  "@salesforce/plugin-templates": "56.16.4",
178
- "@salesforce/plugin-trust": "3.7.127",
178
+ "@salesforce/plugin-trust": "3.8.0",
179
179
  "@salesforce/plugin-user": "3.9.0",
180
180
  "@salesforce/sf-plugins-core": "12.2.10",
181
181
  "ansis": "^3.12.0"