@jsreport/jsreport-core 4.7.1 → 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,10 @@ 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
+
285
289
  ### 4.7.1
286
290
 
287
291
  - update @jsreport/ses to 1.4.0 to fix audit
@@ -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.1",
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.3.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": {