@extrahorizon/exh-cli 1.12.0-dev-155-01e75cd → 1.12.0-dev-158-8cd96fc
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 +4 -0
- package/build/services/sync.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
* Now adding `$schema` as the last property when creating a new schema via `exh data schemas init`
|
|
5
5
|
* The `exh tasks create-repo` command now creates `package.json` and `task-config.json` files with 2 spaces indentation instead of 4 spaces.
|
|
6
6
|
* You no longer need to include the `name` property when defining an index in a schema, as it was never actually used by the backend.
|
|
7
|
+
* Updated the ExH SDK to the latest version
|
|
8
|
+
* For the features mentioned above
|
|
9
|
+
* For an `axios` update to resolve a warning about `CVE-2026-25639` (not affecting the CLI)
|
|
10
|
+
* Updated the `qs` package to resolve a warning about `CVE-2026-2391` (not affecting the CLI)
|
|
7
11
|
|
|
8
12
|
### v1.11.1
|
|
9
13
|
* Updated the ExH SDK to `8.8.2` to fix a security warning from `qs`
|
package/build/services/sync.js
CHANGED
|
@@ -17,7 +17,7 @@ async function sync({ path, schemas, tasks, templates, dispatchers, cleanDispatc
|
|
|
17
17
|
if ((syncAll || schemas) && cfg.schemas) {
|
|
18
18
|
console.log(chalk.green('\n ⚙️ Syncing schemas ...'));
|
|
19
19
|
for (const schema of cfg.schemas) {
|
|
20
|
-
await schemaService.sync(ospath.join(targetPath, schema),
|
|
20
|
+
await schemaService.sync(undefined, ospath.join(targetPath, schema), false, ignoreSchemaVerificationErrors);
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
if ((syncAll || templates) && cfg.templates) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@extrahorizon/exh-cli",
|
|
3
|
-
"version": "1.12.0-dev-
|
|
3
|
+
"version": "1.12.0-dev-158-8cd96fc",
|
|
4
4
|
"main": "build/index.js",
|
|
5
5
|
"exports": "./build/index.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"typescript": "4.5.5"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@extrahorizon/javascript-sdk": "8.9.0-dev-
|
|
45
|
-
"ajv": "
|
|
44
|
+
"@extrahorizon/javascript-sdk": "8.9.0-dev-147-660f81f",
|
|
45
|
+
"ajv": "8.18.0",
|
|
46
46
|
"archiver": "^7.0.1",
|
|
47
47
|
"chalk": "^4.0.0",
|
|
48
48
|
"lodash": "^4.17.23",
|