Skip to content

Commit 9365c0f

Browse files
authored
Merge pull request #2714 from salesforcecli/release/2.134.1
Release PR for 2.134.1 as nightly
2 parents ccdf0e8 + 7ecb1a6 commit 9365c0f

3 files changed

Lines changed: 118 additions & 13 deletions

File tree

README.md

Lines changed: 107 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli
2525
$ sf COMMAND
2626
running 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]
3030
USAGE
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

77867891
Validate 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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/cli",
33
"description": "The Salesforce CLI",
4-
"version": "2.134.0",
4+
"version": "2.134.1",
55
"author": "Salesforce",
66
"bin": {
77
"sf": "./bin/run.js",
@@ -146,7 +146,7 @@
146146
},
147147
"dependencies": {
148148
"@inquirer/select": "^2.3.5",
149-
"@oclif/core": "4.10.6",
149+
"@oclif/core": "4.11.0",
150150
"@oclif/plugin-autocomplete": "3.2.46",
151151
"@oclif/plugin-commands": "4.1.47",
152152
"@oclif/plugin-help": "6.2.45",
@@ -175,7 +175,7 @@
175175
"@salesforce/plugin-sobject": "1.4.100",
176176
"@salesforce/plugin-telemetry": "3.8.15",
177177
"@salesforce/plugin-templates": "56.16.4",
178-
"@salesforce/plugin-trust": "3.7.127",
178+
"@salesforce/plugin-trust": "3.8.0",
179179
"@salesforce/plugin-user": "3.9.0",
180180
"@salesforce/sf-plugins-core": "12.2.10",
181181
"ansis": "^3.12.0"

yarn.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1742,10 +1742,10 @@
17421742
node-gyp "^12.1.0"
17431743
proc-log "^6.0.0"
17441744

1745-
"@oclif/core@4.10.6", "@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":
1746-
version "4.10.6"
1747-
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-4.10.6.tgz#233d66284d8c7c8162c9d437754503734069dd85"
1748-
integrity sha512-ySCOYnPKZE3KACT1V9It99hWG9b8E5MpagbRdWxPNRO3beMqmbr4SLUQoFtZ9XRtW++kks1ZVwZOdpnR8rpb9A==
1745+
"@oclif/core@4.11.0", "@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":
1746+
version "4.11.0"
1747+
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-4.11.0.tgz#262102cbdabfe0f83eba5381a4ffcd34d779921a"
1748+
integrity sha512-nTkRMgxFlIKQIIYGvhO2JMsLSQ1aHPHblHfFgxgoBrGK8Ao/8wxc4eNOIv/+t8dMXliZd7mREVr6la4aXXXg5A==
17491749
dependencies:
17501750
ansi-escapes "^4.3.2"
17511751
ansis "^3.17.0"
@@ -2578,10 +2578,10 @@
25782578
"@salesforce/sf-plugins-core" "^12"
25792579
"@salesforce/templates" "^66.7.12"
25802580

2581-
"@salesforce/plugin-trust@3.7.127", "@salesforce/plugin-trust@^3.7.89":
2582-
version "3.7.127"
2583-
resolved "https://registry.yarnpkg.com/@salesforce/plugin-trust/-/plugin-trust-3.7.127.tgz#454e490c0a678c19fd9ce906d6aa8560e771143c"
2584-
integrity sha512-yJZ2MkcMtKksQ17Tk6irKxoyCwle+tP0jGYNTj6eGqbhvBAC4ueLGjdYpGOe70taceu1LZPEEdwAgirlZ+0o8A==
2581+
"@salesforce/plugin-trust@3.8.0", "@salesforce/plugin-trust@^3.7.89":
2582+
version "3.8.0"
2583+
resolved "https://registry.yarnpkg.com/@salesforce/plugin-trust/-/plugin-trust-3.8.0.tgz#fd98704f63ac646316b523d65a7655b6a634306c"
2584+
integrity sha512-SkG1HhfWMfo3hpKooukPW4wlVadk4lQlP3R2De8D6CElxNlr0zkQhWirQrt67nCkSZZKjXdyPOeJzqY2/9jMpA==
25852585
dependencies:
25862586
"@oclif/core" "^4"
25872587
"@salesforce/core" "^8.28.1"

0 commit comments

Comments
 (0)