Skip to content

Commit adf0555

Browse files
Release v5.5.0
1 parent 2f9f660 commit adf0555

File tree

9 files changed

+56
-10
lines changed

9 files changed

+56
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ $ npm install -g @devcycle/cli
100100
$ dvc COMMAND
101101
running command...
102102
$ dvc (--version)
103-
@devcycle/cli/5.4.3 linux-x64 node-v18.16.0
103+
@devcycle/cli/5.5.0 linux-x64 node-v18.16.0
104104
$ dvc --help [COMMAND]
105105
USAGE
106106
$ dvc COMMAND

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: [dist/commands/cleanup/index.ts](https://github.com/DevCycleHQ/cli/blob/v5.4.3/dist/commands/cleanup/index.ts)_
59+
_See code: [dist/commands/cleanup/index.ts](https://github.com/DevCycleHQ/cli/blob/v5.5.0/dist/commands/cleanup/index.ts)_

docs/diff.md

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

54-
_See code: [dist/commands/diff/index.ts](https://github.com/DevCycleHQ/cli/blob/v5.4.3/dist/commands/diff/index.ts)_
54+
_See code: [dist/commands/diff/index.ts](https://github.com/DevCycleHQ/cli/blob/v5.5.0/dist/commands/diff/index.ts)_

docs/features.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,14 @@ Retrieve Features from the Management API
7676
```
7777
USAGE
7878
$ dvc features get [--config-path <value>] [--auth-path <value>] [--repo-config-path <value>] [--client-id
79-
<value>] [--client-secret <value>] [--project <value>] [--no-api] [--headless] [--keys <value>]
79+
<value>] [--client-secret <value>] [--project <value>] [--no-api] [--headless] [--keys <value>] [--search <value>]
80+
[--page <value>] [--per-page <value>]
8081
8182
FLAGS
82-
--keys=<value> Comma-separated list of feature keys to fetch details for
83+
--keys=<value> Comma-separated list of feature keys to fetch details for
84+
--page=<value> Page number to fetch
85+
--per-page=<value> Number of features to fetch per page
86+
--search=<value> Filter features by search query
8387
8488
GLOBAL FLAGS
8589
--auth-path=<value> Override the default location to look for an auth.yml file
@@ -108,7 +112,13 @@ View all features in a project
108112
```
109113
USAGE
110114
$ dvc features list [--config-path <value>] [--auth-path <value>] [--repo-config-path <value>] [--client-id
111-
<value>] [--client-secret <value>] [--project <value>] [--no-api] [--headless]
115+
<value>] [--client-secret <value>] [--project <value>] [--no-api] [--headless] [--search <value>] [--page <value>]
116+
[--per-page <value>]
117+
118+
FLAGS
119+
--page=<value> Page number to fetch
120+
--per-page=<value> Number of features to fetch per page
121+
--search=<value> Filter features by search query
112122
113123
GLOBAL FLAGS
114124
--auth-path=<value> Override the default location to look for an auth.yml file

docs/logout.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ DESCRIPTION
2929
Discards any auth configuration that has been stored in the auth configuration file.
3030
```
3131

32-
_See code: [dist/commands/logout/index.ts](https://github.com/DevCycleHQ/cli/blob/v5.4.3/dist/commands/logout/index.ts)_
32+
_See code: [dist/commands/logout/index.ts](https://github.com/DevCycleHQ/cli/blob/v5.5.0/dist/commands/logout/index.ts)_

docs/status.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ DESCRIPTION
2929
Print CLI version information, configuration file locations and auth status.
3030
```
3131

32-
_See code: [dist/commands/status/index.ts](https://github.com/DevCycleHQ/cli/blob/v5.4.3/dist/commands/status/index.ts)_
32+
_See code: [dist/commands/status/index.ts](https://github.com/DevCycleHQ/cli/blob/v5.5.0/dist/commands/status/index.ts)_

docs/usages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ EXAMPLES
5252
$ dvc usages --match-pattern js="dvcClient\.variable\(\s*["']([^"']*)["']"
5353
```
5454

55-
_See code: [dist/commands/usages/index.ts](https://github.com/DevCycleHQ/cli/blob/v5.4.3/dist/commands/usages/index.ts)_
55+
_See code: [dist/commands/usages/index.ts](https://github.com/DevCycleHQ/cli/blob/v5.5.0/dist/commands/usages/index.ts)_

oclif.manifest.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1563,6 +1563,24 @@
15631563
"type": "option",
15641564
"description": "Comma-separated list of feature keys to fetch details for",
15651565
"multiple": false
1566+
},
1567+
"search": {
1568+
"name": "search",
1569+
"type": "option",
1570+
"description": "Filter features by search query",
1571+
"multiple": false
1572+
},
1573+
"page": {
1574+
"name": "page",
1575+
"type": "option",
1576+
"description": "Page number to fetch",
1577+
"multiple": false
1578+
},
1579+
"per-page": {
1580+
"name": "per-page",
1581+
"type": "option",
1582+
"description": "Number of features to fetch per page",
1583+
"multiple": false
15661584
}
15671585
},
15681586
"args": {}
@@ -1648,6 +1666,24 @@
16481666
"cli",
16491667
"vscode_extension"
16501668
]
1669+
},
1670+
"search": {
1671+
"name": "search",
1672+
"type": "option",
1673+
"description": "Filter features by search query",
1674+
"multiple": false
1675+
},
1676+
"page": {
1677+
"name": "page",
1678+
"type": "option",
1679+
"description": "Page number to fetch",
1680+
"multiple": false
1681+
},
1682+
"per-page": {
1683+
"name": "per-page",
1684+
"type": "option",
1685+
"description": "Number of features to fetch per page",
1686+
"multiple": false
16511687
}
16521688
},
16531689
"args": {}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devcycle/cli",
3-
"version": "5.4.3",
3+
"version": "5.5.0",
44
"description": "DevCycle CLI Tool",
55
"author": "support@devcycle.com",
66
"bin": {

0 commit comments

Comments
 (0)