@extrahorizon/exh-cli 1.6.0 → 1.6.1-dev-43-c40e1a7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Extra Horizon CLI changelog
2
2
 
3
+ ### v1.6.1
4
+ * No longer logging the full schemas when syncing
5
+
3
6
  ### v1.6.0
4
7
  * Fixed some security vulnerabilities in the dependencies (Thanks @tran-simon)
5
8
  * Removed the update notifier. The version of the package we used had security vulnerabilities and we're unable to migrate to the latest version right now. We'll look into this again in the future.
@@ -57,7 +57,6 @@ _SyncSchema_instances = new WeakSet(), _SyncSchema_syncRootAttributes = async fu
57
57
  await schemaRepository.updateSchema(this.sdk, this.cloudSchema.id, diff);
58
58
  }
59
59
  }, _SyncSchema_syncProperties = async function _SyncSchema_syncProperties() {
60
- console.log(JSON.stringify({ local: this.localSchema, cloud: this.cloudSchema }, null, 2));
61
60
  const propertiesDiff = compareSchemaKey(this.localSchema, this.cloudSchema, 'properties');
62
61
  if (this.dry) {
63
62
  reportSchemaChanges(`Schema ${this.cloudSchema.name} - Properties`, propertiesDiff);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extrahorizon/exh-cli",
3
- "version": "1.6.0",
3
+ "version": "1.6.1-dev-43-c40e1a7",
4
4
  "main": "build/index.js",
5
5
  "exports": "./build/index.js",
6
6
  "license": "MIT",