@@ -60,20 +60,20 @@ See [DEVELOPING.md](DEVELOPING.md)
6060
6161## ` sf package convert `
6262
63- Create a second- generation package version from a first -generation package.
63+ Convert a managed-released first- generation managed package into a second -generation managed package.
6464
6565```
6666USAGE
6767 $ sf package convert -v <value> -p <value> [--json] [--flags-dir <value>] [--api-version <value>] [-k <value>] [-f
6868 <value>] [-x] [-w <value>] [-m <value>] [--verbose] [-a <value>]
6969
7070FLAGS
71- -a, --patch-version=<value> Specific released patch version to convert
71+ -a, --patch-version=<value> Specific released patch version to be converted.
7272 -f, --definition-file=<value> Path to a definition file that contains features and org preferences that the metadata
7373 of the package version depends on.
7474 -k, --installation-key=<value> Installation key for key-protected package.
7575 -m, --seed-metadata=<value> Directory containing metadata to be deployed prior to conversion.
76- -p, --package=<value> (required) ID (starts with 033) of the first-generation package to convert.
76+ -p, --package=<value> (required) ID (starts with 033) of the first-generation managed package to convert.
7777 -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org. Not required if the `target-dev-hub`
7878 configuration variable is already set.
7979 -w, --wait=<value> Minutes to wait for the package version to be created.
@@ -86,30 +86,27 @@ GLOBAL FLAGS
8686 --json Format output as json.
8787
8888DESCRIPTION
89- Create a second- generation package version from a first -generation package.
89+ Convert a managed-released first- generation managed package into a second -generation managed package.
9090
91- The package convert creates a new package in the Dev Hub if one does not already exist for the specified
92- first -generation package.
91+ The package conversion command automatically selects the latest released major.minor first-generation managed package
92+ version, and converts it into a second -generation managed package version .
9393
94- It then creates a new package version in the Dev Hub with contents based on the specified first-generation package.
95-
96- By default, the latest released non-patch version from the specified first-generation package will be converted. Use
97- --patch-version to override the default. Read more about --patch-version option in help
94+ Use --patch-version to specify a released patch version.
9895
9996 To retrieve details about a package version create request, including status and package version ID (04t), run "sf
10097 package version create report -i 08c...".
10198
102- We recommend specifying the --installation-key to protect the contents of your package and to prevent unauthorized
103- installation of your package .
99+ To protect the contents of your package and to prevent unauthorized installation of your package, specify the
100+ -- installation-key flag .
104101
105102 To list package version creation requests in the org, run "sf package version create list".
106103
107104ALIASES
108105 $ sf force package convert
109106
110107EXAMPLES
111- Create a second-generation package version from the first-generation package with the specified ID and give it the
112- installation key "password123"; uses your default Dev Hub org:
108+ Create a second-generation managed package version from the first-generation managed package with the specified ID
109+ and give it the installation key "password123"; uses your default Dev Hub org:
113110
114111 $ sf package convert --package 033... --installation-key password123
115112
@@ -118,9 +115,9 @@ EXAMPLES
118115 $ sf package convert --package 033... --installation-key password123 --target-dev-hub [email protected] 119116
120117FLAG DESCRIPTIONS
121- -a, --patch-version=<value> Specific released patch version to convert
118+ -a, --patch-version=<value> Specific released patch version to be converted.
122119
123- Specify a released patch version as major.minor.patch.build to convert to second generation package version
120+ Specify a released patch version as major.minor.patch to convert to a second- generation managed package version.
124121
125122 -f, --definition-file=<value>
126123
@@ -135,15 +132,15 @@ FLAG DESCRIPTIONS
135132
136133 -m, --seed-metadata=<value> Directory containing metadata to be deployed prior to conversion.
137134
138- The directory containing metadata that will be deployed on the build org prior to attempting conversion.
135+ The directory containing metadata that will be deployed on the build org prior to attempting package conversion.
139136
140137 -x, --installation-key-bypass Bypass the installation key requirement.
141138
142139 If you bypass this requirement, anyone can install your package. Either an --installation-key value or the
143140 --installation-key-bypass flag is required.
144141```
145142
146- _ See code: [ src/commands/package/convert.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/convert.ts ) _
143+ _ See code: [ src/commands/package/convert.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/convert.ts ) _
147144
148145## ` sf package create `
149146
@@ -222,7 +219,7 @@ FLAG DESCRIPTIONS
222219 Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
223220```
224221
225- _ See code: [ src/commands/package/create.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/create.ts ) _
222+ _ See code: [ src/commands/package/create.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/create.ts ) _
226223
227224## ` sf package delete `
228225
@@ -264,7 +261,7 @@ EXAMPLES
264261 $ sf package delete --package 0Ho... --target-dev-hub [email protected] 265262```
266263
267- _ See code: [ src/commands/package/delete.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/delete.ts ) _
264+ _ See code: [ src/commands/package/delete.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/delete.ts ) _
268265
269266## ` sf package install `
270267
@@ -363,7 +360,7 @@ FLAG DESCRIPTIONS
363360 - Delete: Delete all removed components that can be safely deleted, and deprecate the other components.
364361```
365362
366- _ See code: [ src/commands/package/install.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/install.ts ) _
363+ _ See code: [ src/commands/package/install.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/install.ts ) _
367364
368365## ` sf package install report `
369366
@@ -396,7 +393,7 @@ EXAMPLES
396393 $ sf package install report --request-id 0Hf... --target-org [email protected] 397394```
398395
399- _ See code: [ src/commands/package/install/report.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/install/report.ts ) _
396+ _ See code: [ src/commands/package/install/report.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/install/report.ts ) _
400397
401398## ` sf package installed list `
402399
@@ -428,7 +425,7 @@ EXAMPLES
428425 $ sf package installed list --target-org [email protected] 429426```
430427
431- _ See code: [ src/commands/package/installed/list.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/installed/list.ts ) _
428+ _ See code: [ src/commands/package/installed/list.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/installed/list.ts ) _
432429
433430## ` sf package list `
434431
@@ -466,7 +463,7 @@ EXAMPLES
466463 $ sf package list --target-dev-hub [email protected] --verbose 467464```
468465
469- _ See code: [ src/commands/package/list.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/list.ts ) _
466+ _ See code: [ src/commands/package/list.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/list.ts ) _
470467
471468## ` sf package push-upgrade abort `
472469
@@ -506,7 +503,7 @@ EXAMPLES
506503 $ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub [email protected] 507504```
508505
509- _ See code: [ src/commands/package/push-upgrade/abort.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/push-upgrade/abort.ts ) _
506+ _ See code: [ src/commands/package/push-upgrade/abort.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/push-upgrade/abort.ts ) _
510507
511508## ` sf package push-upgrade list `
512509
@@ -565,7 +562,7 @@ EXAMPLES
565562 $ sf package push-upgrade list --package 033xyz –-status Failed
566563```
567564
568- _ See code: [ src/commands/package/push-upgrade/list.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/push-upgrade/list.ts ) _
565+ _ See code: [ src/commands/package/push-upgrade/list.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/push-upgrade/list.ts ) _
569566
570567## ` sf package push-upgrade report `
571568
@@ -607,7 +604,7 @@ EXAMPLES
607604 $ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub [email protected] 608605```
609606
610- _ See code: [ src/commands/package/push-upgrade/report.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/push-upgrade/report.ts ) _
607+ _ See code: [ src/commands/package/push-upgrade/report.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/push-upgrade/report.ts ) _
611608
612609## ` sf package push-upgrade schedule `
613610
@@ -689,7 +686,7 @@ FLAG DESCRIPTIONS
689686 Overrides the value of the target-dev-hub configuration variable, if set.
690687```
691688
692- _ See code: [ src/commands/package/push-upgrade/schedule.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/push-upgrade/schedule.ts ) _
689+ _ See code: [ src/commands/package/push-upgrade/schedule.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/push-upgrade/schedule.ts ) _
693690
694691## ` sf package uninstall `
695692
@@ -737,7 +734,7 @@ EXAMPLES
737734 $ sf package uninstall --package "Undesirable Package Alias"
738735```
739736
740- _ See code: [ src/commands/package/uninstall.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/uninstall.ts ) _
737+ _ See code: [ src/commands/package/uninstall.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/uninstall.ts ) _
741738
742739## ` sf package uninstall report `
743740
@@ -770,7 +767,7 @@ EXAMPLES
770767 $ sf package uninstall report --request-id 06y... --target-org [email protected] 771768```
772769
773- _ See code: [ src/commands/package/uninstall/report.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/uninstall/report.ts ) _
770+ _ See code: [ src/commands/package/uninstall/report.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/uninstall/report.ts ) _
774771
775772## ` sf package update `
776773
@@ -825,7 +822,7 @@ FLAG DESCRIPTIONS
825822 associated with your package.
826823```
827824
828- _ See code: [ src/commands/package/update.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/update.ts ) _
825+ _ See code: [ src/commands/package/update.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/update.ts ) _
829826
830827## ` sf package version create `
831828
@@ -1000,7 +997,7 @@ FLAG DESCRIPTIONS
1000997 periods of no output from commands.
1001998```
1002999
1003- _ See code: [ src/commands/package/version/create.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/version/create.ts ) _
1000+ _ See code: [ src/commands/package/version/create.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/version/create.ts ) _
10041001
10051002## ` sf package version create list `
10061003
@@ -1061,7 +1058,7 @@ EXAMPLES
10611058 $ sf package version create list --created-last-days 0 --status Success
10621059```
10631060
1064- _ See code: [ src/commands/package/version/create/list.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/version/create/list.ts ) _
1061+ _ See code: [ src/commands/package/version/create/list.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/version/create/list.ts ) _
10651062
10661063## ` sf package version create report `
10671064
@@ -1104,7 +1101,7 @@ EXAMPLES
11041101 $ sf package version create report --package-create-request-id 08c... --target-dev-hub [email protected] 11051102```
11061103
1107- _ See code: [ src/commands/package/version/create/report.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/version/create/report.ts ) _
1104+ _ See code: [ src/commands/package/version/create/report.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/version/create/report.ts ) _
11081105
11091106## ` sf package version delete `
11101107
@@ -1145,7 +1142,7 @@ EXAMPLES
11451142 $ sf package version delete --package 04t... --target-org [email protected] 11461143```
11471144
1148- _ See code: [ src/commands/package/version/delete.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/version/delete.ts ) _
1145+ _ See code: [ src/commands/package/version/delete.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/version/delete.ts ) _
11491146
11501147## ` sf package version displayancestry `
11511148
@@ -1205,7 +1202,7 @@ FLAG DESCRIPTIONS
12051202 You can use the DOT code output in graph visualization software to create tree visualizations.
12061203```
12071204
1208- _ See code: [ src/commands/package/version/displayancestry.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/version/displayancestry.ts ) _
1205+ _ See code: [ src/commands/package/version/displayancestry.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/version/displayancestry.ts ) _
12091206
12101207## ` sf package version list `
12111208
@@ -1281,7 +1278,7 @@ EXAMPLES
12811278 $ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
12821279```
12831280
1284- _ See code: [ src/commands/package/version/list.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/version/list.ts ) _
1281+ _ See code: [ src/commands/package/version/list.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/version/list.ts ) _
12851282
12861283## ` sf package version promote `
12871284
@@ -1325,7 +1322,7 @@ EXAMPLES
13251322 $ sf package version promote --package "Awesome Package Alias"
13261323```
13271324
1328- _ See code: [ src/commands/package/version/promote.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/version/promote.ts ) _
1325+ _ See code: [ src/commands/package/version/promote.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/version/promote.ts ) _
13291326
13301327## ` sf package version report `
13311328
@@ -1365,7 +1362,7 @@ EXAMPLES
13651362 $ sf package version report --package "Your Package Alias" --target-dev-hub [email protected] 13661363```
13671364
1368- _ See code: [ src/commands/package/version/report.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/version/report.ts ) _
1365+ _ See code: [ src/commands/package/version/report.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/version/report.ts ) _
13691366
13701367## ` sf package version update `
13711368
@@ -1418,7 +1415,7 @@ EXAMPLES
14181415 $ sf package version update --package 04t... --version-description "New Package Version Description"
14191416```
14201417
1421- _ See code: [ src/commands/package/version/update.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package/version/update.ts ) _
1418+ _ See code: [ src/commands/package/version/update.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package/version/update.ts ) _
14221419
14231420## ` sf package1 version create `
14241421
@@ -1485,7 +1482,7 @@ FLAG DESCRIPTIONS
14851482 subscribers.
14861483```
14871484
1488- _ See code: [ src/commands/package1/version/create.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package1/version/create.ts ) _
1485+ _ See code: [ src/commands/package1/version/create.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package1/version/create.ts ) _
14891486
14901487## ` sf package1 version create get `
14911488
@@ -1518,7 +1515,7 @@ EXAMPLES
15181515 $ sf package1 version create get --request-id 0HD... --target-org [email protected] 15191516```
15201517
1521- _ See code: [ src/commands/package1/version/create/get.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package1/version/create/get.ts ) _
1518+ _ See code: [ src/commands/package1/version/create/get.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package1/version/create/get.ts ) _
15221519
15231520## ` sf package1 version display `
15241521
@@ -1552,7 +1549,7 @@ EXAMPLES
15521549 $ sf package1 version display --package-version-id 04t... --target-org [email protected] 15531550```
15541551
1555- _ See code: [ src/commands/package1/version/display.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package1/version/display.ts ) _
1552+ _ See code: [ src/commands/package1/version/display.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package1/version/display.ts ) _
15561553
15571554## ` sf package1 version list `
15581555
@@ -1590,6 +1587,6 @@ FLAG DESCRIPTIONS
15901587 If not specified, shows all versions for all packages (managed and unmanaged) in the org.
15911588```
15921589
1593- _ See code: [ src/commands/package1/version/list.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.3 /src/commands/package1/version/list.ts ) _
1590+ _ See code: [ src/commands/package1/version/list.ts] ( https://github.com/salesforcecli/plugin-packaging/blob/2.15.4 /src/commands/package1/version/list.ts ) _
15941591
15951592<!-- commandsstop -->
0 commit comments