Skip to content

Commit e0f81d2

Browse files
Release v6.0.1
1 parent 5f991ee commit e0f81d2

21 files changed

+99
-62
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ $ npm install -g @devcycle/cli
160160
$ dvc COMMAND
161161
running command...
162162
$ dvc (--version)
163-
@devcycle/cli/6.0.0 linux-x64 node-v22.18.0
163+
@devcycle/cli/6.0.1 linux-x64 node-v22.18.0
164164
$ dvc --help [COMMAND]
165165
USAGE
166166
$ dvc COMMAND

docs/alias.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ EXAMPLES
3939
$ dvc alias add --alias=VARIABLE_ALIAS --variable=variable-key
4040
```
4141

42-
_See code: [src/commands/alias/add.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/alias/add.ts)_
42+
_See code: [src/commands/alias/add.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/alias/add.ts)_

docs/cleanup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ EXAMPLES
5656
$ dvc cleanup some-var --value "My Custom Name" --type String
5757
```
5858

59-
_See code: [src/commands/cleanup/index.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/cleanup/index.ts)_
59+
_See code: [src/commands/cleanup/index.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/cleanup/index.ts)_

docs/diff.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ EXAMPLES
5555
$ dvc diff --match-pattern js="dvcClient\.variable\(\s*["']([^"']*)["']"
5656
```
5757

58-
_See code: [src/commands/diff/index.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/diff/index.ts)_
58+
_See code: [src/commands/diff/index.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/diff/index.ts)_

docs/environments.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Create a new Environment for an existing Feature.
55

66
* [`dvc environments create`](#dvc-environments-create)
7-
* [`dvc environments get`](#dvc-environments-get)
7+
* [`dvc environments get [KEYS]`](#dvc-environments-get-keys)
88
* [`dvc environments list`](#dvc-environments-list)
99
* [`dvc environments ls`](#dvc-environments-ls)
1010
* [`dvc environments update [KEY]`](#dvc-environments-update-key)
@@ -41,16 +41,19 @@ DESCRIPTION
4141
Create a new Environment for an existing Feature.
4242
```
4343

44-
_See code: [src/commands/environments/create.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/environments/create.ts)_
44+
_See code: [src/commands/environments/create.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/environments/create.ts)_
4545

46-
## `dvc environments get`
46+
## `dvc environments get [KEYS]`
4747

4848
Retrieve Environments from the management API
4949

5050
```
5151
USAGE
52-
$ dvc environments get [--config-path <value>] [--auth-path <value>] [--repo-config-path <value>] [--client-id
53-
<value>] [--client-secret <value>] [--project <value>] [--no-api] [--headless] [--keys <value>]
52+
$ dvc environments get [KEYS] [--config-path <value>] [--auth-path <value>] [--repo-config-path <value>]
53+
[--client-id <value>] [--client-secret <value>] [--project <value>] [--no-api] [--headless] [--keys <value>]
54+
55+
ARGUMENTS
56+
KEYS Environment keys to fetch (space-separated or comma-separated)
5457
5558
FLAGS
5659
--keys=<value> Comma-separated list of environment keys to fetch details for
@@ -72,10 +75,16 @@ DESCRIPTION
7275
EXAMPLES
7376
$ dvc environments get
7477
78+
$ dvc environments get environment-one
79+
80+
$ dvc environments get environment-one environment-two
81+
82+
$ dvc environments get environment-one,environment-two
83+
7584
$ dvc environments get --keys=environment-one,environment-two
7685
```
7786

78-
_See code: [src/commands/environments/get.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/environments/get.ts)_
87+
_See code: [src/commands/environments/get.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/environments/get.ts)_
7988

8089
## `dvc environments list`
8190

@@ -99,7 +108,7 @@ ALIASES
99108
$ dvc environments ls
100109
```
101110

102-
_See code: [src/commands/environments/list.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/environments/list.ts)_
111+
_See code: [src/commands/environments/list.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/environments/list.ts)_
103112

104113
## `dvc environments ls`
105114

@@ -155,4 +164,4 @@ DESCRIPTION
155164
Update a Environment.
156165
```
157166

158-
_See code: [src/commands/environments/update.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/environments/update.ts)_
167+
_See code: [src/commands/environments/update.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/environments/update.ts)_

docs/features.md

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Create, view, or modify Features with the Management API.
55

66
* [`dvc features create`](#dvc-features-create)
77
* [`dvc features delete [FEATURE]`](#dvc-features-delete-feature)
8-
* [`dvc features get`](#dvc-features-get)
8+
* [`dvc features get [KEYS]`](#dvc-features-get-keys)
99
* [`dvc features list`](#dvc-features-list)
1010
* [`dvc features ls`](#dvc-features-ls)
1111
* [`dvc features update [KEY]`](#dvc-features-update-key)
@@ -43,7 +43,7 @@ DESCRIPTION
4343
Create a new Feature.
4444
```
4545

46-
_See code: [src/commands/features/create.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/features/create.ts)_
46+
_See code: [src/commands/features/create.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/features/create.ts)_
4747

4848
## `dvc features delete [FEATURE]`
4949

@@ -72,17 +72,20 @@ DESCRIPTION
7272
Delete a feature
7373
```
7474

75-
_See code: [src/commands/features/delete.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/features/delete.ts)_
75+
_See code: [src/commands/features/delete.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/features/delete.ts)_
7676

77-
## `dvc features get`
77+
## `dvc features get [KEYS]`
7878

7979
Retrieve Features from the Management API
8080

8181
```
8282
USAGE
83-
$ dvc features get [--config-path <value>] [--auth-path <value>] [--repo-config-path <value>] [--client-id
84-
<value>] [--client-secret <value>] [--project <value>] [--no-api] [--headless] [--keys <value>] [--search <value>]
85-
[--page <value>] [--per-page <value>]
83+
$ dvc features get [KEYS] [--config-path <value>] [--auth-path <value>] [--repo-config-path <value>]
84+
[--client-id <value>] [--client-secret <value>] [--project <value>] [--no-api] [--headless] [--keys <value>]
85+
[--search <value>] [--page <value>] [--per-page <value>]
86+
87+
ARGUMENTS
88+
KEYS Feature keys to fetch (space-separated or comma-separated)
8689
8790
FLAGS
8891
--keys=<value> Comma-separated list of feature keys to fetch details for
@@ -107,10 +110,16 @@ DESCRIPTION
107110
EXAMPLES
108111
$ dvc features get
109112
113+
$ dvc features get feature-one
114+
115+
$ dvc features get feature-one feature-two
116+
117+
$ dvc features get feature-one,feature-two
118+
110119
$ dvc features get --keys=feature-one,feature-two
111120
```
112121

113-
_See code: [src/commands/features/get.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/features/get.ts)_
122+
_See code: [src/commands/features/get.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/features/get.ts)_
114123

115124
## `dvc features list`
116125

@@ -145,7 +154,7 @@ ALIASES
145154
$ dvc features ls
146155
```
147156

148-
_See code: [src/commands/features/list.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/features/list.ts)_
157+
_See code: [src/commands/features/list.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/features/list.ts)_
149158

150159
## `dvc features ls`
151160

@@ -213,4 +222,4 @@ DESCRIPTION
213222
Update a Feature.
214223
```
215224

216-
_See code: [src/commands/features/update.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/features/update.ts)_
225+
_See code: [src/commands/features/update.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/features/update.ts)_

docs/generate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ DESCRIPTION
4343
Generate Variable Types from the management API
4444
```
4545

46-
_See code: [src/commands/generate/types.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/generate/types.ts)_
46+
_See code: [src/commands/generate/types.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/generate/types.ts)_

docs/identity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ DESCRIPTION
3030
Print your DevCycle Identity.
3131
```
3232

33-
_See code: [src/commands/identity/get.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/identity/get.ts)_
33+
_See code: [src/commands/identity/get.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/identity/get.ts)_
3434

3535
## `dvc identity update`
3636

@@ -59,4 +59,4 @@ DESCRIPTION
5959
Update your DevCycle Identity.
6060
```
6161

62-
_See code: [src/commands/identity/update.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/identity/update.ts)_
62+
_See code: [src/commands/identity/update.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/identity/update.ts)_

docs/keys.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ EXAMPLES
4040
$ dvc keys get --keys=environment-one,environment-two
4141
```
4242

43-
_See code: [src/commands/keys/get.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/keys/get.ts)_
43+
_See code: [src/commands/keys/get.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/keys/get.ts)_

docs/login.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ EXAMPLES
3636
$ dvc login again
3737
```
3838

39-
_See code: [src/commands/login/again.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/login/again.ts)_
39+
_See code: [src/commands/login/again.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/login/again.ts)_
4040

4141
## `dvc login sso`
4242

@@ -65,4 +65,4 @@ DESCRIPTION
6565
Log in through the DevCycle Universal Login. This will open a browser window.
6666
```
6767

68-
_See code: [src/commands/login/sso.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.0/src/commands/login/sso.ts)_
68+
_See code: [src/commands/login/sso.ts](https://github.com/DevCycleHQ/cli/blob/v6.0.1/src/commands/login/sso.ts)_

0 commit comments

Comments
 (0)