@jsreport/jsreport-core 4.7.0 → 4.8.0
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/README.md +15 -0
- package/lib/worker/defaultProxyExtend.js +2 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -282,6 +282,21 @@ jsreport.documentStore.collection('templates')
|
|
|
282
282
|
|
|
283
283
|
## Changelog
|
|
284
284
|
|
|
285
|
+
### 4.8.0
|
|
286
|
+
- update minimum nodejs to 22.18
|
|
287
|
+
- expose `version` to the jsreport-proxy
|
|
288
|
+
|
|
289
|
+
### 4.7.1
|
|
290
|
+
|
|
291
|
+
- update @jsreport/ses to 1.4.0 to fix audit
|
|
292
|
+
|
|
293
|
+
### 4.7.0
|
|
294
|
+
|
|
295
|
+
- update deps to fix npm audit
|
|
296
|
+
- expose methods to create temporary files in jsreport-proxy
|
|
297
|
+
- add support for taking nested errors from error.cause
|
|
298
|
+
- add worker id to worker creation
|
|
299
|
+
|
|
285
300
|
### 4.6.1
|
|
286
301
|
|
|
287
302
|
- clear profiles canceling check interval during reporter close
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsreport/jsreport-core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.8.0",
|
|
4
4
|
"description": "javascript based business reporting",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"report",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"test/extensions/validExtensions/listeners"
|
|
33
33
|
],
|
|
34
34
|
"scripts": {
|
|
35
|
-
"test": "mocha --timeout
|
|
35
|
+
"test": "mocha --timeout 8000 --recursive test --exit && standard",
|
|
36
36
|
"test:watch": "mocha --watch --recursive test"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"@babel/parser": "7.23.5",
|
|
41
41
|
"@babel/traverse": "7.23.5",
|
|
42
42
|
"@colors/colors": "1.5.0",
|
|
43
|
-
"@jsreport/advanced-workers": "2.
|
|
43
|
+
"@jsreport/advanced-workers": "2.2.0",
|
|
44
44
|
"@jsreport/mingo": "2.4.1",
|
|
45
45
|
"@jsreport/reap": "0.1.0",
|
|
46
|
-
"@jsreport/serializator": "1.0
|
|
47
|
-
"@jsreport/ses": "1.
|
|
46
|
+
"@jsreport/serializator": "1.1.0",
|
|
47
|
+
"@jsreport/ses": "1.4.0",
|
|
48
48
|
"ajv": "6.12.6",
|
|
49
49
|
"app-root-path": "3.0.0",
|
|
50
50
|
"bytes": "3.1.2",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"enhanced-resolve": "5.8.3",
|
|
58
58
|
"has-own-deep": "1.1.0",
|
|
59
59
|
"isbinaryfile": "5.0.0",
|
|
60
|
-
"listener-collection": "2.
|
|
60
|
+
"listener-collection": "2.1.0",
|
|
61
61
|
"lodash.get": "4.4.2",
|
|
62
62
|
"lodash.groupby": "4.6.0",
|
|
63
63
|
"lodash.omit": "4.5.0",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"winston-loggly-bulk": "3.2.1"
|
|
87
87
|
},
|
|
88
88
|
"engines": {
|
|
89
|
-
"node": ">=18
|
|
89
|
+
"node": ">=22.18"
|
|
90
90
|
},
|
|
91
91
|
"standard": {
|
|
92
92
|
"env": {
|