Skip to content

Commit e06f663

Browse files
author
AutoCloud Deploy Bot
committed
chore(release): 0.17.0
# [0.17.0](https://gitlab.com/auto-cloud/cloudgraph/cli/compare/0.16.12...0.17.0) (2022-01-24) ### Bug Fixes * Added missing aliases ([a9fbb03](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/a9fbb036a42624ed3fbf64c14845455edd840d74)) * Removed unused scripts from the package.json ([680f9dc](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/680f9dc208580c3dae3fe52400a0d30e6019a953)) * Renamed plugin commands ([0b92db8](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/0b92db82438e498923a32a75a49fe0142fa26833)) ### Features * Created operation base command ([8ee9093](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/8ee9093cd960b665e1fed15df69349d222e231c7)) * Improved error messages with plugin commands ([3747df9](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/3747df9ef59912f86a8217c56dedb3140938ce79)) * Migrated add command ([4d83128](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/4d83128b5074c4ab60640df4a38b7bcdb58ab580)) * Migrated install command ([7890340](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/7890340de81ba23f641f15ed5cad561d999490fa)) * Migrated list command ([0ced854](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/0ced85459dfdc5fdd80713af7d3b50154ad5a487)) * Migrated remove command ([8a80b70](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/8a80b70aca6aab1b3e3f1068d4475ba6f3693292)) * Migrated update command ([1e4eec4](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/1e4eec4ca721491f72402b3f8ccce66d7306c782)) * Reverted changes to keep upgrade all command ([cc95962](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/cc95962207a33cefdebaaf99c78acee0077d3a28))
1 parent 61c92a0 commit e06f663

3 files changed

Lines changed: 41 additions & 20 deletions

File tree

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# [0.17.0](https://gitlab.com/auto-cloud/cloudgraph/cli/compare/0.16.12...0.17.0) (2022-01-24)
2+
3+
4+
### Bug Fixes
5+
6+
* Added missing aliases ([a9fbb03](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/a9fbb036a42624ed3fbf64c14845455edd840d74))
7+
* Removed unused scripts from the package.json ([680f9dc](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/680f9dc208580c3dae3fe52400a0d30e6019a953))
8+
* Renamed plugin commands ([0b92db8](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/0b92db82438e498923a32a75a49fe0142fa26833))
9+
10+
11+
### Features
12+
13+
* Created operation base command ([8ee9093](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/8ee9093cd960b665e1fed15df69349d222e231c7))
14+
* Improved error messages with plugin commands ([3747df9](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/3747df9ef59912f86a8217c56dedb3140938ce79))
15+
* Migrated add command ([4d83128](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/4d83128b5074c4ab60640df4a38b7bcdb58ab580))
16+
* Migrated install command ([7890340](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/7890340de81ba23f641f15ed5cad561d999490fa))
17+
* Migrated list command ([0ced854](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/0ced85459dfdc5fdd80713af7d3b50154ad5a487))
18+
* Migrated remove command ([8a80b70](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/8a80b70aca6aab1b3e3f1068d4475ba6f3693292))
19+
* Migrated update command ([1e4eec4](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/1e4eec4ca721491f72402b3f8ccce66d7306c782))
20+
* Reverted changes to keep upgrade all command ([cc95962](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/cc95962207a33cefdebaaf99c78acee0077d3a28))
21+
122
## [0.16.12](https://gitlab.com/auto-cloud/cloudgraph/cli/compare/0.16.11...0.16.12) (2022-01-18)
223

324

README.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1385,7 +1385,7 @@ EXAMPLES
13851385
$ cg init aws -r [Specify resources to crawl]
13861386
```
13871387

1388-
_See code: [src/commands/init.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/init.ts)_
1388+
_See code: [src/commands/init.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/init.ts)_
13891389

13901390
## `cg launch [PROVIDER]`
13911391

@@ -1411,7 +1411,7 @@ EXAMPLE
14111411
$ cg launch
14121412
```
14131413

1414-
_See code: [src/commands/launch.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/launch.ts)_
1414+
_See code: [src/commands/launch.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/launch.ts)_
14151415

14161416
## `cg load [PROVIDER]`
14171417

@@ -1438,7 +1438,7 @@ EXAMPLES
14381438
$ cg load aws [Load data for AWS]
14391439
```
14401440

1441-
_See code: [src/commands/load.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/load.ts)_
1441+
_See code: [src/commands/load.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/load.ts)_
14421442

14431443
## `cg policy [PROVIDER]`
14441444

@@ -1461,7 +1461,7 @@ OPTIONS
14611461
--use-roles Set to true to use roleARNs instead of profiles for AWS credentials
14621462
```
14631463

1464-
_See code: [src/commands/policy/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/policy/index.ts)_
1464+
_See code: [src/commands/policy/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/policy/index.ts)_
14651465

14661466
## `cg policy:add [PROVIDER]`
14671467

@@ -1492,7 +1492,7 @@ EXAMPLES
14921492
$ cg policy add aws-cis-1.2.0@0.12.0
14931493
```
14941494

1495-
_See code: [src/commands/policy/add.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/policy/add.ts)_
1495+
_See code: [src/commands/policy/add.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/policy/add.ts)_
14961496

14971497
## `cg policy:install [PROVIDER]`
14981498

@@ -1522,7 +1522,7 @@ EXAMPLE
15221522
$ cg policy install
15231523
```
15241524

1525-
_See code: [src/commands/policy/install.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/policy/install.ts)_
1525+
_See code: [src/commands/policy/install.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/policy/install.ts)_
15261526

15271527
## `cg policy:list [PROVIDER]`
15281528

@@ -1555,7 +1555,7 @@ EXAMPLES
15551555
$ cg policy list aws
15561556
```
15571557

1558-
_See code: [src/commands/policy/list.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/policy/list.ts)_
1558+
_See code: [src/commands/policy/list.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/policy/list.ts)_
15591559

15601560
## `cg policy:remove [PROVIDER]`
15611561

@@ -1592,7 +1592,7 @@ EXAMPLES
15921592
$ cg policy delete aws-cis-1.2.0 --no-save
15931593
```
15941594

1595-
_See code: [src/commands/policy/remove.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/policy/remove.ts)_
1595+
_See code: [src/commands/policy/remove.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/policy/remove.ts)_
15961596

15971597
## `cg policy:update [PROVIDER]`
15981598

@@ -1621,7 +1621,7 @@ EXAMPLES
16211621
$ cg policy update aws-cis-1.2.0@0.12.0
16221622
```
16231623

1624-
_See code: [src/commands/policy/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/policy/update.ts)_
1624+
_See code: [src/commands/policy/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/policy/update.ts)_
16251625

16261626
## `cg provider [PROVIDER]`
16271627

@@ -1644,7 +1644,7 @@ OPTIONS
16441644
--use-roles Set to true to use roleARNs instead of profiles for AWS credentials
16451645
```
16461646

1647-
_See code: [src/commands/provider/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/provider/index.ts)_
1647+
_See code: [src/commands/provider/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/provider/index.ts)_
16481648

16491649
## `cg provider:add [PROVIDER]`
16501650

@@ -1675,7 +1675,7 @@ EXAMPLES
16751675
$ cg provider add aws@0.12.0
16761676
```
16771677

1678-
_See code: [src/commands/provider/add.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/provider/add.ts)_
1678+
_See code: [src/commands/provider/add.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/provider/add.ts)_
16791679

16801680
## `cg provider:install [PROVIDER]`
16811681

@@ -1705,7 +1705,7 @@ EXAMPLE
17051705
$ cg provider install
17061706
```
17071707

1708-
_See code: [src/commands/provider/install.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/provider/install.ts)_
1708+
_See code: [src/commands/provider/install.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/provider/install.ts)_
17091709

17101710
## `cg provider:list [PROVIDER]`
17111711

@@ -1738,7 +1738,7 @@ EXAMPLES
17381738
$ cg provider list aws
17391739
```
17401740

1741-
_See code: [src/commands/provider/list.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/provider/list.ts)_
1741+
_See code: [src/commands/provider/list.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/provider/list.ts)_
17421742

17431743
## `cg provider:remove [PROVIDER]`
17441744

@@ -1775,7 +1775,7 @@ EXAMPLES
17751775
$ cg provider delete aws --no-save
17761776
```
17771777

1778-
_See code: [src/commands/provider/remove.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/provider/remove.ts)_
1778+
_See code: [src/commands/provider/remove.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/provider/remove.ts)_
17791779

17801780
## `cg provider:update [PROVIDER]`
17811781

@@ -1804,7 +1804,7 @@ EXAMPLES
18041804
$ cg provider update aws@0.12.0
18051805
```
18061806

1807-
_See code: [src/commands/provider/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/provider/update.ts)_
1807+
_See code: [src/commands/provider/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/provider/update.ts)_
18081808

18091809
## `cg scan [PROVIDER]`
18101810

@@ -1833,7 +1833,7 @@ EXAMPLES
18331833
$ cg scan aws --no-serve [Do not start the query engine]
18341834
```
18351835

1836-
_See code: [src/commands/scan.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/scan.ts)_
1836+
_See code: [src/commands/scan.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/scan.ts)_
18371837

18381838
## `cg serve [PROVIDER]`
18391839

@@ -1859,7 +1859,7 @@ EXAMPLE
18591859
$ cg serve
18601860
```
18611861

1862-
_See code: [src/commands/serve.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/serve.ts)_
1862+
_See code: [src/commands/serve.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/serve.ts)_
18631863

18641864
## `cg teardown [PROVIDER]`
18651865

@@ -1877,7 +1877,7 @@ EXAMPLES
18771877
$ cg teardown --delete-image
18781878
```
18791879

1880-
_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/teardown.ts)_
1880+
_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/teardown.ts)_
18811881

18821882
## `cg update [PROVIDER]`
18831883

@@ -1907,5 +1907,5 @@ EXAMPLE
19071907
$ cg update
19081908
```
19091909

1910-
_See code: [src/commands/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/update.ts)_
1910+
_See code: [src/commands/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.17.0/src/commands/update.ts)_
19111911
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@cloudgraph/cli",
33
"description": "Scan your cloud infrastructure data and query it with GraphQL",
4-
"version": "0.16.12",
4+
"version": "0.17.0",
55
"author": "AutoCloud",
66
"license": "MPL-2.0",
77
"publishConfig": {

0 commit comments

Comments
 (0)