@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 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
@@ -42,6 +42,8 @@ module.exports = (reporter) => (proxy, req) => {
42
42
  }
43
43
  }
44
44
 
45
+ proxy.version = reporter.version
46
+
45
47
  // expose tempfile functions
46
48
  const createTempFileFns = [
47
49
  'getTempFilePath', 'openTempFile', 'writeTempFileSync', 'writeTempFile',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsreport/jsreport-core",
3
- "version": "4.7.0",
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 5000 --recursive test --exit && standard",
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.1.0",
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.1",
47
- "@jsreport/ses": "1.2.0",
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.0.0",
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.15"
89
+ "node": ">=22.18"
90
90
  },
91
91
  "standard": {
92
92
  "env": {