@salesforce/cli 2.148.1 → 2.148.3
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 +224 -221
- package/npm-shrinkwrap.json +153 -153
- package/oclif.lock +158 -158
- package/oclif.manifest.json +31 -17
- package/package.json +32 -32
package/oclif.manifest.json
CHANGED
|
@@ -2445,10 +2445,11 @@
|
|
|
2445
2445
|
"args": {},
|
|
2446
2446
|
"description": "Provide the URL of an existing repository, or use `--create-repo` with a repository name to create one. After you create the pipeline, add stages, and activate the pipeline.",
|
|
2447
2447
|
"examples": [
|
|
2448
|
-
"Create a pipeline and associate it with an existing GitHub repository
|
|
2449
|
-
"Create a pipeline and associate it with a new GitHub repository
|
|
2450
|
-
"Create a pipeline and create a new Bitbucket repository
|
|
2451
|
-
"Create a pipeline
|
|
2448
|
+
"Create a pipeline and associate it with an existing GitHub repository:\n<%= config.bin %> <%= command.id %> --target-org my-devops-org --name \"Release Pipeline\" --repo https://github.com/myorg/myrepo",
|
|
2449
|
+
"Create a pipeline and associate it with a new GitHub repository:\n<%= config.bin %> <%= command.id %> --target-org my-devops-org --name \"Release Pipeline\" --repo my-new-repo --repo-type github --repo-owner myorg --create-repo",
|
|
2450
|
+
"Create a pipeline and create a new Bitbucket repository:\n<%= config.bin %> <%= command.id %> --target-org my-devops-org --name \"Release Pipeline\" --repo my-new-repo --repo-type bitbucket --bitbucket-workspace myworkspace --bitbucket-project-key PROJ --create-repo",
|
|
2451
|
+
"Create a pipeline and associate it with an existing Bitbucket repository:\n<%= config.bin %> <%= command.id %> --target-org my-devops-org --name \"Release Pipeline\" --repo https://bitbucket.org/myworkspace/myrepo",
|
|
2452
|
+
"Create a pipeline with custom stage names instead of the default stages:\n<%= config.bin %> <%= command.id %> --target-org my-devops-org --name \"Release Pipeline\" --repo https://github.com/myorg/myrepo --stage Dev --stage QA --stage Prod"
|
|
2452
2453
|
],
|
|
2453
2454
|
"flags": {
|
|
2454
2455
|
"json": {
|
|
@@ -2539,12 +2540,12 @@
|
|
|
2539
2540
|
"multiple": false,
|
|
2540
2541
|
"type": "option"
|
|
2541
2542
|
},
|
|
2542
|
-
"
|
|
2543
|
-
"char": "
|
|
2544
|
-
"name": "
|
|
2545
|
-
"summary": "
|
|
2543
|
+
"stage": {
|
|
2544
|
+
"char": "s",
|
|
2545
|
+
"name": "stage",
|
|
2546
|
+
"summary": "Name of a pipeline stage, in promotion order. Repeat the flag for each stage. Defaults to Integration, UAT, Staging, and Production.",
|
|
2546
2547
|
"hasDynamicHelp": false,
|
|
2547
|
-
"multiple":
|
|
2548
|
+
"multiple": true,
|
|
2548
2549
|
"type": "option"
|
|
2549
2550
|
}
|
|
2550
2551
|
},
|
|
@@ -2696,10 +2697,10 @@
|
|
|
2696
2697
|
"devops:pipeline:update": {
|
|
2697
2698
|
"aliases": [],
|
|
2698
2699
|
"args": {},
|
|
2699
|
-
"description": "Activate, deactivate, or rename a DevOps Center pipeline. Use --
|
|
2700
|
+
"description": "Activate, deactivate, or rename a DevOps Center pipeline. Use --activate to activate, --deactivate to deactivate, and --name to rename. You can combine --deactivate and --name in one command.\n\nA pipeline must have at least one stage before you can activate it. You can't modify the pipeline stages after you activate and promote changes through it.",
|
|
2700
2701
|
"examples": [
|
|
2701
|
-
"Activate a pipeline:\n<%= config.bin %> <%= command.id %> --target-org my-devops-org --pipeline-id 0XB000000000001 --
|
|
2702
|
-
"Deactivate and rename in one step.\n<%= config.bin %> <%= command.id %> --target-org my-devops-org --pipeline-id 0XB000000000001 --
|
|
2702
|
+
"Activate a pipeline:\n<%= config.bin %> <%= command.id %> --target-org my-devops-org --pipeline-id 0XB000000000001 --activate",
|
|
2703
|
+
"Deactivate and rename in one step.\n<%= config.bin %> <%= command.id %> --target-org my-devops-org --pipeline-id 0XB000000000001 --deactivate --name \"My Pipeline\""
|
|
2703
2704
|
],
|
|
2704
2705
|
"flags": {
|
|
2705
2706
|
"json": {
|
|
@@ -2742,11 +2743,24 @@
|
|
|
2742
2743
|
"multiple": false,
|
|
2743
2744
|
"type": "option"
|
|
2744
2745
|
},
|
|
2745
|
-
"
|
|
2746
|
-
"
|
|
2746
|
+
"activate": {
|
|
2747
|
+
"exclusive": [
|
|
2748
|
+
"deactivate"
|
|
2749
|
+
],
|
|
2750
|
+
"name": "activate",
|
|
2751
|
+
"required": false,
|
|
2752
|
+
"summary": "Activate the pipeline. Can't be used with --deactivate.",
|
|
2753
|
+
"allowNo": false,
|
|
2754
|
+
"type": "boolean"
|
|
2755
|
+
},
|
|
2756
|
+
"deactivate": {
|
|
2757
|
+
"exclusive": [
|
|
2758
|
+
"activate"
|
|
2759
|
+
],
|
|
2760
|
+
"name": "deactivate",
|
|
2747
2761
|
"required": false,
|
|
2748
|
-
"summary": "
|
|
2749
|
-
"allowNo":
|
|
2762
|
+
"summary": "Deactivate the pipeline. Can't be used with --activate.",
|
|
2763
|
+
"allowNo": false,
|
|
2750
2764
|
"type": "boolean"
|
|
2751
2765
|
},
|
|
2752
2766
|
"name": {
|
|
@@ -6984,5 +6998,5 @@
|
|
|
6984
6998
|
"requiresProject": true
|
|
6985
6999
|
}
|
|
6986
7000
|
},
|
|
6987
|
-
"version": "2.148.
|
|
7001
|
+
"version": "2.148.3"
|
|
6988
7002
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.148.
|
|
4
|
+
"version": "2.148.3",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -77,13 +77,13 @@
|
|
|
77
77
|
],
|
|
78
78
|
"jitPlugins": {
|
|
79
79
|
"@salesforce/plugin-code-analyzer": "5.15.0",
|
|
80
|
-
"@salesforce/plugin-community": "4.0.
|
|
81
|
-
"@salesforce/plugin-custom-metadata": "4.0.
|
|
80
|
+
"@salesforce/plugin-community": "4.0.3",
|
|
81
|
+
"@salesforce/plugin-custom-metadata": "4.0.3",
|
|
82
82
|
"@salesforce/plugin-dev": "2.5.2",
|
|
83
|
-
"@salesforce/plugin-devops-center": "2.0
|
|
83
|
+
"@salesforce/plugin-devops-center": "2.1.0",
|
|
84
84
|
"@salesforce/plugin-flow": "2.0.0",
|
|
85
85
|
"@salesforce/plugin-lightning-dev": "6.2.18",
|
|
86
|
-
"@salesforce/plugin-signups": "3.0.
|
|
86
|
+
"@salesforce/plugin-signups": "3.0.3",
|
|
87
87
|
"@salesforce/plugin-ui-bundle-dev": "1.2.4",
|
|
88
88
|
"@salesforce/sfdx-plugin-lwc-test": "1.2.1"
|
|
89
89
|
},
|
|
@@ -147,36 +147,36 @@
|
|
|
147
147
|
"dependencies": {
|
|
148
148
|
"@inquirer/select": "^2.3.5",
|
|
149
149
|
"@oclif/core": "4.13.3",
|
|
150
|
-
"@oclif/plugin-autocomplete": "3.2.
|
|
151
|
-
"@oclif/plugin-commands": "4.1.
|
|
152
|
-
"@oclif/plugin-help": "6.2.
|
|
153
|
-
"@oclif/plugin-not-found": "3.2.
|
|
150
|
+
"@oclif/plugin-autocomplete": "3.2.56",
|
|
151
|
+
"@oclif/plugin-commands": "4.1.63",
|
|
152
|
+
"@oclif/plugin-help": "6.2.58",
|
|
153
|
+
"@oclif/plugin-not-found": "3.2.93",
|
|
154
154
|
"@oclif/plugin-plugins": "5.4.86",
|
|
155
155
|
"@oclif/plugin-search": "1.2.54",
|
|
156
|
-
"@oclif/plugin-update": "4.7.
|
|
157
|
-
"@oclif/plugin-version": "2.2.
|
|
158
|
-
"@oclif/plugin-warn-if-update-available": "3.1.
|
|
159
|
-
"@oclif/plugin-which": "3.2.
|
|
156
|
+
"@oclif/plugin-update": "4.7.59",
|
|
157
|
+
"@oclif/plugin-version": "2.2.56",
|
|
158
|
+
"@oclif/plugin-warn-if-update-available": "3.1.73",
|
|
159
|
+
"@oclif/plugin-which": "3.2.61",
|
|
160
160
|
"@salesforce/core": "^9.0.0",
|
|
161
161
|
"@salesforce/kit": "^4.0.0",
|
|
162
|
-
"@salesforce/plugin-agent": "2.0.
|
|
163
|
-
"@salesforce/plugin-apex": "4.0
|
|
164
|
-
"@salesforce/plugin-api": "2.0.
|
|
165
|
-
"@salesforce/plugin-auth": "5.0.
|
|
166
|
-
"@salesforce/plugin-data": "5.
|
|
167
|
-
"@salesforce/plugin-deploy-retrieve": "4.0.
|
|
168
|
-
"@salesforce/plugin-info": "4.0.
|
|
169
|
-
"@salesforce/plugin-limits": "4.0.
|
|
170
|
-
"@salesforce/plugin-marketplace": "2.0.
|
|
171
|
-
"@salesforce/plugin-org": "6.0.
|
|
172
|
-
"@salesforce/plugin-packaging": "3.0.
|
|
173
|
-
"@salesforce/plugin-schema": "4.0.
|
|
174
|
-
"@salesforce/plugin-settings": "3.0.
|
|
175
|
-
"@salesforce/plugin-sobject": "2.0.
|
|
176
|
-
"@salesforce/plugin-telemetry": "4.0.
|
|
177
|
-
"@salesforce/plugin-templates": "57.0.
|
|
178
|
-
"@salesforce/plugin-trust": "4.0.
|
|
179
|
-
"@salesforce/plugin-user": "
|
|
162
|
+
"@salesforce/plugin-agent": "2.0.1",
|
|
163
|
+
"@salesforce/plugin-apex": "4.1.0",
|
|
164
|
+
"@salesforce/plugin-api": "2.0.8",
|
|
165
|
+
"@salesforce/plugin-auth": "5.0.4",
|
|
166
|
+
"@salesforce/plugin-data": "5.1.2",
|
|
167
|
+
"@salesforce/plugin-deploy-retrieve": "4.0.2",
|
|
168
|
+
"@salesforce/plugin-info": "4.0.5",
|
|
169
|
+
"@salesforce/plugin-limits": "4.0.3",
|
|
170
|
+
"@salesforce/plugin-marketplace": "2.0.4",
|
|
171
|
+
"@salesforce/plugin-org": "6.0.7",
|
|
172
|
+
"@salesforce/plugin-packaging": "3.0.5",
|
|
173
|
+
"@salesforce/plugin-schema": "4.0.4",
|
|
174
|
+
"@salesforce/plugin-settings": "3.0.5",
|
|
175
|
+
"@salesforce/plugin-sobject": "2.0.5",
|
|
176
|
+
"@salesforce/plugin-telemetry": "4.0.3",
|
|
177
|
+
"@salesforce/plugin-templates": "57.0.6",
|
|
178
|
+
"@salesforce/plugin-trust": "4.0.7",
|
|
179
|
+
"@salesforce/plugin-user": "5.0.0",
|
|
180
180
|
"@salesforce/sf-plugins-core": "13.0.0",
|
|
181
181
|
"ansis": "^3.12.0"
|
|
182
182
|
},
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
"@salesforce/ts-sinon": "^1.4.36",
|
|
268
268
|
"@salesforce/ts-types": "^3.0.0",
|
|
269
269
|
"aws-sdk": "^2.1693.0",
|
|
270
|
-
"oclif": "^4.23.
|
|
270
|
+
"oclif": "^4.23.30",
|
|
271
271
|
"ts-node": "^10.9.2",
|
|
272
272
|
"typescript": "^5.9.3"
|
|
273
273
|
},
|