@@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli
2525$ sf COMMAND
2626running command...
2727$ 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
2929$ sf --help [COMMAND]
3030USAGE
3131 $ sf COMMAND
@@ -173,6 +173,9 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
173173- [ ` sf plugins install PLUGIN ` ] ( #sf-plugins-install-plugin )
174174- [ ` sf plugins link PATH ` ] ( #sf-plugins-link-path )
175175- [ ` 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 )
176179- [ ` sf plugins trust verify ` ] ( #sf-plugins-trust-verify )
177180- [ ` sf plugins uninstall [PLUGIN] ` ] ( #sf-plugins-uninstall-plugin )
178181- [ ` sf plugins update ` ] ( #sf-plugins-update )
@@ -7781,6 +7784,108 @@ FLAGS
77817784
77827785_ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/5.4.62/src/commands/plugins/reset.ts ) _
77837786
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+
77847889## ` sf plugins trust verify `
77857890
77867891Validate a digital signature.
@@ -7808,7 +7913,7 @@ EXAMPLES
78087913 $ sf plugins trust verify --npm @scope/npmName
78097914```
78107915
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 ) _
78127917
78137918## ` sf plugins uninstall [PLUGIN] `
78147919
0 commit comments