Skip to content

Commit 34b7bdb

Browse files
author
AutoCloud Deploy Bot
committed
chore(release): 0.18.0
# [0.18.0](https://gitlab.com/auto-cloud/cloudgraph/cli/compare/0.17.0...0.18.0) (2022-01-27) ### Features * add additional connections mutation to insert edges between existing entities ([9313b4a](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/9313b4a4198ed3ef46f5947450db8068b5e035d6))
1 parent 7ffb526 commit 34b7bdb

3 files changed

Lines changed: 59 additions & 52 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [0.18.0](https://gitlab.com/auto-cloud/cloudgraph/cli/compare/0.17.0...0.18.0) (2022-01-27)
2+
3+
4+
### Features
5+
6+
* add additional connections mutation to insert edges between existing entities ([9313b4a](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/9313b4a4198ed3ef46f5947450db8068b5e035d6))
7+
18
# [0.17.0](https://gitlab.com/auto-cloud/cloudgraph/cli/compare/0.16.12...0.17.0) (2022-01-24)
29

310

README.md

Lines changed: 51 additions & 51 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.17.0/src/commands/init.ts)_
1388+
_See code: [src/commands/init.ts](https://github.com/cloudgraphdev/cli/blob/v0.18.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.17.0/src/commands/launch.ts)_
1414+
_See code: [src/commands/launch.ts](https://github.com/cloudgraphdev/cli/blob/v0.18.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.17.0/src/commands/load.ts)_
1441+
_See code: [src/commands/load.ts](https://github.com/cloudgraphdev/cli/blob/v0.18.0/src/commands/load.ts)_
14421442

14431443
## `cg policy [PROVIDER]`
14441444

@@ -1461,15 +1461,15 @@ 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.17.0/src/commands/policy/index.ts)_
1464+
_See code: [src/commands/policy/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.18.0/src/commands/policy/index.ts)_
14651465

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

14681468
Add new policy packs
14691469

14701470
```
14711471
USAGE
1472-
$ cg policy add [PROVIDER]
1472+
$ cg policy:add [PROVIDER]
14731473
14741474
OPTIONS
14751475
-P, --policies=policies Policy Packs to execute during scan
@@ -1485,22 +1485,22 @@ OPTIONS
14851485
--use-roles Set to true to use roleARNs instead of profiles for AWS credentials
14861486
14871487
ALIASES
1488-
$ cg add policy
1488+
$ cg add:policy
14891489
14901490
EXAMPLES
14911491
$ cg policy add aws-cis-1.2.0
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.17.0/src/commands/policy/add.ts)_
1495+
_See code: [src/commands/policy/add.ts](https://github.com/cloudgraphdev/cli/blob/v0.18.0/src/commands/policy/add.ts)_
14961496

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

14991499
Install policy packs based on the lock file
15001500

15011501
```
15021502
USAGE
1503-
$ cg policy install [PROVIDER]
1503+
$ cg policy:install [PROVIDER]
15041504
15051505
OPTIONS
15061506
-P, --policies=policies Policy Packs to execute during scan
@@ -1516,21 +1516,21 @@ OPTIONS
15161516
--use-roles Set to true to use roleARNs instead of profiles for AWS credentials
15171517
15181518
ALIASES
1519-
$ cg install policy
1519+
$ cg install:policy
15201520
15211521
EXAMPLE
15221522
$ cg policy install
15231523
```
15241524

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

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

15291529
List currently installed policy packs and versions
15301530

15311531
```
15321532
USAGE
1533-
$ cg policy list [PROVIDER]
1533+
$ cg policy:list [PROVIDER]
15341534
15351535
OPTIONS
15361536
-P, --policies=policies Policy Packs to execute during scan
@@ -1546,24 +1546,24 @@ OPTIONS
15461546
--use-roles Set to true to use roleARNs instead of profiles for AWS credentials
15471547
15481548
ALIASES
1549-
$ cg ls policy
1550-
$ cg list policy
1551-
$ cg ls policy
1549+
$ cg ls:policy
1550+
$ cg list:policy
1551+
$ cg ls:policy
15521552
15531553
EXAMPLES
15541554
$ cg policy list
15551555
$ cg policy list aws
15561556
```
15571557

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

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

15621562
Remove currently installed policy pack
15631563

15641564
```
15651565
USAGE
1566-
$ cg policy remove [PROVIDER]
1566+
$ cg policy:remove [PROVIDER]
15671567
15681568
OPTIONS
15691569
-P, --policies=policies Policy Packs to execute during scan
@@ -1579,28 +1579,28 @@ OPTIONS
15791579
--use-roles Set to true to use roleARNs instead of profiles for AWS credentials
15801580
15811581
ALIASES
1582-
$ cg remove policy
1583-
$ cg policy remove
1584-
$ cg policy rm
1585-
$ cg del policy
1586-
$ cg rm policy
1587-
$ cg del policy
1582+
$ cg remove:policy
1583+
$ cg policy:remove
1584+
$ cg policy:rm
1585+
$ cg del:policy
1586+
$ cg rm:policy
1587+
$ cg del:policy
15881588
15891589
EXAMPLES
15901590
$ cg policy delete
15911591
$ cg policy delete aws-cis-1.2.0
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.17.0/src/commands/policy/remove.ts)_
1595+
_See code: [src/commands/policy/remove.ts](https://github.com/cloudgraphdev/cli/blob/v0.18.0/src/commands/policy/remove.ts)_
15961596

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

15991599
Update currently installed policy packs
16001600

16011601
```
16021602
USAGE
1603-
$ cg policy update [PROVIDER]
1603+
$ cg policy:update [PROVIDER]
16041604
16051605
OPTIONS
16061606
-P, --policies=policies Policy Packs to execute during scan
@@ -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.17.0/src/commands/policy/update.ts)_
1624+
_See code: [src/commands/policy/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.18.0/src/commands/policy/update.ts)_
16251625

16261626
## `cg provider [PROVIDER]`
16271627

@@ -1644,15 +1644,15 @@ 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.17.0/src/commands/provider/index.ts)_
1647+
_See code: [src/commands/provider/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.18.0/src/commands/provider/index.ts)_
16481648

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

16511651
Add new providers
16521652

16531653
```
16541654
USAGE
1655-
$ cg provider add [PROVIDER]
1655+
$ cg provider:add [PROVIDER]
16561656
16571657
OPTIONS
16581658
-P, --policies=policies Policy Packs to execute during scan
@@ -1668,22 +1668,22 @@ OPTIONS
16681668
--use-roles Set to true to use roleARNs instead of profiles for AWS credentials
16691669
16701670
ALIASES
1671-
$ cg add provider
1671+
$ cg add:provider
16721672
16731673
EXAMPLES
16741674
$ cg provider add aws
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.17.0/src/commands/provider/add.ts)_
1678+
_See code: [src/commands/provider/add.ts](https://github.com/cloudgraphdev/cli/blob/v0.18.0/src/commands/provider/add.ts)_
16791679

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

16821682
Install providers based on the lock file
16831683

16841684
```
16851685
USAGE
1686-
$ cg provider install [PROVIDER]
1686+
$ cg provider:install [PROVIDER]
16871687
16881688
OPTIONS
16891689
-P, --policies=policies Policy Packs to execute during scan
@@ -1699,21 +1699,21 @@ OPTIONS
16991699
--use-roles Set to true to use roleARNs instead of profiles for AWS credentials
17001700
17011701
ALIASES
1702-
$ cg install provider
1702+
$ cg install:provider
17031703
17041704
EXAMPLE
17051705
$ cg provider install
17061706
```
17071707

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

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

17121712
List currently installed providers and versions
17131713

17141714
```
17151715
USAGE
1716-
$ cg provider list [PROVIDER]
1716+
$ cg provider:list [PROVIDER]
17171717
17181718
OPTIONS
17191719
-P, --policies=policies Policy Packs to execute during scan
@@ -1729,24 +1729,24 @@ OPTIONS
17291729
--use-roles Set to true to use roleARNs instead of profiles for AWS credentials
17301730
17311731
ALIASES
1732-
$ cg ls provider
1733-
$ cg list provider
1734-
$ cg ls provider
1732+
$ cg ls:provider
1733+
$ cg list:provider
1734+
$ cg ls:provider
17351735
17361736
EXAMPLES
17371737
$ cg provider list
17381738
$ cg provider list aws
17391739
```
17401740

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

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

17451745
Remove currently installed provider
17461746

17471747
```
17481748
USAGE
1749-
$ cg provider remove [PROVIDER]
1749+
$ cg provider:remove [PROVIDER]
17501750
17511751
OPTIONS
17521752
-P, --policies=policies Policy Packs to execute during scan
@@ -1762,28 +1762,28 @@ OPTIONS
17621762
--use-roles Set to true to use roleARNs instead of profiles for AWS credentials
17631763
17641764
ALIASES
1765-
$ cg remove provider
1766-
$ cg provider remove
1767-
$ cg provider rm
1768-
$ cg del provider
1769-
$ cg rm provider
1770-
$ cg del provider
1765+
$ cg remove:provider
1766+
$ cg provider:remove
1767+
$ cg provider:rm
1768+
$ cg del:provider
1769+
$ cg rm:provider
1770+
$ cg del:provider
17711771
17721772
EXAMPLES
17731773
$ cg provider delete
17741774
$ cg provider delete aws
17751775
$ cg provider delete aws --no-save
17761776
```
17771777

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

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

17821782
Update currently installed providers
17831783

17841784
```
17851785
USAGE
1786-
$ cg provider update [PROVIDER]
1786+
$ cg provider:update [PROVIDER]
17871787
17881788
OPTIONS
17891789
-P, --policies=policies Policy Packs to execute during scan
@@ -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.17.0/src/commands/provider/update.ts)_
1807+
_See code: [src/commands/provider/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.18.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.17.0/src/commands/scan.ts)_
1836+
_See code: [src/commands/scan.ts](https://github.com/cloudgraphdev/cli/blob/v0.18.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.17.0/src/commands/serve.ts)_
1862+
_See code: [src/commands/serve.ts](https://github.com/cloudgraphdev/cli/blob/v0.18.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.17.0/src/commands/teardown.ts)_
1880+
_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.18.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.17.0/src/commands/update.ts)_
1910+
_See code: [src/commands/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.18.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.17.0",
4+
"version": "0.18.0",
55
"author": "AutoCloud",
66
"license": "MPL-2.0",
77
"publishConfig": {

0 commit comments

Comments
 (0)