From 47a398c16af7f6ddf2b9078fc5eeaaa8aea27bb6 Mon Sep 17 00:00:00 2001 From: "mariano.pizarro" Date: Wed, 27 Jul 2022 18:28:19 -0300 Subject: [PATCH 1/4] feat: exclude subscription from scan report --- src/reports/scan-report.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/reports/scan-report.ts b/src/reports/scan-report.ts index b51fab8..6d4a339 100644 --- a/src/reports/scan-report.ts +++ b/src/reports/scan-report.ts @@ -31,6 +31,7 @@ const servicesToIgnore = [ /^label$/, /^billing$/, /Findings$/, + /^subscription$/, ] // TODO: come back and add tests once testing strategy is determined From a36507e5a62f4a712781260f501d136a5db2ed57 Mon Sep 17 00:00:00 2001 From: autocloud-deploy-bot Date: Fri, 5 Aug 2022 17:28:34 +0000 Subject: [PATCH 2/4] chore(release): 0.24.0-alpha.1 # [0.24.0-alpha.1](https://github.com/cloudgraphdev/cli/compare/0.23.1...0.24.0-alpha.1) (2022-08-05) ### Features * exclude subscription from scan report ([47a398c](https://github.com/cloudgraphdev/cli/commit/47a398c16af7f6ddf2b9078fc5eeaaa8aea27bb6)) --- CHANGELOG.md | 7 +++++++ README.md | 18 +++++++++--------- package.json | 2 +- 3 files changed, 17 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 831c031..b36216b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [0.24.0-alpha.1](https://github.com/cloudgraphdev/cli/compare/0.23.1...0.24.0-alpha.1) (2022-08-05) + + +### Features + +* exclude subscription from scan report ([47a398c](https://github.com/cloudgraphdev/cli/commit/47a398c16af7f6ddf2b9078fc5eeaaa8aea27bb6)) + ## [0.23.1](https://github.com/cloudgraphdev/cli/compare/0.23.0...0.23.1) (2022-07-18) diff --git a/README.md b/README.md index a4a8847..d7ed6d9 100644 --- a/README.md +++ b/README.md @@ -1450,7 +1450,7 @@ EXAMPLES $ cg init aws -r [Specify resources to crawl] ``` -_See code: [src/commands/init.ts](https://github.com/cloudgraphdev/cli/blob/v0.23.1/src/commands/init.ts)_ +_See code: [src/commands/init.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/init.ts)_ ## `cg launch [PROVIDER]` @@ -1482,7 +1482,7 @@ EXAMPLES $ cg launch ``` -_See code: [src/commands/launch.ts](https://github.com/cloudgraphdev/cli/blob/v0.23.1/src/commands/launch.ts)_ +_See code: [src/commands/launch.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/launch.ts)_ ## `cg load [PROVIDER]` @@ -1516,7 +1516,7 @@ EXAMPLES $ cg load aws [Load data for AWS] ``` -_See code: [src/commands/load.ts](https://github.com/cloudgraphdev/cli/blob/v0.23.1/src/commands/load.ts)_ +_See code: [src/commands/load.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/load.ts)_ ## `cg policy [PROVIDER]` @@ -1545,7 +1545,7 @@ DESCRIPTION Commands to manage policy pack modules, run $ cg policy for more info. ``` -_See code: [src/commands/policy/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.23.1/src/commands/policy/index.ts)_ +_See code: [src/commands/policy/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/policy/index.ts)_ ## `cg policy add [PROVIDER]` @@ -1758,7 +1758,7 @@ DESCRIPTION Commands to manage provider modules, run $ cg provider for more info. ``` -_See code: [src/commands/provider/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.23.1/src/commands/provider/index.ts)_ +_See code: [src/commands/provider/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/provider/index.ts)_ ## `cg provider add [PROVIDER]` @@ -1980,7 +1980,7 @@ EXAMPLES $ cg scan aws --no-serve [Do not start the query engine] ``` -_See code: [src/commands/scan.ts](https://github.com/cloudgraphdev/cli/blob/v0.23.1/src/commands/scan.ts)_ +_See code: [src/commands/scan.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/scan.ts)_ ## `cg serve [PROVIDER]` @@ -2012,7 +2012,7 @@ EXAMPLES $ cg serve ``` -_See code: [src/commands/serve.ts](https://github.com/cloudgraphdev/cli/blob/v0.23.1/src/commands/serve.ts)_ +_See code: [src/commands/serve.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/serve.ts)_ ## `cg teardown [PROVIDER]` @@ -2034,7 +2034,7 @@ EXAMPLES $ cg teardown --delete-image ``` -_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.23.1/src/commands/teardown.ts)_ +_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/teardown.ts)_ ## `cg update [PROVIDER]` @@ -2070,5 +2070,5 @@ EXAMPLES $ cg update ``` -_See code: [src/commands/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.23.1/src/commands/update.ts)_ +_See code: [src/commands/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/update.ts)_ diff --git a/package.json b/package.json index 030b0d9..563dbf6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@cloudgraph/cli", "description": "Scan your cloud infrastructure data and query it with GraphQL", - "version": "0.23.1", + "version": "0.24.0-alpha.1", "author": "AutoCloud", "license": "MPL-2.0", "publishConfig": { From e11c73733e35e4761be11c64aeeb8b688a08963c Mon Sep 17 00:00:00 2001 From: autocloud-deploy-bot Date: Fri, 5 Aug 2022 17:30:32 +0000 Subject: [PATCH 3/4] chore(release): 0.24.0-beta.1 # [0.24.0-beta.1](https://github.com/cloudgraphdev/cli/compare/0.23.1...0.24.0-beta.1) (2022-08-05) ### Features * exclude subscription from scan report ([47a398c](https://github.com/cloudgraphdev/cli/commit/47a398c16af7f6ddf2b9078fc5eeaaa8aea27bb6)) --- CHANGELOG.md | 7 +++++++ README.md | 18 +++++++++--------- package.json | 2 +- 3 files changed, 17 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b36216b..cdc396b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [0.24.0-beta.1](https://github.com/cloudgraphdev/cli/compare/0.23.1...0.24.0-beta.1) (2022-08-05) + + +### Features + +* exclude subscription from scan report ([47a398c](https://github.com/cloudgraphdev/cli/commit/47a398c16af7f6ddf2b9078fc5eeaaa8aea27bb6)) + # [0.24.0-alpha.1](https://github.com/cloudgraphdev/cli/compare/0.23.1...0.24.0-alpha.1) (2022-08-05) diff --git a/README.md b/README.md index d7ed6d9..14cbd9f 100644 --- a/README.md +++ b/README.md @@ -1450,7 +1450,7 @@ EXAMPLES $ cg init aws -r [Specify resources to crawl] ``` -_See code: [src/commands/init.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/init.ts)_ +_See code: [src/commands/init.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/init.ts)_ ## `cg launch [PROVIDER]` @@ -1482,7 +1482,7 @@ EXAMPLES $ cg launch ``` -_See code: [src/commands/launch.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/launch.ts)_ +_See code: [src/commands/launch.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/launch.ts)_ ## `cg load [PROVIDER]` @@ -1516,7 +1516,7 @@ EXAMPLES $ cg load aws [Load data for AWS] ``` -_See code: [src/commands/load.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/load.ts)_ +_See code: [src/commands/load.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/load.ts)_ ## `cg policy [PROVIDER]` @@ -1545,7 +1545,7 @@ DESCRIPTION Commands to manage policy pack modules, run $ cg policy for more info. ``` -_See code: [src/commands/policy/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/policy/index.ts)_ +_See code: [src/commands/policy/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/policy/index.ts)_ ## `cg policy add [PROVIDER]` @@ -1758,7 +1758,7 @@ DESCRIPTION Commands to manage provider modules, run $ cg provider for more info. ``` -_See code: [src/commands/provider/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/provider/index.ts)_ +_See code: [src/commands/provider/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/provider/index.ts)_ ## `cg provider add [PROVIDER]` @@ -1980,7 +1980,7 @@ EXAMPLES $ cg scan aws --no-serve [Do not start the query engine] ``` -_See code: [src/commands/scan.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/scan.ts)_ +_See code: [src/commands/scan.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/scan.ts)_ ## `cg serve [PROVIDER]` @@ -2012,7 +2012,7 @@ EXAMPLES $ cg serve ``` -_See code: [src/commands/serve.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/serve.ts)_ +_See code: [src/commands/serve.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/serve.ts)_ ## `cg teardown [PROVIDER]` @@ -2034,7 +2034,7 @@ EXAMPLES $ cg teardown --delete-image ``` -_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/teardown.ts)_ +_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/teardown.ts)_ ## `cg update [PROVIDER]` @@ -2070,5 +2070,5 @@ EXAMPLES $ cg update ``` -_See code: [src/commands/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-alpha.1/src/commands/update.ts)_ +_See code: [src/commands/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/update.ts)_ diff --git a/package.json b/package.json index 563dbf6..fe9e33f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@cloudgraph/cli", "description": "Scan your cloud infrastructure data and query it with GraphQL", - "version": "0.24.0-alpha.1", + "version": "0.24.0-beta.1", "author": "AutoCloud", "license": "MPL-2.0", "publishConfig": { From 37f0c22cdb91fab46c37f61eaac423e819813bf5 Mon Sep 17 00:00:00 2001 From: autocloud-deploy-bot Date: Fri, 5 Aug 2022 17:36:10 +0000 Subject: [PATCH 4/4] chore(release): 0.24.0 # [0.24.0](https://github.com/cloudgraphdev/cli/compare/0.23.1...0.24.0) (2022-08-05) ### Features * exclude subscription from scan report ([47a398c](https://github.com/cloudgraphdev/cli/commit/47a398c16af7f6ddf2b9078fc5eeaaa8aea27bb6)) --- CHANGELOG.md | 7 +++++++ README.md | 18 +++++++++--------- package.json | 2 +- 3 files changed, 17 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cdc396b..529e547 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [0.24.0](https://github.com/cloudgraphdev/cli/compare/0.23.1...0.24.0) (2022-08-05) + + +### Features + +* exclude subscription from scan report ([47a398c](https://github.com/cloudgraphdev/cli/commit/47a398c16af7f6ddf2b9078fc5eeaaa8aea27bb6)) + # [0.24.0-beta.1](https://github.com/cloudgraphdev/cli/compare/0.23.1...0.24.0-beta.1) (2022-08-05) diff --git a/README.md b/README.md index 14cbd9f..aff91ec 100644 --- a/README.md +++ b/README.md @@ -1450,7 +1450,7 @@ EXAMPLES $ cg init aws -r [Specify resources to crawl] ``` -_See code: [src/commands/init.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/init.ts)_ +_See code: [src/commands/init.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0/src/commands/init.ts)_ ## `cg launch [PROVIDER]` @@ -1482,7 +1482,7 @@ EXAMPLES $ cg launch ``` -_See code: [src/commands/launch.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/launch.ts)_ +_See code: [src/commands/launch.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0/src/commands/launch.ts)_ ## `cg load [PROVIDER]` @@ -1516,7 +1516,7 @@ EXAMPLES $ cg load aws [Load data for AWS] ``` -_See code: [src/commands/load.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/load.ts)_ +_See code: [src/commands/load.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0/src/commands/load.ts)_ ## `cg policy [PROVIDER]` @@ -1545,7 +1545,7 @@ DESCRIPTION Commands to manage policy pack modules, run $ cg policy for more info. ``` -_See code: [src/commands/policy/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/policy/index.ts)_ +_See code: [src/commands/policy/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0/src/commands/policy/index.ts)_ ## `cg policy add [PROVIDER]` @@ -1758,7 +1758,7 @@ DESCRIPTION Commands to manage provider modules, run $ cg provider for more info. ``` -_See code: [src/commands/provider/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/provider/index.ts)_ +_See code: [src/commands/provider/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0/src/commands/provider/index.ts)_ ## `cg provider add [PROVIDER]` @@ -1980,7 +1980,7 @@ EXAMPLES $ cg scan aws --no-serve [Do not start the query engine] ``` -_See code: [src/commands/scan.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/scan.ts)_ +_See code: [src/commands/scan.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0/src/commands/scan.ts)_ ## `cg serve [PROVIDER]` @@ -2012,7 +2012,7 @@ EXAMPLES $ cg serve ``` -_See code: [src/commands/serve.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/serve.ts)_ +_See code: [src/commands/serve.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0/src/commands/serve.ts)_ ## `cg teardown [PROVIDER]` @@ -2034,7 +2034,7 @@ EXAMPLES $ cg teardown --delete-image ``` -_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/teardown.ts)_ +_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0/src/commands/teardown.ts)_ ## `cg update [PROVIDER]` @@ -2070,5 +2070,5 @@ EXAMPLES $ cg update ``` -_See code: [src/commands/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0-beta.1/src/commands/update.ts)_ +_See code: [src/commands/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.24.0/src/commands/update.ts)_ diff --git a/package.json b/package.json index fe9e33f..3ec55b3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@cloudgraph/cli", "description": "Scan your cloud infrastructure data and query it with GraphQL", - "version": "0.24.0-beta.1", + "version": "0.24.0", "author": "AutoCloud", "license": "MPL-2.0", "publishConfig": {