diff --git a/CHANGELOG.md b/CHANGELOG.md index 89f9a65..24a307b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.25.2-alpha.1](https://github.com/cloudgraphdev/cli/compare/0.25.1...0.25.2-alpha.1) (2022-12-14) + + +### Bug Fixes + +* **dgraph:** remove the dropping of dgraph schema for now ([bacca46](https://github.com/cloudgraphdev/cli/commit/bacca460cff9a1bbd147ba866cfd4cb682824204)) + ## [0.25.1](https://github.com/cloudgraphdev/cli/compare/0.25.0...0.25.1) (2022-12-13) diff --git a/README.md b/README.md index 9934c3d..9b1b8c9 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.25.1/src/commands/init.ts)_ +_See code: [src/commands/init.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.2-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.25.1/src/commands/launch.ts)_ +_See code: [src/commands/launch.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.2-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.25.1/src/commands/load.ts)_ +_See code: [src/commands/load.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.2-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.25.1/src/commands/policy/index.ts)_ +_See code: [src/commands/policy/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.2-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.25.1/src/commands/provider/index.ts)_ +_See code: [src/commands/provider/index.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.2-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.25.1/src/commands/scan.ts)_ +_See code: [src/commands/scan.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.2-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.25.1/src/commands/serve.ts)_ +_See code: [src/commands/serve.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.2-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.25.1/src/commands/teardown.ts)_ +_See code: [src/commands/teardown.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.2-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.25.1/src/commands/update.ts)_ +_See code: [src/commands/update.ts](https://github.com/cloudgraphdev/cli/blob/v0.25.2-alpha.1/src/commands/update.ts)_ diff --git a/package.json b/package.json index 7345a33..fbecc24 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.25.1", + "version": "0.25.2-alpha.1", "author": "AutoCloud", "license": "MPL-2.0", "publishConfig": { diff --git a/src/commands/scan.ts b/src/commands/scan.ts index bc73701..8021470 100644 --- a/src/commands/scan.ts +++ b/src/commands/scan.ts @@ -246,7 +246,7 @@ export default class Scan extends Command { if (storageEngine instanceof DgraphEngine) { await storageEngine.validateSchema(schema, dataFolder) } - await storageEngine.dropAll() // Delete schema before change it + // await storageEngine.dropAll() // Delete schema before change it await storageEngine.setSchema(schema) } catch (error: any) { this.logger.error( diff --git a/src/utils/questions.ts b/src/utils/questions.ts index 6c23180..b52859b 100644 --- a/src/utils/questions.ts +++ b/src/utils/questions.ts @@ -50,7 +50,7 @@ export const queryEngineConfigQuestions: ListQuestion[] = [ short: 'GraphQL Playground', }, { - name: 'Altair GraphQL Client (https://altair.sirmuel.design/)', + name: 'Altair GraphQL Client (https://altairgraphql.dev)', value: 'altair', short: 'Altair GraphQL Client', },