Skip to content

Commit

Permalink
chore(release): 1.2.0 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
SF-CLI-BOT committed Mar 18, 2022
1 parent 07d80fc commit 3cb9a6c
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

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.

## [1.2.0](https://github.com/salesforcecli/plugin-env/compare/v1.1.1...v1.2.0) (2022-03-18)

### Features

- commands to delete scratch orgs and sandboxes ([27e460d](https://github.com/salesforcecli/plugin-env/commit/27e460d3d7710a404d11172b11dff85042774a95))

### Bug Fixes

- add caret to @salesforce/core and fix tests ([#251](https://github.com/salesforcecli/plugin-env/issues/251)) ([07d80fc](https://github.com/salesforcecli/plugin-env/commit/07d80fcbf8ef8805336843205ae2c3df6981b7bc))

### [1.1.1](https://github.com/salesforcecli/plugin-env/compare/v1.1.0...v1.1.1) (2022-02-16)

### Bug Fixes
Expand Down
72 changes: 72 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,82 @@ sfdx plugins

<!-- commands -->

- [`sf env delete sandbox`](#sf-env-delete-sandbox)
- [`sf env delete scratch`](#sf-env-delete-scratch)
- [`sf env display`](#sf-env-display)
- [`sf env list`](#sf-env-list)
- [`sf env open`](#sf-env-open)

## `sf env delete sandbox`

Delete a sandbox.

```
USAGE
$ sf env delete sandbox [--json] [-e <value>] [-p]
FLAGS
-e, --target-org=<value> Environment alias or login user.
-p, --no-prompt Do not prompt the user to confirm the deletion
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Delete a sandbox.
Specify an environment with either the username you used when you logged into the environment with "sf login", or the
alias you gave the environment when you created it. Run "sf env list" to view all your environments and their aliases.
EXAMPLES
Delete a sandbox with alias my-sandbox:
$ sf env delete sandbox --target-org=my-sandbox
Specify a username instead of an alias:
$ sf env delete sandbox [email protected]
Delete the org without prompting to confirm :
$ sf env delete sandbox --target-org=my-sandbox --no-prompt
```

## `sf env delete scratch`

Delete a scratch org.

```
USAGE
$ sf env delete scratch [--json] [-e <value>] [-p]
FLAGS
-e, --target-org=<value> Org alias or login user.
-p, --no-prompt Do not prompt the user to confirm the deletion
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Delete a scratch org.
Specify an environment with either the username you used when you logged into the environment with "sf login", or the
alias you gave the environment when you created it. Run "sf env list" to view all your environments and their aliases.
EXAMPLES
Delete a scratch org with alias my-scratch-org:
$ sf env delete scratch --target-org=my-scratch-org
Specify a username instead of an alias:
$ sf env delete scratch [email protected]
Delete the org without prompting to confirm :
$ sf env delete scratch --target-org=my-scratch-org --no-prompt
```

## `sf env display`

Display details about an environment.
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-env",
"description": "An sf plugin for logging into and interacting with different Salesforce environments.",
"version": "1.1.1",
"version": "1.2.0",
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/cli/issues",
"dependencies": {
Expand Down

0 comments on commit 3cb9a6c

Please sign in to comment.