@balena/pinejs 17.1.0-build-joshbwlng-tasks-9f3f42ef1bf62714507bacc7842e99841b116d94-1 → 17.1.0-build-joshbwlng-tasks-e3dcb0e73ea9c960af553c67cbf7121650f8d1ea-1
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/.versionbot/CHANGELOG.yml +9 -1
- package/CHANGELOG.md +1 -0
- package/out/tasks/common.js +1 -3
- package/out/tasks/common.js.map +1 -1
- package/package.json +3 -3
- package/src/tasks/common.ts +1 -6
@@ -1,4 +1,12 @@
|
|
1
1
|
- commits:
|
2
|
+
- subject: Update sbvr-parser, remove ajv inlineRefs option
|
3
|
+
hash: e3dcb0e73ea9c960af553c67cbf7121650f8d1ea
|
4
|
+
body: ""
|
5
|
+
footer:
|
6
|
+
Change-type: patch
|
7
|
+
change-type: patch
|
8
|
+
author: Josh Bowling
|
9
|
+
nested: []
|
2
10
|
- subject: Remove task priority support
|
3
11
|
hash: 9f3f42ef1bf62714507bacc7842e99841b116d94
|
4
12
|
body: ""
|
@@ -25,7 +33,7 @@
|
|
25
33
|
nested: []
|
26
34
|
version: 17.1.0
|
27
35
|
title: ""
|
28
|
-
date: 2024-06-19T06:
|
36
|
+
date: 2024-06-19T06:50:01.279Z
|
29
37
|
- commits:
|
30
38
|
- subject: Improve `result` typing for `POSTRUN`/`PRERESPOND` hooks
|
31
39
|
hash: adec8e6cfb12d75109627a582c948d6f950d0989
|
package/CHANGELOG.md
CHANGED
@@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
7
7
|
# v17.1.0
|
8
8
|
## (2024-06-19)
|
9
9
|
|
10
|
+
* Update sbvr-parser, remove ajv inlineRefs option [Josh Bowling]
|
10
11
|
* Remove task priority support [Josh Bowling]
|
11
12
|
* Bind more variables in poll query [Josh Bowling]
|
12
13
|
* Add async tasks [Josh Bowling]
|
package/out/tasks/common.js
CHANGED
@@ -7,7 +7,5 @@ exports.ajv = exports.channel = exports.apiRoot = void 0;
|
|
7
7
|
const ajv_1 = __importDefault(require("ajv"));
|
8
8
|
exports.apiRoot = 'tasks';
|
9
9
|
exports.channel = 'pinejs$task_insert';
|
10
|
-
exports.ajv = new ajv_1.default(
|
11
|
-
inlineRefs: false,
|
12
|
-
});
|
10
|
+
exports.ajv = new ajv_1.default();
|
13
11
|
//# sourceMappingURL=common.js.map
|
package/out/tasks/common.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../src/tasks/common.ts"],"names":[],"mappings":";;;;;;AAAA,8CAAsB;AAGT,QAAA,OAAO,GAAG,OAAO,CAAC;AAGlB,QAAA,OAAO,GAAG,oBAAoB,CAAC;
|
1
|
+
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../src/tasks/common.ts"],"names":[],"mappings":";;;;;;AAAA,8CAAsB;AAGT,QAAA,OAAO,GAAG,OAAO,CAAC;AAGlB,QAAA,OAAO,GAAG,oBAAoB,CAAC;AAE/B,QAAA,GAAG,GAAG,IAAI,aAAG,EAAE,CAAC"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@balena/pinejs",
|
3
|
-
"version": "17.1.0-build-joshbwlng-tasks-
|
3
|
+
"version": "17.1.0-build-joshbwlng-tasks-e3dcb0e73ea9c960af553c67cbf7121650f8d1ea-1",
|
4
4
|
"main": "out/server-glue/module",
|
5
5
|
"type": "commonjs",
|
6
6
|
"repository": "git@github.com:balena-io/pinejs.git",
|
@@ -31,7 +31,7 @@
|
|
31
31
|
"@balena/lf-to-abstract-sql": "^5.0.2",
|
32
32
|
"@balena/odata-parser": "^3.0.8",
|
33
33
|
"@balena/odata-to-abstract-sql": "^6.2.7",
|
34
|
-
"@balena/sbvr-parser": "^1.4.
|
34
|
+
"@balena/sbvr-parser": "^1.4.5",
|
35
35
|
"@balena/sbvr-types": "^7.1.1",
|
36
36
|
"@types/body-parser": "^1.19.5",
|
37
37
|
"@types/compression": "^1.7.5",
|
@@ -147,6 +147,6 @@
|
|
147
147
|
"recursive": true
|
148
148
|
},
|
149
149
|
"versionist": {
|
150
|
-
"publishedAt": "2024-06-19T06:
|
150
|
+
"publishedAt": "2024-06-19T06:50:02.030Z"
|
151
151
|
}
|
152
152
|
}
|
package/src/tasks/common.ts
CHANGED
@@ -6,9 +6,4 @@ export const apiRoot = 'tasks';
|
|
6
6
|
// Channel name for task insert notifications
|
7
7
|
export const channel = 'pinejs$task_insert';
|
8
8
|
|
9
|
-
|
10
|
-
// "Maximum call stack size exceeded" error apprarently caused
|
11
|
-
// by String.prototype._uncountable_words being set in sbvr-parser?
|
12
|
-
export const ajv = new Ajv({
|
13
|
-
inlineRefs: false,
|
14
|
-
});
|
9
|
+
export const ajv = new Ajv();
|