@salesforce/plugin-release-management 5.6.32 → 5.6.33

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.
@@ -525,12 +525,16 @@
525
525
  "compare.js"
526
526
  ]
527
527
  },
528
- "cli:release:automerge": {
528
+ "cli:install:test": {
529
529
  "aliases": [],
530
530
  "args": {},
531
- "description": "Attempt to automerge nightly PR",
531
+ "description": "install sf or sfdx",
532
532
  "examples": [
533
- "<%= config.bin %> <%= command.id %> --owner salesforcecli --repo sfdx-cli --pul-number 1049"
533
+ "<%= config.bin %> <%= command.id %> --cli sfdx --method installer",
534
+ "<%= config.bin %> <%= command.id %> --cli sfdx --method npm",
535
+ "<%= config.bin %> <%= command.id %> --cli sfdx --method tarball",
536
+ "<%= config.bin %> <%= command.id %> --cli sf --method tarball",
537
+ "<%= config.bin %> <%= command.id %> --cli sf --method tarball --channel stable-rc"
534
538
  ],
535
539
  "flags": {
536
540
  "json": {
@@ -548,87 +552,90 @@
548
552
  "multiple": false,
549
553
  "type": "option"
550
554
  },
551
- "owner": {
552
- "aliases": [
553
- "org"
554
- ],
555
- "dependsOn": [
556
- "repo"
557
- ],
558
- "name": "owner",
555
+ "cli": {
556
+ "char": "c",
557
+ "name": "cli",
559
558
  "required": true,
560
- "summary": "Github owner (org), example: salesforcecli",
559
+ "summary": "the cli to install",
561
560
  "hasDynamicHelp": false,
562
561
  "multiple": false,
562
+ "options": [
563
+ "sf",
564
+ "sfdx"
565
+ ],
563
566
  "type": "option"
564
567
  },
565
- "repo": {
566
- "dependsOn": [
567
- "owner"
568
- ],
569
- "name": "repo",
568
+ "method": {
569
+ "char": "m",
570
+ "name": "method",
570
571
  "required": true,
571
- "summary": "Github repo, example: sfdx-cli",
572
+ "summary": "the installation method to use",
572
573
  "hasDynamicHelp": false,
573
574
  "multiple": false,
575
+ "options": [
576
+ "installer",
577
+ "npm",
578
+ "tarball"
579
+ ],
574
580
  "type": "option"
575
581
  },
576
- "pull-number": {
577
- "name": "pull-number",
578
- "required": true,
579
- "summary": "Github pull request number to merge",
582
+ "channel": {
583
+ "name": "channel",
584
+ "summary": "the channel to install from",
585
+ "default": "stable",
580
586
  "hasDynamicHelp": false,
581
587
  "multiple": false,
588
+ "options": [
589
+ "legacy",
590
+ "stable",
591
+ "stable-rc",
592
+ "latest",
593
+ "latest-rc"
594
+ ],
582
595
  "type": "option"
583
596
  },
584
- "dry-run": {
585
- "char": "d",
586
- "name": "dry-run",
587
- "summary": "Run all checks, but do not merge PR",
588
- "allowNo": false,
589
- "type": "boolean"
590
- },
591
- "verbose": {
592
- "name": "verbose",
593
- "summary": "Show additional debug output",
594
- "allowNo": false,
595
- "type": "boolean"
597
+ "output-file": {
598
+ "name": "output-file",
599
+ "summary": "the file to write the JSON results to (must be .json)",
600
+ "default": "test-results.json",
601
+ "hasDynamicHelp": false,
602
+ "multiple": false,
603
+ "type": "option"
596
604
  }
597
605
  },
598
606
  "hasDynamicHelp": false,
599
607
  "hiddenAliases": [],
600
- "id": "cli:release:automerge",
608
+ "id": "cli:install:test",
601
609
  "pluginAlias": "@salesforce/plugin-release-management",
602
610
  "pluginName": "@salesforce/plugin-release-management",
603
611
  "pluginType": "core",
604
612
  "strict": true,
605
- "summary": "Attempt to automerge nightly PR",
613
+ "summary": "install sf or sfdx",
606
614
  "enableJsonFlag": true,
607
615
  "isESM": true,
608
616
  "relativePath": [
609
617
  "lib",
610
618
  "commands",
611
619
  "cli",
612
- "release",
613
- "automerge.js"
620
+ "install",
621
+ "test.js"
614
622
  ]
615
623
  },
616
- "cli:release:build": {
617
- "aliases": [
618
- "cli:latestrc:build"
619
- ],
624
+ "cli:versions:inspect": {
625
+ "aliases": [],
620
626
  "args": {},
621
- "description": "builds a new release from a designated starting point and optionally creates PR in Github",
627
+ "description": "inspect the CLI version across all install paths",
622
628
  "examples": [
623
- "<%= config.bin %> <%= command.id %>",
624
- "<%= config.bin %> <%= command.id %> --patch",
625
- "<%= config.bin %> <%= command.id %> --start-from-npm-dist-tag latest-rc --patch",
626
- "<%= config.bin %> <%= command.id %> --start-from-github-ref 7.144.0",
627
- "<%= config.bin %> <%= command.id %> --start-from-github-ref main",
628
- "<%= config.bin %> <%= command.id %> --start-from-github-ref f476e8e",
629
- "<%= config.bin %> <%= command.id %> --start-from-github-ref main --prerelease beta",
630
- "<%= config.bin %> <%= command.id %> --build-only",
631
- "<%= config.bin %> <%= command.id %> --only @salesforce/plugin-source,@salesforce/plugin-info@1.2.3"
629
+ "<%= config.bin %> <%= command.id %> -l archive -c stable",
630
+ "<%= config.bin %> <%= command.id %> -l archive -c stable-rc",
631
+ "<%= config.bin %> <%= command.id %> -l archive npm -c stable",
632
+ "<%= config.bin %> <%= command.id %> -l archive npm -c latest",
633
+ "<%= config.bin %> <%= command.id %> -l archive npm -c latest latest-rc",
634
+ "<%= config.bin %> <%= command.id %> -l archive npm -c stable stable-rc",
635
+ "<%= config.bin %> <%= command.id %> -l npm -c latest --salesforce",
636
+ "<%= config.bin %> <%= command.id %> -l npm -c latest -d @salesforce/core",
637
+ "<%= config.bin %> <%= command.id %> -l npm -c latest -d @salesforce/\\*\\*/ salesforce-alm",
638
+ "<%= config.bin %> <%= command.id %> -l npm -c latest -d chalk -s"
632
639
  ],
633
640
  "flags": {
634
641
  "json": {
@@ -646,122 +653,81 @@
646
653
  "multiple": false,
647
654
  "type": "option"
648
655
  },
649
- "start-from-npm-dist-tag": {
650
- "aliases": [
651
- "rctag"
652
- ],
656
+ "dependencies": {
653
657
  "char": "d",
654
- "deprecateAliases": true,
655
- "name": "start-from-npm-dist-tag",
656
- "summary": "the npm dist-tag to start the release from, examples: nightly, latest-rc",
657
- "hasDynamicHelp": false,
658
- "multiple": false,
659
- "type": "option"
660
- },
661
- "start-from-github-ref": {
662
- "char": "g",
663
- "name": "start-from-github-ref",
664
- "summary": "a Github ref to start the release from, examples: main, 7.144.0, f476e8e",
665
- "hasDynamicHelp": false,
666
- "multiple": false,
667
- "type": "option"
668
- },
669
- "release-channel": {
670
- "char": "c",
671
- "name": "release-channel",
672
- "required": true,
673
- "summary": "the channel intended for this release, examples: nightly, latest-rc, latest, dev, beta, etc...",
658
+ "name": "dependencies",
659
+ "summary": "glob pattern of dependencies you want to see the version of",
674
660
  "hasDynamicHelp": false,
675
- "multiple": false,
661
+ "multiple": true,
676
662
  "type": "option"
677
663
  },
678
- "build-only": {
679
- "name": "build-only",
680
- "summary": "only build the release, do not git add/commit/push",
664
+ "salesforce": {
665
+ "char": "s",
666
+ "name": "salesforce",
667
+ "summary": "show versions of salesforce owned dependencies",
681
668
  "allowNo": false,
682
669
  "type": "boolean"
683
670
  },
684
- "resolutions": {
685
- "name": "resolutions",
686
- "summary": "bump the versions of packages listed in the resolutions section",
687
- "allowNo": true,
688
- "type": "boolean"
689
- },
690
- "only": {
691
- "name": "only",
692
- "summary": "only bump the version of the packages passed in, uses latest if version is not provided",
693
- "delimiter": ",",
671
+ "channels": {
672
+ "char": "c",
673
+ "name": "channels",
674
+ "required": true,
675
+ "summary": "the channel you want to inspect (for achives, latest and latest-rc are translated to stable and stable-rc. And vice-versa for npm)",
694
676
  "hasDynamicHelp": false,
695
677
  "multiple": true,
678
+ "options": [
679
+ "stable",
680
+ "stable-rc",
681
+ "latest",
682
+ "latest-rc",
683
+ "nightly"
684
+ ],
696
685
  "type": "option"
697
686
  },
698
- "pinned-deps": {
699
- "name": "pinned-deps",
700
- "summary": "bump the versions of the packages listed in the pinnedDependencies section",
701
- "allowNo": true,
702
- "type": "boolean"
703
- },
704
- "jit": {
705
- "name": "jit",
706
- "summary": "bump the versions of the packages listed in the jitPlugins (just-in-time) section",
707
- "allowNo": true,
708
- "type": "boolean"
709
- },
710
- "label": {
711
- "name": "label",
712
- "summary": "add one or more labels to the Github PR",
687
+ "locations": {
688
+ "char": "l",
689
+ "name": "locations",
690
+ "required": true,
691
+ "summary": "the location you want to inspect",
713
692
  "hasDynamicHelp": false,
714
693
  "multiple": true,
694
+ "options": [
695
+ "archive",
696
+ "npm"
697
+ ],
715
698
  "type": "option"
716
699
  },
717
- "patch": {
718
- "name": "patch",
719
- "summary": "bump the release as a patch of an existing version, not a new minor version",
720
- "allowNo": false,
721
- "type": "boolean"
722
- },
723
- "empty": {
724
- "name": "empty",
725
- "summary": "create an empty release PR for pushing changes to later (version will still be bumped)",
700
+ "ignore-missing": {
701
+ "name": "ignore-missing",
702
+ "summary": "skip missing archives. Useful when supporting new architectures in oclif",
726
703
  "allowNo": false,
727
704
  "type": "boolean"
728
- },
729
- "pr-base-branch": {
730
- "name": "pr-base-branch",
731
- "summary": "base branch to create the PR against; if not specified, the build determines the branch for you",
732
- "hasDynamicHelp": false,
733
- "multiple": false,
734
- "type": "option"
735
705
  }
736
706
  },
737
707
  "hasDynamicHelp": false,
738
708
  "hiddenAliases": [],
739
- "id": "cli:release:build",
709
+ "id": "cli:versions:inspect",
740
710
  "pluginAlias": "@salesforce/plugin-release-management",
741
711
  "pluginName": "@salesforce/plugin-release-management",
742
712
  "pluginType": "core",
743
713
  "strict": true,
744
- "summary": "builds a new release from a designated starting point and optionally creates PR in Github",
714
+ "summary": "inspect the CLI version across all install paths",
745
715
  "enableJsonFlag": true,
746
716
  "isESM": true,
747
717
  "relativePath": [
748
718
  "lib",
749
719
  "commands",
750
720
  "cli",
751
- "release",
752
- "build.js"
721
+ "versions",
722
+ "inspect.js"
753
723
  ]
754
724
  },
755
- "cli:install:test": {
725
+ "cli:tarballs:prepare": {
756
726
  "aliases": [],
757
727
  "args": {},
758
- "description": "install sf or sfdx",
728
+ "description": "remove unnecessary files from node_modules",
759
729
  "examples": [
760
- "<%= config.bin %> <%= command.id %> --cli sfdx --method installer",
761
- "<%= config.bin %> <%= command.id %> --cli sfdx --method npm",
762
- "<%= config.bin %> <%= command.id %> --cli sfdx --method tarball",
763
- "<%= config.bin %> <%= command.id %> --cli sf --method tarball",
764
- "<%= config.bin %> <%= command.id %> --cli sf --method tarball --channel stable-rc"
730
+ "<%= config.bin %> <%= command.id %>"
765
731
  ],
766
732
  "flags": {
767
733
  "json": {
@@ -779,80 +745,51 @@
779
745
  "multiple": false,
780
746
  "type": "option"
781
747
  },
782
- "cli": {
783
- "char": "c",
784
- "name": "cli",
785
- "required": true,
786
- "summary": "the cli to install",
787
- "hasDynamicHelp": false,
788
- "multiple": false,
789
- "options": [
790
- "sf",
791
- "sfdx"
792
- ],
793
- "type": "option"
794
- },
795
- "method": {
796
- "char": "m",
797
- "name": "method",
798
- "required": true,
799
- "summary": "the installation method to use",
800
- "hasDynamicHelp": false,
801
- "multiple": false,
802
- "options": [
803
- "installer",
804
- "npm",
805
- "tarball"
806
- ],
807
- "type": "option"
748
+ "dryrun": {
749
+ "char": "d",
750
+ "name": "dryrun",
751
+ "summary": "only show what would be removed from node_modules",
752
+ "allowNo": false,
753
+ "type": "boolean"
808
754
  },
809
- "channel": {
810
- "name": "channel",
811
- "summary": "the channel to install from",
812
- "default": "stable",
813
- "hasDynamicHelp": false,
814
- "multiple": false,
815
- "options": [
816
- "legacy",
817
- "stable",
818
- "stable-rc",
819
- "latest",
820
- "latest-rc"
821
- ],
822
- "type": "option"
755
+ "types": {
756
+ "char": "t",
757
+ "name": "types",
758
+ "summary": "remove all types (.d.ts) files from node_modules",
759
+ "allowNo": false,
760
+ "type": "boolean"
823
761
  },
824
- "output-file": {
825
- "name": "output-file",
826
- "summary": "the file to write the JSON results to (must be .json)",
827
- "default": "test-results.json",
828
- "hasDynamicHelp": false,
829
- "multiple": false,
830
- "type": "option"
762
+ "verbose": {
763
+ "name": "verbose",
764
+ "summary": "show all files paths being removed",
765
+ "allowNo": false,
766
+ "type": "boolean"
831
767
  }
832
768
  },
833
769
  "hasDynamicHelp": false,
834
770
  "hiddenAliases": [],
835
- "id": "cli:install:test",
771
+ "id": "cli:tarballs:prepare",
836
772
  "pluginAlias": "@salesforce/plugin-release-management",
837
773
  "pluginName": "@salesforce/plugin-release-management",
838
774
  "pluginType": "core",
839
775
  "strict": true,
840
- "summary": "install sf or sfdx",
776
+ "summary": "remove unnecessary files from node_modules",
841
777
  "enableJsonFlag": true,
842
778
  "isESM": true,
843
779
  "relativePath": [
844
780
  "lib",
845
781
  "commands",
846
782
  "cli",
847
- "install",
848
- "test.js"
783
+ "tarballs",
784
+ "prepare.js"
849
785
  ]
850
786
  },
851
- "cli:tarballs:prepare": {
787
+ "cli:tarballs:smoke": {
852
788
  "aliases": [],
853
789
  "args": {},
854
- "description": "remove unnecessary files from node_modules",
790
+ "description": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
855
791
  "examples": [
792
+ "<%= config.bin %> <%= command.id %>",
856
793
  "<%= config.bin %> <%= command.id %>"
857
794
  ],
858
795
  "flags": {
@@ -871,35 +808,21 @@
871
808
  "multiple": false,
872
809
  "type": "option"
873
810
  },
874
- "dryrun": {
875
- "char": "d",
876
- "name": "dryrun",
877
- "summary": "only show what would be removed from node_modules",
878
- "allowNo": false,
879
- "type": "boolean"
880
- },
881
- "types": {
882
- "char": "t",
883
- "name": "types",
884
- "summary": "remove all types (.d.ts) files from node_modules",
885
- "allowNo": false,
886
- "type": "boolean"
887
- },
888
811
  "verbose": {
889
812
  "name": "verbose",
890
- "summary": "show all files paths being removed",
813
+ "summary": "show the --help output for each command",
891
814
  "allowNo": false,
892
815
  "type": "boolean"
893
816
  }
894
817
  },
895
818
  "hasDynamicHelp": false,
896
819
  "hiddenAliases": [],
897
- "id": "cli:tarballs:prepare",
820
+ "id": "cli:tarballs:smoke",
898
821
  "pluginAlias": "@salesforce/plugin-release-management",
899
822
  "pluginName": "@salesforce/plugin-release-management",
900
823
  "pluginType": "core",
901
824
  "strict": true,
902
- "summary": "remove unnecessary files from node_modules",
825
+ "summary": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
903
826
  "enableJsonFlag": true,
904
827
  "isESM": true,
905
828
  "relativePath": [
@@ -907,16 +830,17 @@
907
830
  "commands",
908
831
  "cli",
909
832
  "tarballs",
910
- "prepare.js"
833
+ "smoke.js"
911
834
  ]
912
835
  },
913
- "cli:tarballs:smoke": {
836
+ "cli:tarballs:verify": {
914
837
  "aliases": [],
915
838
  "args": {},
916
- "description": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
839
+ "description": "verify that tarballs are ready to be uploaded",
917
840
  "examples": [
918
841
  "<%= config.bin %> <%= command.id %>",
919
- "<%= config.bin %> <%= command.id %>"
842
+ "<%= config.bin %> <%= command.id %> --cli sfdx",
843
+ "<%= config.bin %> <%= command.id %> --cli sf"
920
844
  ],
921
845
  "flags": {
922
846
  "json": {
@@ -934,21 +858,37 @@
934
858
  "multiple": false,
935
859
  "type": "option"
936
860
  },
937
- "verbose": {
938
- "name": "verbose",
939
- "summary": "show the --help output for each command",
940
- "allowNo": false,
941
- "type": "boolean"
861
+ "cli": {
862
+ "char": "c",
863
+ "name": "cli",
864
+ "summary": "the cli to verify",
865
+ "default": "sfdx",
866
+ "hasDynamicHelp": false,
867
+ "multiple": false,
868
+ "options": [
869
+ "sf",
870
+ "sfdx"
871
+ ],
872
+ "type": "option"
873
+ },
874
+ "windows-username-buffer": {
875
+ "char": "w",
876
+ "name": "windows-username-buffer",
877
+ "summary": "the number of characters to allow for windows usernames",
878
+ "default": 41,
879
+ "hasDynamicHelp": false,
880
+ "multiple": false,
881
+ "type": "option"
942
882
  }
943
883
  },
944
884
  "hasDynamicHelp": false,
945
885
  "hiddenAliases": [],
946
- "id": "cli:tarballs:smoke",
886
+ "id": "cli:tarballs:verify",
947
887
  "pluginAlias": "@salesforce/plugin-release-management",
948
888
  "pluginName": "@salesforce/plugin-release-management",
949
889
  "pluginType": "core",
950
890
  "strict": true,
951
- "summary": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
891
+ "summary": "verify that tarballs are ready to be uploaded",
952
892
  "enableJsonFlag": true,
953
893
  "isESM": true,
954
894
  "relativePath": [
@@ -956,17 +896,15 @@
956
896
  "commands",
957
897
  "cli",
958
898
  "tarballs",
959
- "smoke.js"
899
+ "verify.js"
960
900
  ]
961
901
  },
962
- "cli:tarballs:verify": {
902
+ "github:check:closed": {
963
903
  "aliases": [],
964
904
  "args": {},
965
- "description": "verify that tarballs are ready to be uploaded",
905
+ "description": "Description of a command.",
966
906
  "examples": [
967
- "<%= config.bin %> <%= command.id %>",
968
- "<%= config.bin %> <%= command.id %> --cli sfdx",
969
- "<%= config.bin %> <%= command.id %> --cli sf"
907
+ "<%= config.bin %> <%= command.id %> -o me@gus.com"
970
908
  ],
971
909
  "flags": {
972
910
  "json": {
@@ -984,62 +922,50 @@
984
922
  "multiple": false,
985
923
  "type": "option"
986
924
  },
987
- "cli": {
988
- "char": "c",
989
- "name": "cli",
990
- "summary": "the cli to verify",
991
- "default": "sfdx",
992
- "hasDynamicHelp": false,
925
+ "gus": {
926
+ "char": "o",
927
+ "name": "gus",
928
+ "noCacheDefault": true,
929
+ "required": true,
930
+ "summary": "Username/alias of your GUS org connection",
931
+ "hasDynamicHelp": true,
993
932
  "multiple": false,
994
- "options": [
995
- "sf",
996
- "sfdx"
997
- ],
998
933
  "type": "option"
999
934
  },
1000
- "windows-username-buffer": {
1001
- "char": "w",
1002
- "name": "windows-username-buffer",
1003
- "summary": "the number of characters to allow for windows usernames",
1004
- "default": 41,
935
+ "github-token": {
936
+ "env": "GITHUB_TOKEN",
937
+ "name": "github-token",
938
+ "required": true,
939
+ "summary": "Github token--store this in the environment as GITHUB_TOKEN",
1005
940
  "hasDynamicHelp": false,
1006
941
  "multiple": false,
1007
942
  "type": "option"
1008
943
  }
1009
944
  },
1010
- "hasDynamicHelp": false,
945
+ "hasDynamicHelp": true,
1011
946
  "hiddenAliases": [],
1012
- "id": "cli:tarballs:verify",
947
+ "id": "github:check:closed",
1013
948
  "pluginAlias": "@salesforce/plugin-release-management",
1014
949
  "pluginName": "@salesforce/plugin-release-management",
1015
950
  "pluginType": "core",
1016
951
  "strict": true,
1017
- "summary": "verify that tarballs are ready to be uploaded",
952
+ "summary": "Show open Github issues with GUS WI",
1018
953
  "enableJsonFlag": true,
1019
954
  "isESM": true,
1020
955
  "relativePath": [
1021
956
  "lib",
1022
957
  "commands",
1023
- "cli",
1024
- "tarballs",
1025
- "verify.js"
958
+ "github",
959
+ "check",
960
+ "closed.js"
1026
961
  ]
1027
962
  },
1028
- "cli:versions:inspect": {
963
+ "cli:release:automerge": {
1029
964
  "aliases": [],
1030
965
  "args": {},
1031
- "description": "inspect the CLI version across all install paths",
966
+ "description": "Attempt to automerge nightly PR",
1032
967
  "examples": [
1033
- "<%= config.bin %> <%= command.id %> -l archive -c stable",
1034
- "<%= config.bin %> <%= command.id %> -l archive -c stable-rc",
1035
- "<%= config.bin %> <%= command.id %> -l archive npm -c stable",
1036
- "<%= config.bin %> <%= command.id %> -l archive npm -c latest",
1037
- "<%= config.bin %> <%= command.id %> -l archive npm -c latest latest-rc",
1038
- "<%= config.bin %> <%= command.id %> -l archive npm -c stable stable-rc",
1039
- "<%= config.bin %> <%= command.id %> -l npm -c latest --salesforce",
1040
- "<%= config.bin %> <%= command.id %> -l npm -c latest -d @salesforce/core",
1041
- "<%= config.bin %> <%= command.id %> -l npm -c latest -d @salesforce/\\*\\*/ salesforce-alm",
1042
- "<%= config.bin %> <%= command.id %> -l npm -c latest -d chalk -s"
968
+ "<%= config.bin %> <%= command.id %> --owner salesforcecli --repo sfdx-cli --pul-number 1049"
1043
969
  ],
1044
970
  "flags": {
1045
971
  "json": {
@@ -1057,81 +983,87 @@
1057
983
  "multiple": false,
1058
984
  "type": "option"
1059
985
  },
1060
- "dependencies": {
1061
- "char": "d",
1062
- "name": "dependencies",
1063
- "summary": "glob pattern of dependencies you want to see the version of",
986
+ "owner": {
987
+ "aliases": [
988
+ "org"
989
+ ],
990
+ "dependsOn": [
991
+ "repo"
992
+ ],
993
+ "name": "owner",
994
+ "required": true,
995
+ "summary": "Github owner (org), example: salesforcecli",
1064
996
  "hasDynamicHelp": false,
1065
- "multiple": true,
997
+ "multiple": false,
1066
998
  "type": "option"
1067
999
  },
1068
- "salesforce": {
1069
- "char": "s",
1070
- "name": "salesforce",
1071
- "summary": "show versions of salesforce owned dependencies",
1072
- "allowNo": false,
1073
- "type": "boolean"
1074
- },
1075
- "channels": {
1076
- "char": "c",
1077
- "name": "channels",
1000
+ "repo": {
1001
+ "dependsOn": [
1002
+ "owner"
1003
+ ],
1004
+ "name": "repo",
1078
1005
  "required": true,
1079
- "summary": "the channel you want to inspect (for achives, latest and latest-rc are translated to stable and stable-rc. And vice-versa for npm)",
1006
+ "summary": "Github repo, example: sfdx-cli",
1080
1007
  "hasDynamicHelp": false,
1081
- "multiple": true,
1082
- "options": [
1083
- "stable",
1084
- "stable-rc",
1085
- "latest",
1086
- "latest-rc",
1087
- "nightly"
1088
- ],
1008
+ "multiple": false,
1089
1009
  "type": "option"
1090
1010
  },
1091
- "locations": {
1092
- "char": "l",
1093
- "name": "locations",
1011
+ "pull-number": {
1012
+ "name": "pull-number",
1094
1013
  "required": true,
1095
- "summary": "the location you want to inspect",
1014
+ "summary": "Github pull request number to merge",
1096
1015
  "hasDynamicHelp": false,
1097
- "multiple": true,
1098
- "options": [
1099
- "archive",
1100
- "npm"
1101
- ],
1016
+ "multiple": false,
1102
1017
  "type": "option"
1103
1018
  },
1104
- "ignore-missing": {
1105
- "name": "ignore-missing",
1106
- "summary": "skip missing archives. Useful when supporting new architectures in oclif",
1019
+ "dry-run": {
1020
+ "char": "d",
1021
+ "name": "dry-run",
1022
+ "summary": "Run all checks, but do not merge PR",
1023
+ "allowNo": false,
1024
+ "type": "boolean"
1025
+ },
1026
+ "verbose": {
1027
+ "name": "verbose",
1028
+ "summary": "Show additional debug output",
1107
1029
  "allowNo": false,
1108
1030
  "type": "boolean"
1109
1031
  }
1110
1032
  },
1111
1033
  "hasDynamicHelp": false,
1112
1034
  "hiddenAliases": [],
1113
- "id": "cli:versions:inspect",
1035
+ "id": "cli:release:automerge",
1114
1036
  "pluginAlias": "@salesforce/plugin-release-management",
1115
1037
  "pluginName": "@salesforce/plugin-release-management",
1116
1038
  "pluginType": "core",
1117
1039
  "strict": true,
1118
- "summary": "inspect the CLI version across all install paths",
1040
+ "summary": "Attempt to automerge nightly PR",
1119
1041
  "enableJsonFlag": true,
1120
1042
  "isESM": true,
1121
1043
  "relativePath": [
1122
1044
  "lib",
1123
1045
  "commands",
1124
1046
  "cli",
1125
- "versions",
1126
- "inspect.js"
1047
+ "release",
1048
+ "automerge.js"
1127
1049
  ]
1128
1050
  },
1129
- "github:check:closed": {
1130
- "aliases": [],
1051
+ "cli:release:build": {
1052
+ "aliases": [
1053
+ "cli:latestrc:build"
1054
+ ],
1131
1055
  "args": {},
1132
- "description": "Description of a command.",
1056
+ "description": "builds a new release from a designated starting point and optionally creates PR in Github",
1133
1057
  "examples": [
1134
- "<%= config.bin %> <%= command.id %> -o me@gus.com"
1058
+ "<%= config.bin %> <%= command.id %>",
1059
+ "<%= config.bin %> <%= command.id %> --patch",
1060
+ "<%= config.bin %> <%= command.id %> --start-from-npm-dist-tag latest-rc --patch",
1061
+ "<%= config.bin %> <%= command.id %> --start-from-github-ref 7.144.0",
1062
+ "<%= config.bin %> <%= command.id %> --start-from-github-ref main",
1063
+ "<%= config.bin %> <%= command.id %> --start-from-github-ref f476e8e",
1064
+ "<%= config.bin %> <%= command.id %> --start-from-github-ref main --prerelease beta",
1065
+ "<%= config.bin %> <%= command.id %> --build-only",
1066
+ "<%= config.bin %> <%= command.id %> --only @salesforce/plugin-source,@salesforce/plugin-info@1.2.3"
1135
1067
  ],
1136
1068
  "flags": {
1137
1069
  "json": {
@@ -1149,42 +1081,110 @@
1149
1081
  "multiple": false,
1150
1082
  "type": "option"
1151
1083
  },
1152
- "gus": {
1153
- "char": "o",
1154
- "name": "gus",
1155
- "noCacheDefault": true,
1156
- "required": true,
1157
- "summary": "Username/alias of your GUS org connection",
1158
- "hasDynamicHelp": true,
1084
+ "start-from-npm-dist-tag": {
1085
+ "aliases": [
1086
+ "rctag"
1087
+ ],
1088
+ "char": "d",
1089
+ "deprecateAliases": true,
1090
+ "name": "start-from-npm-dist-tag",
1091
+ "summary": "the npm dist-tag to start the release from, examples: nightly, latest-rc",
1092
+ "hasDynamicHelp": false,
1159
1093
  "multiple": false,
1160
1094
  "type": "option"
1161
1095
  },
1162
- "github-token": {
1163
- "env": "GITHUB_TOKEN",
1164
- "name": "github-token",
1096
+ "start-from-github-ref": {
1097
+ "char": "g",
1098
+ "name": "start-from-github-ref",
1099
+ "summary": "a Github ref to start the release from, examples: main, 7.144.0, f476e8e",
1100
+ "hasDynamicHelp": false,
1101
+ "multiple": false,
1102
+ "type": "option"
1103
+ },
1104
+ "release-channel": {
1105
+ "char": "c",
1106
+ "name": "release-channel",
1165
1107
  "required": true,
1166
- "summary": "Github token--store this in the environment as GITHUB_TOKEN",
1108
+ "summary": "the channel intended for this release, examples: nightly, latest-rc, latest, dev, beta, etc...",
1109
+ "hasDynamicHelp": false,
1110
+ "multiple": false,
1111
+ "type": "option"
1112
+ },
1113
+ "build-only": {
1114
+ "name": "build-only",
1115
+ "summary": "only build the release, do not git add/commit/push",
1116
+ "allowNo": false,
1117
+ "type": "boolean"
1118
+ },
1119
+ "resolutions": {
1120
+ "name": "resolutions",
1121
+ "summary": "bump the versions of packages listed in the resolutions section",
1122
+ "allowNo": true,
1123
+ "type": "boolean"
1124
+ },
1125
+ "only": {
1126
+ "name": "only",
1127
+ "summary": "only bump the version of the packages passed in, uses latest if version is not provided",
1128
+ "delimiter": ",",
1129
+ "hasDynamicHelp": false,
1130
+ "multiple": true,
1131
+ "type": "option"
1132
+ },
1133
+ "pinned-deps": {
1134
+ "name": "pinned-deps",
1135
+ "summary": "bump the versions of the packages listed in the pinnedDependencies section",
1136
+ "allowNo": true,
1137
+ "type": "boolean"
1138
+ },
1139
+ "jit": {
1140
+ "name": "jit",
1141
+ "summary": "bump the versions of the packages listed in the jitPlugins (just-in-time) section",
1142
+ "allowNo": true,
1143
+ "type": "boolean"
1144
+ },
1145
+ "label": {
1146
+ "name": "label",
1147
+ "summary": "add one or more labels to the Github PR",
1148
+ "hasDynamicHelp": false,
1149
+ "multiple": true,
1150
+ "type": "option"
1151
+ },
1152
+ "patch": {
1153
+ "name": "patch",
1154
+ "summary": "bump the release as a patch of an existing version, not a new minor version",
1155
+ "allowNo": false,
1156
+ "type": "boolean"
1157
+ },
1158
+ "empty": {
1159
+ "name": "empty",
1160
+ "summary": "create an empty release PR for pushing changes to later (version will still be bumped)",
1161
+ "allowNo": false,
1162
+ "type": "boolean"
1163
+ },
1164
+ "pr-base-branch": {
1165
+ "name": "pr-base-branch",
1166
+ "summary": "base branch to create the PR against; if not specified, the build determines the branch for you",
1167
1167
  "hasDynamicHelp": false,
1168
1168
  "multiple": false,
1169
1169
  "type": "option"
1170
1170
  }
1171
1171
  },
1172
- "hasDynamicHelp": true,
1172
+ "hasDynamicHelp": false,
1173
1173
  "hiddenAliases": [],
1174
- "id": "github:check:closed",
1174
+ "id": "cli:release:build",
1175
1175
  "pluginAlias": "@salesforce/plugin-release-management",
1176
1176
  "pluginName": "@salesforce/plugin-release-management",
1177
1177
  "pluginType": "core",
1178
1178
  "strict": true,
1179
- "summary": "Show open Github issues with GUS WI",
1179
+ "summary": "builds a new release from a designated starting point and optionally creates PR in Github",
1180
1180
  "enableJsonFlag": true,
1181
1181
  "isESM": true,
1182
1182
  "relativePath": [
1183
1183
  "lib",
1184
1184
  "commands",
1185
- "github",
1186
- "check",
1187
- "closed.js"
1185
+ "cli",
1186
+ "release",
1187
+ "build.js"
1188
1188
  ]
1189
1189
  },
1190
1190
  "npm:dependencies:pin": {
@@ -1390,5 +1390,5 @@
1390
1390
  ]
1391
1391
  }
1392
1392
  },
1393
- "version": "5.6.32"
1393
+ "version": "5.6.33"
1394
1394
  }