Skip to content

Commit 6a2697e

Browse files
author
AutoCloud Deploy Bot
committed
1 parent 05f33af commit 6a2697e

3 files changed

Lines changed: 27 additions & 19 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.16.12](https://gitlab.com/auto-cloud/cloudgraph/cli/compare/0.16.11...0.16.12) (2022-01-18)
2+
3+
4+
### Bug Fixes
5+
6+
* Removed schema util from CLI ([f38fb60](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/f38fb6052a7643597f710d7cb02b9be71ab23f55))
7+
* Updated sdk to the latest version ([a0f8c74](https://gitlab.com/auto-cloud/cloudgraph/cli/commit/a0f8c74fcf881d6be5c8f66aff3160bc75a13ab0))
8+
19
## [0.16.11](https://gitlab.com/auto-cloud/cloudgraph/cli/compare/0.16.10...0.16.11) (2022-01-17)
210

311

README.md

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

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

13891389
## `cg launch [PROVIDER]`
13901390

@@ -1410,7 +1410,7 @@ EXAMPLE
14101410
$ cg launch
14111411
```
14121412

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

14151415
## `cg load [PROVIDER]`
14161416

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

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

14421442
## `cg policy [PROVIDER]`
14431443

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

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

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

@@ -1487,7 +1487,7 @@ EXAMPLES
14871487
$ cg policy add aws-cis-1.2.0@0.12.0
14881488
```
14891489

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

14921492
## `cg policy:install [PROVIDER]`
14931493

@@ -1513,7 +1513,7 @@ EXAMPLE
15131513
$ cg policy install
15141514
```
15151515

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

15181518
## `cg policy:list [PROVIDER]`
15191519

@@ -1540,7 +1540,7 @@ EXAMPLES
15401540
$ cg policy list aws
15411541
```
15421542

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

15451545
## `cg policy:remove [PROVIDER]`
15461546

@@ -1569,7 +1569,7 @@ EXAMPLES
15691569
$ cg policy delete aws-cis-1.2.0 --no-save
15701570
```
15711571

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

15741574
## `cg policy:update [PROVIDER]`
15751575

@@ -1597,7 +1597,7 @@ EXAMPLES
15971597
$cg policy update aws-cis-1.2.0@0.12.0
15981598
```
15991599

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

16021602
## `cg provider [PROVIDER]`
16031603

@@ -1620,7 +1620,7 @@ OPTIONS
16201620
--use-roles Set to true to use roleARNs instead of profiles for AWS credentials
16211621
```
16221622

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

16251625
## `cg provider:add [PROVIDER]`
16261626

@@ -1650,7 +1650,7 @@ EXAMPLES
16501650
$ cg provider add aws@0.12.0
16511651
```
16521652

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

16551655
## `cg provider:install [PROVIDER]`
16561656

@@ -1679,7 +1679,7 @@ EXAMPLE
16791679
$ cg provider install
16801680
```
16811681

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

16841684
## `cg provider:list [PROVIDER]`
16851685

@@ -1711,7 +1711,7 @@ EXAMPLES
17111711
$ cg provider list aws
17121712
```
17131713

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

17161716
## `cg provider:remove [PROVIDER]`
17171717

@@ -1747,7 +1747,7 @@ EXAMPLES
17471747
$ cg provider delete aws --no-save
17481748
```
17491749

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

17521752
## `cg provider:update [PROVIDER]`
17531753

@@ -1778,7 +1778,7 @@ EXAMPLES
17781778
$cg provider update aws@0.12.0
17791779
```
17801780

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

17831783
## `cg scan [PROVIDER]`
17841784

@@ -1807,7 +1807,7 @@ EXAMPLES
18071807
$ cg scan aws --no-serve [Do not start the query engine]
18081808
```
18091809

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

18121812
## `cg serve [PROVIDER]`
18131813

@@ -1833,7 +1833,7 @@ EXAMPLE
18331833
$ cg serve
18341834
```
18351835

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

18381838
## `cg teardown [PROVIDER]`
18391839

@@ -1851,5 +1851,5 @@ EXAMPLES
18511851
$ cg teardown --delete-image
18521852
```
18531853

1854-
_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.11/src/commands/teardown.ts)_
1854+
_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.16.12/src/commands/teardown.ts)_
18551855
<!-- 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.11",
4+
"version": "0.16.12",
55
"author": "AutoCloud",
66
"license": "MPL-2.0",
77
"publishConfig": {

0 commit comments

Comments
 (0)