@salesforce/cli 2.94.1 → 2.94.2
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 +42 -29
- package/npm-shrinkwrap.json +11 -11
- package/oclif.lock +9 -9
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
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.94.
|
|
28
|
+
@salesforce/cli/2.94.2 linux-x64 node-v22.16.0
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -5522,10 +5522,12 @@ Convert a managed-released first-generation managed package into a second-genera
|
|
|
5522
5522
|
```
|
|
5523
5523
|
USAGE
|
|
5524
5524
|
$ sf package convert -v <value> -p <value> [--json] [--flags-dir <value>] [--api-version <value>] [-k <value>] [-f
|
|
5525
|
-
<value>] [-x] [-w <value>] [-m <value>] [--verbose] [-a <value>]
|
|
5525
|
+
<value>] [-x] [-w <value>] [-m <value>] [--verbose] [-a <value>] [-c]
|
|
5526
5526
|
|
|
5527
5527
|
FLAGS
|
|
5528
5528
|
-a, --patch-version=<value> Specific released patch version to be converted.
|
|
5529
|
+
-c, --code-coverage Calculate and store the code coverage percentage by running the packaged Apex tests
|
|
5530
|
+
included in this package version.
|
|
5529
5531
|
-f, --definition-file=<value> Path to a definition file that contains features and org preferences that the metadata
|
|
5530
5532
|
of the package version depends on.
|
|
5531
5533
|
-k, --installation-key=<value> Installation key for key-protected package.
|
|
@@ -5556,6 +5558,9 @@ DESCRIPTION
|
|
|
5556
5558
|
To protect the contents of your package and to prevent unauthorized installation of your package, specify the
|
|
5557
5559
|
--installation-key flag.
|
|
5558
5560
|
|
|
5561
|
+
To promote a package version to released, you must use the --code-coverage parameter. The package must also meet the
|
|
5562
|
+
code coverage requirements.
|
|
5563
|
+
|
|
5559
5564
|
To list package version creation requests in the org, run "sf package version create list".
|
|
5560
5565
|
|
|
5561
5566
|
ALIASES
|
|
@@ -5576,6 +5581,14 @@ FLAG DESCRIPTIONS
|
|
|
5576
5581
|
|
|
5577
5582
|
Specify a released patch version as major.minor.patch to convert to a second-generation managed package version.
|
|
5578
5583
|
|
|
5584
|
+
-c, --code-coverage
|
|
5585
|
+
|
|
5586
|
+
Calculate and store the code coverage percentage by running the packaged Apex tests included in this package
|
|
5587
|
+
version.
|
|
5588
|
+
|
|
5589
|
+
Before you can promote and release a managed package version, the Apex code must meet a minimum 75% code coverage
|
|
5590
|
+
requirement.
|
|
5591
|
+
|
|
5579
5592
|
-f, --definition-file=<value>
|
|
5580
5593
|
|
|
5581
5594
|
Path to a definition file that contains features and org preferences that the metadata of the package version
|
|
@@ -5597,7 +5610,7 @@ FLAG DESCRIPTIONS
|
|
|
5597
5610
|
--installation-key-bypass flag is required.
|
|
5598
5611
|
```
|
|
5599
5612
|
|
|
5600
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5613
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/convert.ts)_
|
|
5601
5614
|
|
|
5602
5615
|
## `sf package create`
|
|
5603
5616
|
|
|
@@ -5676,7 +5689,7 @@ FLAG DESCRIPTIONS
|
|
|
5676
5689
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
5677
5690
|
```
|
|
5678
5691
|
|
|
5679
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5692
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/create.ts)_
|
|
5680
5693
|
|
|
5681
5694
|
## `sf package delete`
|
|
5682
5695
|
|
|
@@ -5718,7 +5731,7 @@ EXAMPLES
|
|
|
5718
5731
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
5719
5732
|
```
|
|
5720
5733
|
|
|
5721
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5734
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/delete.ts)_
|
|
5722
5735
|
|
|
5723
5736
|
## `sf package install`
|
|
5724
5737
|
|
|
@@ -5817,7 +5830,7 @@ FLAG DESCRIPTIONS
|
|
|
5817
5830
|
- Delete: Delete all removed components that can be safely deleted, and deprecate the other components.
|
|
5818
5831
|
```
|
|
5819
5832
|
|
|
5820
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5833
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/install.ts)_
|
|
5821
5834
|
|
|
5822
5835
|
## `sf package install report`
|
|
5823
5836
|
|
|
@@ -5850,7 +5863,7 @@ EXAMPLES
|
|
|
5850
5863
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
5851
5864
|
```
|
|
5852
5865
|
|
|
5853
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5866
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/install/report.ts)_
|
|
5854
5867
|
|
|
5855
5868
|
## `sf package installed list`
|
|
5856
5869
|
|
|
@@ -5882,7 +5895,7 @@ EXAMPLES
|
|
|
5882
5895
|
$ sf package installed list --target-org me@example.com
|
|
5883
5896
|
```
|
|
5884
5897
|
|
|
5885
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5898
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/installed/list.ts)_
|
|
5886
5899
|
|
|
5887
5900
|
## `sf package list`
|
|
5888
5901
|
|
|
@@ -5920,7 +5933,7 @@ EXAMPLES
|
|
|
5920
5933
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
5921
5934
|
```
|
|
5922
5935
|
|
|
5923
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5936
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/list.ts)_
|
|
5924
5937
|
|
|
5925
5938
|
## `sf package push-upgrade abort`
|
|
5926
5939
|
|
|
@@ -5960,7 +5973,7 @@ EXAMPLES
|
|
|
5960
5973
|
$ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
5961
5974
|
```
|
|
5962
5975
|
|
|
5963
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
5976
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/push-upgrade/abort.ts)_
|
|
5964
5977
|
|
|
5965
5978
|
## `sf package push-upgrade list`
|
|
5966
5979
|
|
|
@@ -6019,7 +6032,7 @@ EXAMPLES
|
|
|
6019
6032
|
$ sf package push-upgrade list --package 033xyz –-status Failed
|
|
6020
6033
|
```
|
|
6021
6034
|
|
|
6022
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6035
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/push-upgrade/list.ts)_
|
|
6023
6036
|
|
|
6024
6037
|
## `sf package push-upgrade report`
|
|
6025
6038
|
|
|
@@ -6061,7 +6074,7 @@ EXAMPLES
|
|
|
6061
6074
|
$ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6062
6075
|
```
|
|
6063
6076
|
|
|
6064
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6077
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/push-upgrade/report.ts)_
|
|
6065
6078
|
|
|
6066
6079
|
## `sf package push-upgrade schedule`
|
|
6067
6080
|
|
|
@@ -6143,7 +6156,7 @@ FLAG DESCRIPTIONS
|
|
|
6143
6156
|
Overrides the value of the target-dev-hub configuration variable, if set.
|
|
6144
6157
|
```
|
|
6145
6158
|
|
|
6146
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6159
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/push-upgrade/schedule.ts)_
|
|
6147
6160
|
|
|
6148
6161
|
## `sf package uninstall`
|
|
6149
6162
|
|
|
@@ -6191,7 +6204,7 @@ EXAMPLES
|
|
|
6191
6204
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
6192
6205
|
```
|
|
6193
6206
|
|
|
6194
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6207
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/uninstall.ts)_
|
|
6195
6208
|
|
|
6196
6209
|
## `sf package uninstall report`
|
|
6197
6210
|
|
|
@@ -6224,7 +6237,7 @@ EXAMPLES
|
|
|
6224
6237
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
6225
6238
|
```
|
|
6226
6239
|
|
|
6227
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6240
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/uninstall/report.ts)_
|
|
6228
6241
|
|
|
6229
6242
|
## `sf package update`
|
|
6230
6243
|
|
|
@@ -6279,7 +6292,7 @@ FLAG DESCRIPTIONS
|
|
|
6279
6292
|
associated with your package.
|
|
6280
6293
|
```
|
|
6281
6294
|
|
|
6282
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6295
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/update.ts)_
|
|
6283
6296
|
|
|
6284
6297
|
## `sf package version create`
|
|
6285
6298
|
|
|
@@ -6454,7 +6467,7 @@ FLAG DESCRIPTIONS
|
|
|
6454
6467
|
periods of no output from commands.
|
|
6455
6468
|
```
|
|
6456
6469
|
|
|
6457
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6470
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/create.ts)_
|
|
6458
6471
|
|
|
6459
6472
|
## `sf package version create list`
|
|
6460
6473
|
|
|
@@ -6515,7 +6528,7 @@ EXAMPLES
|
|
|
6515
6528
|
$ sf package version create list --created-last-days 0 --status Success
|
|
6516
6529
|
```
|
|
6517
6530
|
|
|
6518
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6531
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/create/list.ts)_
|
|
6519
6532
|
|
|
6520
6533
|
## `sf package version create report`
|
|
6521
6534
|
|
|
@@ -6558,7 +6571,7 @@ EXAMPLES
|
|
|
6558
6571
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
6559
6572
|
```
|
|
6560
6573
|
|
|
6561
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6574
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/create/report.ts)_
|
|
6562
6575
|
|
|
6563
6576
|
## `sf package version delete`
|
|
6564
6577
|
|
|
@@ -6599,7 +6612,7 @@ EXAMPLES
|
|
|
6599
6612
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
6600
6613
|
```
|
|
6601
6614
|
|
|
6602
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6615
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/delete.ts)_
|
|
6603
6616
|
|
|
6604
6617
|
## `sf package version displayancestry`
|
|
6605
6618
|
|
|
@@ -6659,7 +6672,7 @@ FLAG DESCRIPTIONS
|
|
|
6659
6672
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
6660
6673
|
```
|
|
6661
6674
|
|
|
6662
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6675
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/displayancestry.ts)_
|
|
6663
6676
|
|
|
6664
6677
|
## `sf package version list`
|
|
6665
6678
|
|
|
@@ -6735,7 +6748,7 @@ EXAMPLES
|
|
|
6735
6748
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
6736
6749
|
```
|
|
6737
6750
|
|
|
6738
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6751
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/list.ts)_
|
|
6739
6752
|
|
|
6740
6753
|
## `sf package version promote`
|
|
6741
6754
|
|
|
@@ -6779,7 +6792,7 @@ EXAMPLES
|
|
|
6779
6792
|
$ sf package version promote --package "Awesome Package Alias"
|
|
6780
6793
|
```
|
|
6781
6794
|
|
|
6782
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6795
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/promote.ts)_
|
|
6783
6796
|
|
|
6784
6797
|
## `sf package version report`
|
|
6785
6798
|
|
|
@@ -6819,7 +6832,7 @@ EXAMPLES
|
|
|
6819
6832
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
6820
6833
|
```
|
|
6821
6834
|
|
|
6822
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6835
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/report.ts)_
|
|
6823
6836
|
|
|
6824
6837
|
## `sf package version update`
|
|
6825
6838
|
|
|
@@ -6872,7 +6885,7 @@ EXAMPLES
|
|
|
6872
6885
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
6873
6886
|
```
|
|
6874
6887
|
|
|
6875
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6888
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package/version/update.ts)_
|
|
6876
6889
|
|
|
6877
6890
|
## `sf package1 version create`
|
|
6878
6891
|
|
|
@@ -6939,7 +6952,7 @@ FLAG DESCRIPTIONS
|
|
|
6939
6952
|
subscribers.
|
|
6940
6953
|
```
|
|
6941
6954
|
|
|
6942
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6955
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package1/version/create.ts)_
|
|
6943
6956
|
|
|
6944
6957
|
## `sf package1 version create get`
|
|
6945
6958
|
|
|
@@ -6972,7 +6985,7 @@ EXAMPLES
|
|
|
6972
6985
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
6973
6986
|
```
|
|
6974
6987
|
|
|
6975
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
6988
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package1/version/create/get.ts)_
|
|
6976
6989
|
|
|
6977
6990
|
## `sf package1 version display`
|
|
6978
6991
|
|
|
@@ -7006,7 +7019,7 @@ EXAMPLES
|
|
|
7006
7019
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
7007
7020
|
```
|
|
7008
7021
|
|
|
7009
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
7022
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package1/version/display.ts)_
|
|
7010
7023
|
|
|
7011
7024
|
## `sf package1 version list`
|
|
7012
7025
|
|
|
@@ -7044,7 +7057,7 @@ FLAG DESCRIPTIONS
|
|
|
7044
7057
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
7045
7058
|
```
|
|
7046
7059
|
|
|
7047
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.
|
|
7060
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.16.0/src/commands/package1/version/list.ts)_
|
|
7048
7061
|
|
|
7049
7062
|
## `sf plugins`
|
|
7050
7063
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.94.
|
|
3
|
+
"version": "2.94.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.94.
|
|
9
|
+
"version": "2.94.2",
|
|
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.8.0",
|
|
37
|
-
"@salesforce/plugin-packaging": "2.
|
|
37
|
+
"@salesforce/plugin-packaging": "2.16.0",
|
|
38
38
|
"@salesforce/plugin-schema": "3.3.66",
|
|
39
39
|
"@salesforce/plugin-settings": "2.4.31",
|
|
40
40
|
"@salesforce/plugin-sobject": "1.4.60",
|
|
@@ -5006,10 +5006,10 @@
|
|
|
5006
5006
|
}
|
|
5007
5007
|
},
|
|
5008
5008
|
"node_modules/@salesforce/packaging": {
|
|
5009
|
-
"version": "4.
|
|
5010
|
-
"resolved": "https://registry.npmjs.org/@salesforce/packaging/-/packaging-4.
|
|
5011
|
-
"integrity": "sha512-
|
|
5012
|
-
"license": "
|
|
5009
|
+
"version": "4.7.0",
|
|
5010
|
+
"resolved": "https://registry.npmjs.org/@salesforce/packaging/-/packaging-4.7.0.tgz",
|
|
5011
|
+
"integrity": "sha512-fYwE0oChQ7MBqeAbi2vq3NZBe2qw0nsXbXdNwgl2ybREDE2RLqWRIB75OGxEa9ARQNrdWOVE7sR81cGLyCIupg==",
|
|
5012
|
+
"license": "Apache-2.0",
|
|
5013
5013
|
"dependencies": {
|
|
5014
5014
|
"@jsforce/jsforce-node": "^3.6.5",
|
|
5015
5015
|
"@salesforce/core": "^8.11.1",
|
|
@@ -5542,15 +5542,15 @@
|
|
|
5542
5542
|
}
|
|
5543
5543
|
},
|
|
5544
5544
|
"node_modules/@salesforce/plugin-packaging": {
|
|
5545
|
-
"version": "2.
|
|
5546
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.
|
|
5547
|
-
"integrity": "sha512-
|
|
5545
|
+
"version": "2.16.0",
|
|
5546
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.16.0.tgz",
|
|
5547
|
+
"integrity": "sha512-vA6UgyzH21g482n89RA8WeNTy/KTAqtLMJ2nseyrT3AQ/xf+8yB2Bnzq7gGzCSJO05WvHmAAorr4rQoFILQO4Q==",
|
|
5548
5548
|
"license": "Apache-2.0",
|
|
5549
5549
|
"dependencies": {
|
|
5550
5550
|
"@oclif/core": "^4",
|
|
5551
5551
|
"@salesforce/core": "^8.12.0",
|
|
5552
5552
|
"@salesforce/kit": "^3.2.3",
|
|
5553
|
-
"@salesforce/packaging": "^4.
|
|
5553
|
+
"@salesforce/packaging": "^4.7.0",
|
|
5554
5554
|
"@salesforce/sf-plugins-core": "^12.2.2",
|
|
5555
5555
|
"chalk": "^5.4.1"
|
|
5556
5556
|
},
|
package/oclif.lock
CHANGED
|
@@ -2063,10 +2063,10 @@
|
|
|
2063
2063
|
dependencies:
|
|
2064
2064
|
"@salesforce/ts-types" "^2.0.12"
|
|
2065
2065
|
|
|
2066
|
-
"@salesforce/packaging@^4.
|
|
2067
|
-
version "4.
|
|
2068
|
-
resolved "https://registry.npmjs.org/@salesforce/packaging/-/packaging-4.
|
|
2069
|
-
integrity sha512-
|
|
2066
|
+
"@salesforce/packaging@^4.7.0":
|
|
2067
|
+
version "4.7.0"
|
|
2068
|
+
resolved "https://registry.npmjs.org/@salesforce/packaging/-/packaging-4.7.0.tgz"
|
|
2069
|
+
integrity sha512-fYwE0oChQ7MBqeAbi2vq3NZBe2qw0nsXbXdNwgl2ybREDE2RLqWRIB75OGxEa9ARQNrdWOVE7sR81cGLyCIupg==
|
|
2070
2070
|
dependencies:
|
|
2071
2071
|
"@jsforce/jsforce-node" "^3.6.5"
|
|
2072
2072
|
"@salesforce/core" "^8.11.1"
|
|
@@ -2253,15 +2253,15 @@
|
|
|
2253
2253
|
open "^10.1.2"
|
|
2254
2254
|
terminal-link "^3.0.0"
|
|
2255
2255
|
|
|
2256
|
-
"@salesforce/plugin-packaging@2.
|
|
2257
|
-
version "2.
|
|
2258
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.
|
|
2259
|
-
integrity sha512-
|
|
2256
|
+
"@salesforce/plugin-packaging@2.16.0":
|
|
2257
|
+
version "2.16.0"
|
|
2258
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.16.0.tgz"
|
|
2259
|
+
integrity sha512-vA6UgyzH21g482n89RA8WeNTy/KTAqtLMJ2nseyrT3AQ/xf+8yB2Bnzq7gGzCSJO05WvHmAAorr4rQoFILQO4Q==
|
|
2260
2260
|
dependencies:
|
|
2261
2261
|
"@oclif/core" "^4"
|
|
2262
2262
|
"@salesforce/core" "^8.12.0"
|
|
2263
2263
|
"@salesforce/kit" "^3.2.3"
|
|
2264
|
-
"@salesforce/packaging" "^4.
|
|
2264
|
+
"@salesforce/packaging" "^4.7.0"
|
|
2265
2265
|
"@salesforce/sf-plugins-core" "^12.2.2"
|
|
2266
2266
|
chalk "^5.4.1"
|
|
2267
2267
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.94.
|
|
4
|
+
"version": "2.94.2",
|
|
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.8.0",
|
|
171
|
-
"@salesforce/plugin-packaging": "2.
|
|
171
|
+
"@salesforce/plugin-packaging": "2.16.0",
|
|
172
172
|
"@salesforce/plugin-schema": "3.3.66",
|
|
173
173
|
"@salesforce/plugin-settings": "2.4.31",
|
|
174
174
|
"@salesforce/plugin-sobject": "1.4.60",
|