@salesforce/cli 2.93.5 → 2.93.6

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.93.5 linux-x64 node-v22.16.0
28
+ @salesforce/cli/2.93.6 linux-x64 node-v22.16.0
29
29
  $ sf --help [COMMAND]
30
30
  USAGE
31
31
  $ sf COMMAND
@@ -5506,7 +5506,7 @@ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/
5506
5506
 
5507
5507
  ## `sf package convert`
5508
5508
 
5509
- Create a second-generation package version from a first-generation package.
5509
+ Convert a managed-released first-generation managed package into a second-generation managed package.
5510
5510
 
5511
5511
  ```
5512
5512
  USAGE
@@ -5514,12 +5514,12 @@ USAGE
5514
5514
  <value>] [-x] [-w <value>] [-m <value>] [--verbose] [-a <value>]
5515
5515
 
5516
5516
  FLAGS
5517
- -a, --patch-version=<value> Specific released patch version to convert
5517
+ -a, --patch-version=<value> Specific released patch version to be converted.
5518
5518
  -f, --definition-file=<value> Path to a definition file that contains features and org preferences that the metadata
5519
5519
  of the package version depends on.
5520
5520
  -k, --installation-key=<value> Installation key for key-protected package.
5521
5521
  -m, --seed-metadata=<value> Directory containing metadata to be deployed prior to conversion.
5522
- -p, --package=<value> (required) ID (starts with 033) of the first-generation package to convert.
5522
+ -p, --package=<value> (required) ID (starts with 033) of the first-generation managed package to convert.
5523
5523
  -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org. Not required if the `target-dev-hub`
5524
5524
  configuration variable is already set.
5525
5525
  -w, --wait=<value> Minutes to wait for the package version to be created.
@@ -5532,21 +5532,18 @@ GLOBAL FLAGS
5532
5532
  --json Format output as json.
5533
5533
 
5534
5534
  DESCRIPTION
5535
- Create a second-generation package version from a first-generation package.
5535
+ Convert a managed-released first-generation managed package into a second-generation managed package.
5536
5536
 
5537
- The package convert creates a new package in the Dev Hub if one does not already exist for the specified
5538
- first-generation package.
5537
+ The package conversion command automatically selects the latest released major.minor first-generation managed package
5538
+ version, and converts it into a second-generation managed package version.
5539
5539
 
5540
- It then creates a new package version in the Dev Hub with contents based on the specified first-generation package.
5541
-
5542
- By default, the latest released non-patch version from the specified first-generation package will be converted. Use
5543
- --patch-version to override the default. Read more about --patch-version option in help
5540
+ Use --patch-version to specify a released patch version.
5544
5541
 
5545
5542
  To retrieve details about a package version create request, including status and package version ID (04t), run "sf
5546
5543
  package version create report -i 08c...".
5547
5544
 
5548
- We recommend specifying the --installation-key to protect the contents of your package and to prevent unauthorized
5549
- installation of your package.
5545
+ To protect the contents of your package and to prevent unauthorized installation of your package, specify the
5546
+ --installation-key flag.
5550
5547
 
5551
5548
  To list package version creation requests in the org, run "sf package version create list".
5552
5549
 
@@ -5554,8 +5551,8 @@ ALIASES
5554
5551
  $ sf force package convert
5555
5552
 
5556
5553
  EXAMPLES
5557
- Create a second-generation package version from the first-generation package with the specified ID and give it the
5558
- installation key "password123"; uses your default Dev Hub org:
5554
+ Create a second-generation managed package version from the first-generation managed package with the specified ID
5555
+ and give it the installation key "password123"; uses your default Dev Hub org:
5559
5556
 
5560
5557
  $ sf package convert --package 033... --installation-key password123
5561
5558
 
@@ -5564,9 +5561,9 @@ EXAMPLES
5564
5561
  $ sf package convert --package 033... --installation-key password123 --target-dev-hub devhuborg@example.com
5565
5562
 
5566
5563
  FLAG DESCRIPTIONS
5567
- -a, --patch-version=<value> Specific released patch version to convert
5564
+ -a, --patch-version=<value> Specific released patch version to be converted.
5568
5565
 
5569
- Specify a released patch version as major.minor.patch.build to convert to second generation package version
5566
+ Specify a released patch version as major.minor.patch to convert to a second-generation managed package version.
5570
5567
 
5571
5568
  -f, --definition-file=<value>
5572
5569
 
@@ -5581,7 +5578,7 @@ FLAG DESCRIPTIONS
5581
5578
 
5582
5579
  -m, --seed-metadata=<value> Directory containing metadata to be deployed prior to conversion.
5583
5580
 
5584
- The directory containing metadata that will be deployed on the build org prior to attempting conversion.
5581
+ The directory containing metadata that will be deployed on the build org prior to attempting package conversion.
5585
5582
 
5586
5583
  -x, --installation-key-bypass Bypass the installation key requirement.
5587
5584
 
@@ -5589,7 +5586,7 @@ FLAG DESCRIPTIONS
5589
5586
  --installation-key-bypass flag is required.
5590
5587
  ```
5591
5588
 
5592
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/convert.ts)_
5589
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/convert.ts)_
5593
5590
 
5594
5591
  ## `sf package create`
5595
5592
 
@@ -5668,7 +5665,7 @@ FLAG DESCRIPTIONS
5668
5665
  Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
5669
5666
  ```
5670
5667
 
5671
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/create.ts)_
5668
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/create.ts)_
5672
5669
 
5673
5670
  ## `sf package delete`
5674
5671
 
@@ -5710,7 +5707,7 @@ EXAMPLES
5710
5707
  $ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
5711
5708
  ```
5712
5709
 
5713
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/delete.ts)_
5710
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/delete.ts)_
5714
5711
 
5715
5712
  ## `sf package install`
5716
5713
 
@@ -5809,7 +5806,7 @@ FLAG DESCRIPTIONS
5809
5806
  - Delete: Delete all removed components that can be safely deleted, and deprecate the other components.
5810
5807
  ```
5811
5808
 
5812
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/install.ts)_
5809
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/install.ts)_
5813
5810
 
5814
5811
  ## `sf package install report`
5815
5812
 
@@ -5842,7 +5839,7 @@ EXAMPLES
5842
5839
  $ sf package install report --request-id 0Hf... --target-org me@example.com
5843
5840
  ```
5844
5841
 
5845
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/install/report.ts)_
5842
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/install/report.ts)_
5846
5843
 
5847
5844
  ## `sf package installed list`
5848
5845
 
@@ -5874,7 +5871,7 @@ EXAMPLES
5874
5871
  $ sf package installed list --target-org me@example.com
5875
5872
  ```
5876
5873
 
5877
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/installed/list.ts)_
5874
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/installed/list.ts)_
5878
5875
 
5879
5876
  ## `sf package list`
5880
5877
 
@@ -5912,7 +5909,7 @@ EXAMPLES
5912
5909
  $ sf package list --target-dev-hub devhub@example.com --verbose
5913
5910
  ```
5914
5911
 
5915
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/list.ts)_
5912
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/list.ts)_
5916
5913
 
5917
5914
  ## `sf package push-upgrade abort`
5918
5915
 
@@ -5952,7 +5949,7 @@ EXAMPLES
5952
5949
  $ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
5953
5950
  ```
5954
5951
 
5955
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/push-upgrade/abort.ts)_
5952
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/push-upgrade/abort.ts)_
5956
5953
 
5957
5954
  ## `sf package push-upgrade list`
5958
5955
 
@@ -6011,7 +6008,7 @@ EXAMPLES
6011
6008
  $ sf package push-upgrade list --package 033xyz –-status Failed
6012
6009
  ```
6013
6010
 
6014
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/push-upgrade/list.ts)_
6011
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/push-upgrade/list.ts)_
6015
6012
 
6016
6013
  ## `sf package push-upgrade report`
6017
6014
 
@@ -6053,7 +6050,7 @@ EXAMPLES
6053
6050
  $ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
6054
6051
  ```
6055
6052
 
6056
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/push-upgrade/report.ts)_
6053
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/push-upgrade/report.ts)_
6057
6054
 
6058
6055
  ## `sf package push-upgrade schedule`
6059
6056
 
@@ -6135,7 +6132,7 @@ FLAG DESCRIPTIONS
6135
6132
  Overrides the value of the target-dev-hub configuration variable, if set.
6136
6133
  ```
6137
6134
 
6138
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/push-upgrade/schedule.ts)_
6135
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/push-upgrade/schedule.ts)_
6139
6136
 
6140
6137
  ## `sf package uninstall`
6141
6138
 
@@ -6183,7 +6180,7 @@ EXAMPLES
6183
6180
  $ sf package uninstall --package "Undesirable Package Alias"
6184
6181
  ```
6185
6182
 
6186
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/uninstall.ts)_
6183
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/uninstall.ts)_
6187
6184
 
6188
6185
  ## `sf package uninstall report`
6189
6186
 
@@ -6216,7 +6213,7 @@ EXAMPLES
6216
6213
  $ sf package uninstall report --request-id 06y... --target-org me@example.com
6217
6214
  ```
6218
6215
 
6219
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/uninstall/report.ts)_
6216
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/uninstall/report.ts)_
6220
6217
 
6221
6218
  ## `sf package update`
6222
6219
 
@@ -6271,7 +6268,7 @@ FLAG DESCRIPTIONS
6271
6268
  associated with your package.
6272
6269
  ```
6273
6270
 
6274
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/update.ts)_
6271
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/update.ts)_
6275
6272
 
6276
6273
  ## `sf package version create`
6277
6274
 
@@ -6446,7 +6443,7 @@ FLAG DESCRIPTIONS
6446
6443
  periods of no output from commands.
6447
6444
  ```
6448
6445
 
6449
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/version/create.ts)_
6446
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/version/create.ts)_
6450
6447
 
6451
6448
  ## `sf package version create list`
6452
6449
 
@@ -6507,7 +6504,7 @@ EXAMPLES
6507
6504
  $ sf package version create list --created-last-days 0 --status Success
6508
6505
  ```
6509
6506
 
6510
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/version/create/list.ts)_
6507
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/version/create/list.ts)_
6511
6508
 
6512
6509
  ## `sf package version create report`
6513
6510
 
@@ -6550,7 +6547,7 @@ EXAMPLES
6550
6547
  $ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
6551
6548
  ```
6552
6549
 
6553
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/version/create/report.ts)_
6550
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/version/create/report.ts)_
6554
6551
 
6555
6552
  ## `sf package version delete`
6556
6553
 
@@ -6591,7 +6588,7 @@ EXAMPLES
6591
6588
  $ sf package version delete --package 04t... --target-org devhub@example.com
6592
6589
  ```
6593
6590
 
6594
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/version/delete.ts)_
6591
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/version/delete.ts)_
6595
6592
 
6596
6593
  ## `sf package version displayancestry`
6597
6594
 
@@ -6651,7 +6648,7 @@ FLAG DESCRIPTIONS
6651
6648
  You can use the DOT code output in graph visualization software to create tree visualizations.
6652
6649
  ```
6653
6650
 
6654
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/version/displayancestry.ts)_
6651
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/version/displayancestry.ts)_
6655
6652
 
6656
6653
  ## `sf package version list`
6657
6654
 
@@ -6727,7 +6724,7 @@ EXAMPLES
6727
6724
  $ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
6728
6725
  ```
6729
6726
 
6730
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/version/list.ts)_
6727
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/version/list.ts)_
6731
6728
 
6732
6729
  ## `sf package version promote`
6733
6730
 
@@ -6771,7 +6768,7 @@ EXAMPLES
6771
6768
  $ sf package version promote --package "Awesome Package Alias"
6772
6769
  ```
6773
6770
 
6774
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/version/promote.ts)_
6771
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/version/promote.ts)_
6775
6772
 
6776
6773
  ## `sf package version report`
6777
6774
 
@@ -6811,7 +6808,7 @@ EXAMPLES
6811
6808
  $ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
6812
6809
  ```
6813
6810
 
6814
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/version/report.ts)_
6811
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/version/report.ts)_
6815
6812
 
6816
6813
  ## `sf package version update`
6817
6814
 
@@ -6864,7 +6861,7 @@ EXAMPLES
6864
6861
  $ sf package version update --package 04t... --version-description "New Package Version Description"
6865
6862
  ```
6866
6863
 
6867
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package/version/update.ts)_
6864
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package/version/update.ts)_
6868
6865
 
6869
6866
  ## `sf package1 version create`
6870
6867
 
@@ -6931,7 +6928,7 @@ FLAG DESCRIPTIONS
6931
6928
  subscribers.
6932
6929
  ```
6933
6930
 
6934
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package1/version/create.ts)_
6931
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package1/version/create.ts)_
6935
6932
 
6936
6933
  ## `sf package1 version create get`
6937
6934
 
@@ -6964,7 +6961,7 @@ EXAMPLES
6964
6961
  $ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
6965
6962
  ```
6966
6963
 
6967
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package1/version/create/get.ts)_
6964
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package1/version/create/get.ts)_
6968
6965
 
6969
6966
  ## `sf package1 version display`
6970
6967
 
@@ -6998,7 +6995,7 @@ EXAMPLES
6998
6995
  $ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
6999
6996
  ```
7000
6997
 
7001
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package1/version/display.ts)_
6998
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package1/version/display.ts)_
7002
6999
 
7003
7000
  ## `sf package1 version list`
7004
7001
 
@@ -7036,7 +7033,7 @@ FLAG DESCRIPTIONS
7036
7033
  If not specified, shows all versions for all packages (managed and unmanaged) in the org.
7037
7034
  ```
7038
7035
 
7039
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.3/src/commands/package1/version/list.ts)_
7036
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.15.4/src/commands/package1/version/list.ts)_
7040
7037
 
7041
7038
  ## `sf plugins`
7042
7039
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.93.5",
3
+ "version": "2.93.6",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.93.5",
9
+ "version": "2.93.6",
10
10
  "hasInstallScript": true,
11
11
  "license": "Apache-2.0",
12
12
  "dependencies": {
@@ -34,7 +34,7 @@
34
34
  "@salesforce/plugin-limits": "3.3.56",
35
35
  "@salesforce/plugin-marketplace": "1.3.8",
36
36
  "@salesforce/plugin-org": "5.7.14",
37
- "@salesforce/plugin-packaging": "2.15.3",
37
+ "@salesforce/plugin-packaging": "2.15.4",
38
38
  "@salesforce/plugin-schema": "3.3.66",
39
39
  "@salesforce/plugin-settings": "2.4.31",
40
40
  "@salesforce/plugin-sobject": "1.4.60",
@@ -5542,9 +5542,9 @@
5542
5542
  }
5543
5543
  },
5544
5544
  "node_modules/@salesforce/plugin-packaging": {
5545
- "version": "2.15.3",
5546
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.15.3.tgz",
5547
- "integrity": "sha512-iRZhpSJ+COnjhwPWyKDTl4QrMSRhkNzvLtJy8H75yDp2WbtGk6qHYuSVikbvje+ChyxBVA5BX6474K4A4Bc/Rw==",
5545
+ "version": "2.15.4",
5546
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.15.4.tgz",
5547
+ "integrity": "sha512-aCY+kDqOG0LZdrxeB0siWYskNqa22Dhi8sQZ2y/jJGNPlt/+zRNbRLv6ISYikdSYFEXCUvCr+4jjFwlWx2odvw==",
5548
5548
  "license": "Apache-2.0",
5549
5549
  "dependencies": {
5550
5550
  "@oclif/core": "^4",
package/oclif.lock CHANGED
@@ -2253,10 +2253,10 @@
2253
2253
  open "^10.1.2"
2254
2254
  terminal-link "^3.0.0"
2255
2255
 
2256
- "@salesforce/plugin-packaging@2.15.3":
2257
- version "2.15.3"
2258
- resolved "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.15.3.tgz"
2259
- integrity sha512-iRZhpSJ+COnjhwPWyKDTl4QrMSRhkNzvLtJy8H75yDp2WbtGk6qHYuSVikbvje+ChyxBVA5BX6474K4A4Bc/Rw==
2256
+ "@salesforce/plugin-packaging@2.15.4":
2257
+ version "2.15.4"
2258
+ resolved "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.15.4.tgz"
2259
+ integrity sha512-aCY+kDqOG0LZdrxeB0siWYskNqa22Dhi8sQZ2y/jJGNPlt/+zRNbRLv6ISYikdSYFEXCUvCr+4jjFwlWx2odvw==
2260
2260
  dependencies:
2261
2261
  "@oclif/core" "^4"
2262
2262
  "@salesforce/core" "^8.12.0"
@@ -4831,5 +4831,5 @@
4831
4831
  ]
4832
4832
  }
4833
4833
  },
4834
- "version": "2.93.5"
4834
+ "version": "2.93.6"
4835
4835
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.93.5",
4
+ "version": "2.93.6",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -168,7 +168,7 @@
168
168
  "@salesforce/plugin-limits": "3.3.56",
169
169
  "@salesforce/plugin-marketplace": "1.3.8",
170
170
  "@salesforce/plugin-org": "5.7.14",
171
- "@salesforce/plugin-packaging": "2.15.3",
171
+ "@salesforce/plugin-packaging": "2.15.4",
172
172
  "@salesforce/plugin-schema": "3.3.66",
173
173
  "@salesforce/plugin-settings": "2.4.31",
174
174
  "@salesforce/plugin-sobject": "1.4.60",