Skip to content

Commit

Permalink
chore(release): 1.2.10 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-cli-bot committed May 9, 2024
1 parent 86b72e4 commit ee8e878
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 11 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [1.2.10](https://github.com/salesforcecli/plugin-devops-center/compare/1.2.9...1.2.10) (2024-05-09)

### Bug Fixes

- **deps:** bump @oclif/core from 3.26.0 to 3.26.3 ([a1826ab](https://github.com/salesforcecli/plugin-devops-center/commit/a1826ab40da81619a8a07bb75a7bea36572d53c6))
- **deps:** bump @oclif/core from 3.26.4 to 3.26.5 ([04872b3](https://github.com/salesforcecli/plugin-devops-center/commit/04872b31413b2b417911896e0f0938d9d63a223f))
- **deps:** bump @salesforce/core from 6.7.3 to 6.7.6 ([f18ec04](https://github.com/salesforcecli/plugin-devops-center/commit/f18ec0413e447661bedcfe29fb3c396c61d94c5a))
- **deps:** bump tar from 6.2.0 to 6.2.1 ([7350bdf](https://github.com/salesforcecli/plugin-devops-center/commit/7350bdf919fe7615aefe0e641cc400693623be35))
- 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))

## [1.2.9](https://github.com/salesforcecli/plugin-devops-center/compare/1.2.8...1.2.9) (2024-03-14)

### Bug Fixes
Expand Down
34 changes: 24 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,13 @@ GLOBAL FLAGS
DESCRIPTION
Quickly deploy a validated deployment to an org.
Before you run this command, first create a validated deployment with the "sf project deploy pipeline validate"
command, which returns a job ID. Validated deployments haven't been deployed to the org yet; you deploy them with this
command. Either pass the job ID to this command or use the --use-most-recent flag to use the job ID of the most
recently validated deployment. For the quick deploy to succeed, the associated validated deployment must also have
succeeded.
The first time you run any "project deploy pipeline" command, be sure to authorize the org in which DevOps Center is
installed. The easiest way to authorize an org is with the "org login web" command.
Before you run this command, create a validated deployment with the "project deploy pipeline validate" command, which
returns a job ID. Validated deployments haven't been deployed to the org yet; you deploy them with this command.
Either pass the job ID to this command or use the --use-most-recent flag to use the job ID of the most recently
validated deployment. For the quick deploy to succeed, the associated validated deployment must also have succeeded.
Executing this quick deploy command takes less time than a standard deploy because it skips running Apex tests. These
tests were previously run as part of the validation. Validating first and then running a quick deploy is useful if the
Expand Down Expand Up @@ -131,7 +133,7 @@ FLAG DESCRIPTIONS
"sf project deploy pipeline report".
```

_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)_
_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)_

## `sf project deploy pipeline report`

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

_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)_
_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)_

## `sf project deploy pipeline resume`

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

_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)_
_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)_

## `sf project deploy pipeline start`

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

_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)_
_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)_

## `sf project deploy pipeline validate`

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

_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)_
_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)_

<!-- commandsstop -->

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@salesforce/plugin-devops-center",
"description": "The DevOps Center CLI plugin provides a command-line alternative to performing equivalent actions in the DevOps Center graphical UI",
"version": "1.2.9",
"version": "1.2.10",
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/cli/issues",
"dependencies": {
Expand Down

0 comments on commit ee8e878

Please sign in to comment.