Skip to content

Commit 85ff1cf

Browse files
author
SF-CLI-BOT
committed
chore(release): 0.0.23 [ci skip]
1 parent df49943 commit 85ff1cf

File tree

3 files changed

+29
-15
lines changed

3 files changed

+29
-15
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [0.0.23](https://github.com/salesforcecli/plugin-deploy-retrieve/compare/v0.0.22...v0.0.23) (2021-09-16)
6+
7+
8+
### Bug Fixes
9+
10+
* bump to latest sf-plugins-core ([#138](https://github.com/salesforcecli/plugin-deploy-retrieve/issues/138)) ([df49943](https://github.com/salesforcecli/plugin-deploy-retrieve/commit/df4994302baf28518317ec0763115423fe74145b))
11+
512
### [0.0.22](https://github.com/salesforcecli/plugin-deploy-retrieve/compare/v0.0.21...v0.0.22) (2021-09-15)
613

714

README.md

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -69,34 +69,41 @@ This command must be run from within a project.
6969

7070
```
7171
USAGE
72-
$ sf deploy
72+
$ sf deploy [--interactive]
7373
74-
OPTIONS
75-
--interactive
74+
FLAGS
75+
--interactive Force the CLI to prompt for all deployment inputs.
7676
7777
DESCRIPTION
78-
The command first analyzes your project, your active or logged-into environments, and local defaults to determine what
79-
to deploy and where to deploy it. The command then prompts you for information about this particular deployment and
78+
Deploy a project interactively to any Salesforce environment.
79+
80+
This command must be run from within a project.
81+
82+
The command first analyzes your project, your active or logged-into environments, and local defaults to determine what
83+
to deploy and where to deploy it. The command then prompts you for information about this particular deployment and
8084
provides intelligent choices based on its analysis.
8185
82-
For example, if your local project contains a source directory with metadata files in source format, the command asks
83-
if you want to deploy that Salesforce app to an org. The command lists your connected orgs and asks which one you want
84-
to deploy to. The list of orgs starts with scratch orgs, ordered by expiration date with the most recently created one
85-
first, and then Dev Hub and production orgs ordered by name. If the command finds Apex tests, it asks if you want to
86+
For example, if your local project contains a source directory with metadata files in source format, the command asks
87+
if you want to deploy that Salesforce app to an org. The command lists your connected orgs and asks which one you want
88+
to deploy to. The list of orgs starts with scratch orgs, ordered by expiration date with the most recently created one
89+
first, and then Dev Hub and production orgs ordered by name. If the command finds Apex tests, it asks if you want to
8690
run them and at which level.
8791
88-
The command stores your responses in the "deploy-options.json" file in your local project directory and uses them as
92+
The command stores your responses in the "deploy-options.json" file in your local project directory and uses them as
8993
defaults when you rerun the command. Specify --interactive to force the command to reprompt.
9094
91-
Use this command for quick and simple deploys. For more complicated deployments, use the environment-specific
95+
Use this command for quick and simple deploys. For more complicated deployments, use the environment-specific
9296
commands, such as "sf deploy metadata", that provide additional flags.
9397
9498
EXAMPLES
9599
Deploy a project and use stored values from a previous command run:
96-
sf deploy
100+
101+
$ sf deploy
102+
97103
Reprompt for all deployment inputs:
98-
sf deploy --interactive
104+
105+
$ sf deploy --interactive
99106
```
100107

101-
_See code: [src/commands/deploy.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/v0.0.21/src/commands/deploy.ts)_
108+
_See code: [src/commands/deploy.ts](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/v0.0.22/src/commands/deploy.ts)_
102109
<!-- commandsstop -->

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-deploy-retrieve",
33
"description": "deploy and retrieve commands for sf",
4-
"version": "0.0.22",
4+
"version": "0.0.23",
55
"author": "Salesforce",
66
"bugs": "https://github.com/salesforcecli/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)