Skip to content

Commit aa7660e

Browse files
author
AutoCloud Deploy Bot
committed
chore(release): 0.20.0
# [0.20.0](https://gitlab.com/auto-cloud/cloudgraph/cli/compare/0.19.0...0.20.0) (2022-02-04) ### Features * Refactored Plugins execution after inserted scanned data ([db0c731](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/db0c731451762b0e4defcf5d549abe409fb598f6)) * Updated policy commands to support new plugin structure ([606609d](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/606609d1a8678bf198a807e34b8f232856170fc6))
1 parent 05be30a commit aa7660e

3 files changed

Lines changed: 28 additions & 20 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# [0.20.0](https://gitlab.com/auto-cloud/cloudgraph/cli/compare/0.19.0...0.20.0) (2022-02-04)
2+
3+
4+
### Features
5+
6+
* Refactored Plugins execution after inserted scanned data ([db0c731](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/db0c731451762b0e4defcf5d549abe409fb598f6))
7+
* Updated policy commands to support new plugin structure ([606609d](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/606609d1a8678bf198a807e34b8f232856170fc6))
8+
19
# [0.19.0](https://gitlab.com/auto-cloud/cloudgraph/cli/compare/0.18.2...0.19.0) (2022-02-03)
210

311

README.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1406,7 +1406,7 @@ EXAMPLES
14061406
$ cg init aws -r [Specify resources to crawl]
14071407
```
14081408

1409-
_See code: [src/commands/init.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/init.ts)_
1409+
_See code: [src/commands/init.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/init.ts)_
14101410

14111411
## `cg launch [PROVIDER]`
14121412

@@ -1438,7 +1438,7 @@ EXAMPLES
14381438
$ cg launch
14391439
```
14401440

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

14431443
## `cg load [PROVIDER]`
14441444

@@ -1472,7 +1472,7 @@ EXAMPLES
14721472
$ cg load aws [Load data for AWS]
14731473
```
14741474

1475-
_See code: [src/commands/load.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/load.ts)_
1475+
_See code: [src/commands/load.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/load.ts)_
14761476

14771477
## `cg policy [PROVIDER]`
14781478

@@ -1501,7 +1501,7 @@ DESCRIPTION
15011501
Commands to manage policy pack modules, run $ cg policy for more info.
15021502
```
15031503

1504-
_See code: [src/commands/policy/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/policy/index.ts)_
1504+
_See code: [src/commands/policy/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/policy/index.ts)_
15051505

15061506
## `cg policy:add [PROVIDER]`
15071507

@@ -1539,7 +1539,7 @@ EXAMPLES
15391539
$ cg policy add aws-cis-1.2.0@0.12.0
15401540
```
15411541

1542-
_See code: [src/commands/policy/add.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/policy/add.ts)_
1542+
_See code: [src/commands/policy/add.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/policy/add.ts)_
15431543

15441544
## `cg policy:install [PROVIDER]`
15451545

@@ -1575,7 +1575,7 @@ EXAMPLES
15751575
$ cg policy install
15761576
```
15771577

1578-
_See code: [src/commands/policy/install.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/policy/install.ts)_
1578+
_See code: [src/commands/policy/install.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/policy/install.ts)_
15791579

15801580
## `cg policy:list [PROVIDER]`
15811581

@@ -1615,7 +1615,7 @@ EXAMPLES
16151615
$ cg policy list aws
16161616
```
16171617

1618-
_See code: [src/commands/policy/list.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/policy/list.ts)_
1618+
_See code: [src/commands/policy/list.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/policy/list.ts)_
16191619

16201620
## `cg policy:remove [PROVIDER]`
16211621

@@ -1660,7 +1660,7 @@ EXAMPLES
16601660
$ cg policy delete aws-cis-1.2.0 --no-save
16611661
```
16621662

1663-
_See code: [src/commands/policy/remove.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/policy/remove.ts)_
1663+
_See code: [src/commands/policy/remove.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/policy/remove.ts)_
16641664

16651665
## `cg policy:update [PROVIDER]`
16661666

@@ -1697,7 +1697,7 @@ EXAMPLES
16971697
$ cg policy update aws-cis-1.2.0@0.12.0
16981698
```
16991699

1700-
_See code: [src/commands/policy/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/policy/update.ts)_
1700+
_See code: [src/commands/policy/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/policy/update.ts)_
17011701

17021702
## `cg provider [PROVIDER]`
17031703

@@ -1726,7 +1726,7 @@ DESCRIPTION
17261726
Commands to manage provider modules, run $ cg provider for more info.
17271727
```
17281728

1729-
_See code: [src/commands/provider/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/provider/index.ts)_
1729+
_See code: [src/commands/provider/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/provider/index.ts)_
17301730

17311731
## `cg provider:add [PROVIDER]`
17321732

@@ -1764,7 +1764,7 @@ EXAMPLES
17641764
$ cg provider add aws@0.12.0
17651765
```
17661766

1767-
_See code: [src/commands/provider/add.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/provider/add.ts)_
1767+
_See code: [src/commands/provider/add.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/provider/add.ts)_
17681768

17691769
## `cg provider:install [PROVIDER]`
17701770

@@ -1800,7 +1800,7 @@ EXAMPLES
18001800
$ cg provider install
18011801
```
18021802

1803-
_See code: [src/commands/provider/install.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/provider/install.ts)_
1803+
_See code: [src/commands/provider/install.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/provider/install.ts)_
18041804

18051805
## `cg provider:list [PROVIDER]`
18061806

@@ -1840,7 +1840,7 @@ EXAMPLES
18401840
$ cg provider list aws
18411841
```
18421842

1843-
_See code: [src/commands/provider/list.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/provider/list.ts)_
1843+
_See code: [src/commands/provider/list.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/provider/list.ts)_
18441844

18451845
## `cg provider:remove [PROVIDER]`
18461846

@@ -1885,7 +1885,7 @@ EXAMPLES
18851885
$ cg provider delete aws --no-save
18861886
```
18871887

1888-
_See code: [src/commands/provider/remove.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/provider/remove.ts)_
1888+
_See code: [src/commands/provider/remove.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/provider/remove.ts)_
18891889

18901890
## `cg provider:update [PROVIDER]`
18911891

@@ -1922,7 +1922,7 @@ EXAMPLES
19221922
$ cg provider update aws@0.12.0
19231923
```
19241924

1925-
_See code: [src/commands/provider/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/provider/update.ts)_
1925+
_See code: [src/commands/provider/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/provider/update.ts)_
19261926

19271927
## `cg scan [PROVIDER]`
19281928

@@ -1960,7 +1960,7 @@ EXAMPLES
19601960
$ cg scan aws --no-serve [Do not start the query engine]
19611961
```
19621962

1963-
_See code: [src/commands/scan.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/scan.ts)_
1963+
_See code: [src/commands/scan.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/scan.ts)_
19641964

19651965
## `cg serve [PROVIDER]`
19661966

@@ -1992,7 +1992,7 @@ EXAMPLES
19921992
$ cg serve
19931993
```
19941994

1995-
_See code: [src/commands/serve.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/serve.ts)_
1995+
_See code: [src/commands/serve.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/serve.ts)_
19961996

19971997
## `cg teardown [PROVIDER]`
19981998

@@ -2014,7 +2014,7 @@ EXAMPLES
20142014
$ cg teardown --delete-image
20152015
```
20162016

2017-
_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/teardown.ts)_
2017+
_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/teardown.ts)_
20182018

20192019
## `cg update [PROVIDER]`
20202020

@@ -2050,5 +2050,5 @@ EXAMPLES
20502050
$ cg update
20512051
```
20522052

2053-
_See code: [src/commands/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.19.0/src/commands/update.ts)_
2053+
_See code: [src/commands/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.20.0/src/commands/update.ts)_
20542054
<!-- 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.19.0",
4+
"version": "0.20.0",
55
"author": "AutoCloud",
66
"license": "MPL-2.0",
77
"publishConfig": {

0 commit comments

Comments
 (0)