Skip to content

Commit 8376bbc

Browse files
author
SF-CLI-BOT
committed
chore(release): 0.0.14 [ci skip]
1 parent 7b490ea commit 8376bbc

File tree

3 files changed

+29
-23
lines changed

3 files changed

+29
-23
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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.14](https://github.com/salesforcecli/plugin-env/compare/v0.0.13...v0.0.14) (2021-07-27)
6+
57
### [0.0.13](https://github.com/salesforcecli/plugin-env/compare/v0.0.12...v0.0.13) (2021-07-22)
68

79

README.md

Lines changed: 26 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ EXAMPLES
107107

108108
## `sf env list`
109109

110-
By default, the command displays only active environments. For orgs, active means unexpired scratch orgs and orgs you’re currently logged into. For compute environments, active means the environments connected to orgs you’re currently logged into. Use the --all flag to list expired or deleted scratch orgs and compute environments that aren’t connected to logged-in orgs. Warning: the latter list could be very long.
110+
The command displays only active environments. For orgs, active means unexpired scratch orgs and orgs you’re currently logged into.
111111

112112
```
113113
USAGE
@@ -116,55 +116,59 @@ USAGE
116116
117117
FLAGS
118118
-x, --extended Show extra columns.
119-
--columns=<value>... Only show provided columns.
119+
--columns=<value>... List of columns to display.
120120
--csv Output in csv format [alias: --output=csv]
121121
--filter=<value> Filter property by partial string matching.
122122
--no-header Hide table header from output.
123-
--no-truncate Do not truncate output to fit screen.
123+
--no-truncate Don't truncate output to fit screen.
124124
125-
--output=<option> Output in a more machine friendly format.
125+
--output=<option> Format in which to display the output.
126126
<options: csv|json|yaml>
127127
128-
--sort=<value> Property to sort by (prepend '-' for descending).
128+
--sort=<value> Column to sort by (prepend '-' for descending).
129129
130130
GLOBAL FLAGS
131131
--json format output as json
132132
133133
DESCRIPTION
134134
List the environments you’ve created or logged into.
135135
136-
By default, the command displays only active environments. For orgs, active means unexpired scratch orgs and orgs
137-
you’re currently logged into. For compute environments, active means the environments connected to orgs you’re
138-
currently logged into. Use the --all flag to list expired or deleted scratch orgs and compute environments that aren’t
139-
connected to logged-in orgs. Warning: the latter list could be very long.
136+
The command displays only active environments. For orgs, active means unexpired scratch orgs and orgs you’re currently
137+
logged into.
140138
141139
Output is displayed in multiple tables, one for each environment type. For example, the Salesforce Orgs table lists
142-
the non-scratch orgs you’re logged into, such as sandboxes, Dev Hubs, production orgs, and so on. Scratch orgs and
143-
compute environments get their own tables.
140+
the non-scratch orgs you’re logged into, such as sandboxes, Dev Hubs, production orgs, and so on. Scratch orgs get
141+
their own table.
144142
145143
For non-scratch orgs, the Username column refers to the user you logged into the org with. For scratch orgs it refers
146-
to the username that was generated for you when you created the scratch org. The first column indicates the default
147-
environment for each type.
144+
to the username that was generated for you when you created the scratch org. The table also displays the default
145+
environment for each type, the instance URL, and how you authorized (logged into) the org, either using a web browser
146+
or JWT.
147+
148+
Use the table-manipulation flags, such as --filter and --sort, to change how the data is displayed.
148149
149150
Run "sf env display" to view details about a specific environment.
150151
151152
EXAMPLES
152-
List all environments:
153-
154-
$ sf env list --all
153+
List all active environments:
155154
156-
Filter the output to list only connected orgs. Rows from only the Salesforce Orgs table are displayed because it’s
157-
the only table with a "Status" column.
155+
$ sf env list
158156
159-
$ sf env list --filter "Status=Connected"
157+
Filter the output to list only orgs you authorized using a web browser; "OAuth Method" is the name of a column:
160158
161-
List only scratch orgs that expire after May 30, 2021:
162-
163-
$ sf env list --filter "Expiration>2021-05-30"
159+
$ sf env list --filter "OAuth Method=web"
164160
165161
Display only the Alias column and sort the aliases in descending order:
166162
167163
$ sf env list --sort "-Alias" --columns "Alias"
164+
165+
Don't truncate the displayed output:
166+
167+
$ sf env list --no-truncate
168+
169+
Display only the table data, not the headers, in comma-separated value (csv) format:
170+
171+
$ sf env list --csv --no-header
168172
```
169173

170174
## `sf env open`

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-env",
33
"description": "An sf plugin for logging into and interacting with different Salesforce environments.",
4-
"version": "0.0.13",
4+
"version": "0.0.14",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)