Skip to content

Commit ee8e878

Browse files
committed
chore(release): 1.2.10 [skip ci]
1 parent 86b72e4 commit ee8e878

File tree

3 files changed

+35
-11
lines changed

3 files changed

+35
-11
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [1.2.10](https://github.com/salesforcecli/plugin-devops-center/compare/1.2.9...1.2.10) (2024-05-09)
2+
3+
### Bug Fixes
4+
5+
- **deps:** bump @oclif/core from 3.26.0 to 3.26.3 ([a1826ab](https://github.com/salesforcecli/plugin-devops-center/commit/a1826ab40da81619a8a07bb75a7bea36572d53c6))
6+
- **deps:** bump @oclif/core from 3.26.4 to 3.26.5 ([04872b3](https://github.com/salesforcecli/plugin-devops-center/commit/04872b31413b2b417911896e0f0938d9d63a223f))
7+
- **deps:** bump @salesforce/core from 6.7.3 to 6.7.6 ([f18ec04](https://github.com/salesforcecli/plugin-devops-center/commit/f18ec0413e447661bedcfe29fb3c396c61d94c5a))
8+
- **deps:** bump tar from 6.2.0 to 6.2.1 ([7350bdf](https://github.com/salesforcecli/plugin-devops-center/commit/7350bdf919fe7615aefe0e641cc400693623be35))
9+
- set defaultHelp on wait flag ([#360](https://github.com/salesforcecli/plugin-devops-center/issues/360)) ([86b72e4](https://github.com/salesforcecli/plugin-devops-center/commit/86b72e472189864dfc38e46fdb2f09f268fa439c))
10+
111
## [1.2.9](https://github.com/salesforcecli/plugin-devops-center/compare/1.2.8...1.2.9) (2024-03-14)
212

313
### Bug Fixes

README.md

Lines changed: 24 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,13 @@ GLOBAL FLAGS
8787
DESCRIPTION
8888
Quickly deploy a validated deployment to an org.
8989
90-
Before you run this command, first create a validated deployment with the "sf project deploy pipeline validate"
91-
command, which returns a job ID. Validated deployments haven't been deployed to the org yet; you deploy them with this
92-
command. Either pass the job ID to this command or use the --use-most-recent flag to use the job ID of the most
93-
recently validated deployment. For the quick deploy to succeed, the associated validated deployment must also have
94-
succeeded.
90+
The first time you run any "project deploy pipeline" command, be sure to authorize the org in which DevOps Center is
91+
installed. The easiest way to authorize an org is with the "org login web" command.
92+
93+
Before you run this command, create a validated deployment with the "project deploy pipeline validate" command, which
94+
returns a job ID. Validated deployments haven't been deployed to the org yet; you deploy them with this command.
95+
Either pass the job ID to this command or use the --use-most-recent flag to use the job ID of the most recently
96+
validated deployment. For the quick deploy to succeed, the associated validated deployment must also have succeeded.
9597
9698
Executing this quick deploy command takes less time than a standard deploy because it skips running Apex tests. These
9799
tests were previously run as part of the validation. Validating first and then running a quick deploy is useful if the
@@ -131,7 +133,7 @@ FLAG DESCRIPTIONS
131133
"sf project deploy pipeline report".
132134
```
133135

134-
_See code: [src/commands/project/deploy/pipeline/quick.ts](https://github.com/salesforcecli/plugin-devops-center/blob/1.2.9/src/commands/project/deploy/pipeline/quick.ts)_
136+
_See code: [src/commands/project/deploy/pipeline/quick.ts](https://github.com/salesforcecli/plugin-devops-center/blob/1.2.10/src/commands/project/deploy/pipeline/quick.ts)_
135137

136138
## `sf project deploy pipeline report`
137139

@@ -152,6 +154,9 @@ GLOBAL FLAGS
152154
DESCRIPTION
153155
Check the status of a pipeline deploy operation.
154156
157+
The first time you run any "project deploy pipeline" command, be sure to authorize the org in which DevOps Center is
158+
installed. The easiest way to authorize an org is with the "org login web" command.
159+
155160
Run this command by either indicating a job ID or specifying the —use-most-recent flag to use the job ID of the most
156161
recent deploy operation.
157162
@@ -175,7 +180,7 @@ FLAG DESCRIPTIONS
175180
your most recent operation was longer than 3 days ago, this flag won't find the job ID.
176181
```
177182

178-
_See code: [src/commands/project/deploy/pipeline/report.ts](https://github.com/salesforcecli/plugin-devops-center/blob/1.2.9/src/commands/project/deploy/pipeline/report.ts)_
183+
_See code: [src/commands/project/deploy/pipeline/report.ts](https://github.com/salesforcecli/plugin-devops-center/blob/1.2.10/src/commands/project/deploy/pipeline/report.ts)_
179184

180185
## `sf project deploy pipeline resume`
181186

@@ -200,6 +205,9 @@ GLOBAL FLAGS
200205
DESCRIPTION
201206
Resume watching a pipeline deploy operation.
202207
208+
The first time you run any "project deploy pipeline" command, be sure to authorize the org in which DevOps Center is
209+
installed. The easiest way to authorize an org is with the "org login web" command.
210+
203211
Use this command to resume watching a pipeline deploy operation if the original command times out or you specified the
204212
--async flag.
205213
@@ -237,7 +245,7 @@ FLAG DESCRIPTIONS
237245
returns the job ID. To check the status of the operation, run "sf project deploy pipeline report".
238246
```
239247

240-
_See code: [src/commands/project/deploy/pipeline/resume.ts](https://github.com/salesforcecli/plugin-devops-center/blob/1.2.9/src/commands/project/deploy/pipeline/resume.ts)_
248+
_See code: [src/commands/project/deploy/pipeline/resume.ts](https://github.com/salesforcecli/plugin-devops-center/blob/1.2.10/src/commands/project/deploy/pipeline/resume.ts)_
241249

242250
## `sf project deploy pipeline start`
243251

@@ -270,6 +278,9 @@ GLOBAL FLAGS
270278
DESCRIPTION
271279
Deploy changes from a branch to the pipeline stage’s org.
272280
281+
The first time you run any "project deploy pipeline" command, be sure to authorize the org in which DevOps Center is
282+
installed. The easiest way to authorize an org is with the "org login web" command.
283+
273284
Before you run this command, changes in the pipeline stage's branch must be merged in the source control repository.
274285
275286
EXAMPLES
@@ -333,7 +344,7 @@ FLAG DESCRIPTIONS
333344
"sf project deploy pipeline report".
334345
```
335346

336-
_See code: [src/commands/project/deploy/pipeline/start.ts](https://github.com/salesforcecli/plugin-devops-center/blob/1.2.9/src/commands/project/deploy/pipeline/start.ts)_
347+
_See code: [src/commands/project/deploy/pipeline/start.ts](https://github.com/salesforcecli/plugin-devops-center/blob/1.2.10/src/commands/project/deploy/pipeline/start.ts)_
337348

338349
## `sf project deploy pipeline validate`
339350

@@ -366,6 +377,9 @@ GLOBAL FLAGS
366377
DESCRIPTION
367378
Perform a validate-only deployment from a branch to the pipeline stage’s org.
368379
380+
The first time you run any "project deploy pipeline" command, be sure to authorize the org in which DevOps Center is
381+
installed. The easiest way to authorize an org is with the "org login web" command.
382+
369383
A validation runs Apex tests to verify whether a deployment will succeed without actually deploying the metadata to
370384
your environment, so you can then quickly deploy the changes later without re-running the tests.
371385
@@ -429,7 +443,7 @@ FLAG DESCRIPTIONS
429443
"sf project deploy pipeline report".
430444
```
431445

432-
_See code: [src/commands/project/deploy/pipeline/validate.ts](https://github.com/salesforcecli/plugin-devops-center/blob/1.2.9/src/commands/project/deploy/pipeline/validate.ts)_
446+
_See code: [src/commands/project/deploy/pipeline/validate.ts](https://github.com/salesforcecli/plugin-devops-center/blob/1.2.10/src/commands/project/deploy/pipeline/validate.ts)_
433447

434448
<!-- commandsstop -->
435449

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/plugin-devops-center",
33
"description": "The DevOps Center CLI plugin provides a command-line alternative to performing equivalent actions in the DevOps Center graphical UI",
4-
"version": "1.2.9",
4+
"version": "1.2.10",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)