@salesforce/cli 2.133.4 → 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.133.4 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.126/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
 
@@ -9905,7 +10010,7 @@ FLAG DESCRIPTIONS
9905
10010
  directory.
9906
10011
  ```
9907
10012
 
9908
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.3/src/commands/template/generate/analytics/template.ts)_
10013
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/analytics/template.ts)_
9909
10014
 
9910
10015
  ## `sf template generate apex class`
9911
10016
 
@@ -9965,7 +10070,7 @@ FLAG DESCRIPTIONS
9965
10070
  Supplied parameter values or default values are filled into a copy of the template.
9966
10071
  ```
9967
10072
 
9968
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.3/src/commands/template/generate/apex/class.ts)_
10073
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/apex/class.ts)_
9969
10074
 
9970
10075
  ## `sf template generate apex trigger`
9971
10076
 
@@ -10035,7 +10140,7 @@ FLAG DESCRIPTIONS
10035
10140
  Supplied parameter values or default values are filled into a copy of the template.
10036
10141
  ```
10037
10142
 
10038
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.3/src/commands/template/generate/apex/trigger.ts)_
10143
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/apex/trigger.ts)_
10039
10144
 
10040
10145
  ## `sf template generate digital-experience site`
10041
10146
 
@@ -10089,7 +10194,7 @@ FLAG DESCRIPTIONS
10089
10194
  project, defaults to the current directory.
10090
10195
  ```
10091
10196
 
10092
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.3/src/commands/template/generate/digital-experience/site.ts)_
10197
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/digital-experience/site.ts)_
10093
10198
 
10094
10199
  ## `sf template generate flexipage`
10095
10200
 
@@ -10171,7 +10276,7 @@ FLAG DESCRIPTIONS
10171
10276
  'Custom_Object__c'. This sets the `sobjectType` field in the FlexiPage metadata.
10172
10277
  ```
10173
10278
 
10174
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.3/src/commands/template/generate/flexipage/index.ts)_
10279
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/flexipage/index.ts)_
10175
10280
 
10176
10281
  ## `sf template generate lightning app`
10177
10282
 
@@ -10229,7 +10334,7 @@ FLAG DESCRIPTIONS
10229
10334
  field in the DX project's "sfdx-project.json" file.
10230
10335
  ```
10231
10336
 
10232
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.3/src/commands/template/generate/lightning/app.ts)_
10337
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/lightning/app.ts)_
10233
10338
 
10234
10339
  ## `sf template generate lightning component`
10235
10340
 
@@ -10306,7 +10411,7 @@ FLAG DESCRIPTIONS
10306
10411
  field in the DX project's "sfdx-project.json" file.
10307
10412
  ```
10308
10413
 
10309
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.3/src/commands/template/generate/lightning/component.ts)_
10414
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/lightning/component.ts)_
10310
10415
 
10311
10416
  ## `sf template generate lightning event`
10312
10417
 
@@ -10364,7 +10469,7 @@ FLAG DESCRIPTIONS
10364
10469
  field in the DX project's "sfdx-project.json" file.
10365
10470
  ```
10366
10471
 
10367
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.3/src/commands/template/generate/lightning/event.ts)_
10472
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/lightning/event.ts)_
10368
10473
 
10369
10474
  ## `sf template generate lightning interface`
10370
10475
 
@@ -10422,7 +10527,7 @@ FLAG DESCRIPTIONS
10422
10527
  field in the DX project's "sfdx-project.json" file.
10423
10528
  ```
10424
10529
 
10425
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.3/src/commands/template/generate/lightning/interface.ts)_
10530
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/lightning/interface.ts)_
10426
10531
 
10427
10532
  ## `sf template generate lightning test`
10428
10533
 
@@ -10480,7 +10585,7 @@ FLAG DESCRIPTIONS
10480
10585
  field in the DX project's "sfdx-project.json" file.
10481
10586
  ```
10482
10587
 
10483
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.3/src/commands/template/generate/lightning/test.ts)_
10588
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/lightning/test.ts)_
10484
10589
 
10485
10590
  ## `sf template generate project`
10486
10591
 
@@ -10606,7 +10711,7 @@ FLAG DESCRIPTIONS
10606
10711
  server-side type stripping.
10607
10712
  ```
10608
10713
 
10609
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.3/src/commands/template/generate/project/index.ts)_
10714
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/project/index.ts)_
10610
10715
 
10611
10716
  ## `sf template generate static-resource`
10612
10717
 
@@ -10669,7 +10774,7 @@ FLAG DESCRIPTIONS
10669
10774
  etc.
10670
10775
  ```
10671
10776
 
10672
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.3/src/commands/template/generate/static-resource/index.ts)_
10777
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/static-resource/index.ts)_
10673
10778
 
10674
10779
  ## `sf template generate ui-bundle`
10675
10780
 
@@ -10753,7 +10858,7 @@ FLAG DESCRIPTIONS
10753
10858
  Supplied parameter values or default values are filled into a copy of the template.
10754
10859
  ```
10755
10860
 
10756
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.3/src/commands/template/generate/ui-bundle/index.ts)_
10861
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/ui-bundle/index.ts)_
10757
10862
 
10758
10863
  ## `sf template generate visualforce component`
10759
10864
 
@@ -10810,7 +10915,7 @@ FLAG DESCRIPTIONS
10810
10915
  Supplied parameter values or default values are filled into a copy of the template.
10811
10916
  ```
10812
10917
 
10813
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.3/src/commands/template/generate/visualforce/component.ts)_
10918
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/visualforce/component.ts)_
10814
10919
 
10815
10920
  ## `sf template generate visualforce page`
10816
10921
 
@@ -10861,7 +10966,7 @@ FLAG DESCRIPTIONS
10861
10966
  The name can be up to 40 characters and must start with a letter.
10862
10967
  ```
10863
10968
 
10864
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.3/src/commands/template/generate/visualforce/page.ts)_
10969
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/visualforce/page.ts)_
10865
10970
 
10866
10971
  ## `sf update [CHANNEL]`
10867
10972
 
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.133.4",
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.133.4",
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",
@@ -39,8 +39,8 @@
39
39
  "@salesforce/plugin-settings": "2.4.71",
40
40
  "@salesforce/plugin-sobject": "1.4.100",
41
41
  "@salesforce/plugin-telemetry": "3.8.15",
42
- "@salesforce/plugin-templates": "56.16.3",
43
- "@salesforce/plugin-trust": "3.7.126",
42
+ "@salesforce/plugin-templates": "56.16.4",
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",
@@ -6177,9 +6177,9 @@
6177
6177
  }
6178
6178
  },
6179
6179
  "node_modules/@salesforce/plugin-templates": {
6180
- "version": "56.16.3",
6181
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-templates/-/plugin-templates-56.16.3.tgz",
6182
- "integrity": "sha512-/eift3FLVeie6wBevXXS9yJit2I7eSTbwglyaBzFEI7pFyyaM4pcwy3en5EatJohXBKZfvdjCs614unDKS2BRw==",
6180
+ "version": "56.16.4",
6181
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-templates/-/plugin-templates-56.16.4.tgz",
6182
+ "integrity": "sha512-uetB+fNMJZgenksXfWNnPub7dy2lzQRPwQY4jeMhTwrmOJjlQFbH1ekgBGnJ8l8405qAAeuCxhfsVnBs2P2mAQ==",
6183
6183
  "license": "Apache-2.0",
6184
6184
  "dependencies": {
6185
6185
  "@salesforce/core": "^8.28.4",
@@ -6191,9 +6191,9 @@
6191
6191
  }
6192
6192
  },
6193
6193
  "node_modules/@salesforce/plugin-trust": {
6194
- "version": "3.7.126",
6195
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.7.126.tgz",
6196
- "integrity": "sha512-mlozIpirZFuJsTlreSL806dWX6emDgWTzgzWKpi651DQ4Pa1FvsQycisCZsX5IlvKym70E9qlwRMoUbVa1z81A==",
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"
@@ -2583,19 +2583,19 @@
2583
2583
  "@salesforce/ts-types" "^2.0.12"
2584
2584
  debug "^4.4.3"
2585
2585
 
2586
- "@salesforce/plugin-templates@56.16.3":
2587
- version "56.16.3"
2588
- resolved "https://registry.npmjs.org/@salesforce/plugin-templates/-/plugin-templates-56.16.3.tgz"
2589
- integrity sha512-/eift3FLVeie6wBevXXS9yJit2I7eSTbwglyaBzFEI7pFyyaM4pcwy3en5EatJohXBKZfvdjCs614unDKS2BRw==
2586
+ "@salesforce/plugin-templates@56.16.4":
2587
+ version "56.16.4"
2588
+ resolved "https://registry.npmjs.org/@salesforce/plugin-templates/-/plugin-templates-56.16.4.tgz"
2589
+ integrity sha512-uetB+fNMJZgenksXfWNnPub7dy2lzQRPwQY4jeMhTwrmOJjlQFbH1ekgBGnJ8l8405qAAeuCxhfsVnBs2P2mAQ==
2590
2590
  dependencies:
2591
2591
  "@salesforce/core" "^8.28.4"
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.126":
2596
- version "3.7.126"
2597
- resolved "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.7.126.tgz"
2598
- integrity sha512-mlozIpirZFuJsTlreSL806dWX6emDgWTzgzWKpi651DQ4Pa1FvsQycisCZsX5IlvKym70E9qlwRMoUbVa1z81A==
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.133.4"
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.133.4",
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",
@@ -174,8 +174,8 @@
174
174
  "@salesforce/plugin-settings": "2.4.71",
175
175
  "@salesforce/plugin-sobject": "1.4.100",
176
176
  "@salesforce/plugin-telemetry": "3.8.15",
177
- "@salesforce/plugin-templates": "56.16.3",
178
- "@salesforce/plugin-trust": "3.7.126",
177
+ "@salesforce/plugin-templates": "56.16.4",
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"