@sap/xsodata 8.1.3 → 8.2.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/CHANGELOG.md CHANGED
@@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
8
8
 
9
9
  ## Unreleased
10
10
 
11
+ ## [8.2.0] - 2024-10-23
12
+
13
+ * Add support for Node 22
14
+
11
15
  ## [8.1.3] - 2024-10-03
12
16
 
13
17
  * FOSS related security updates
package/README.md CHANGED
@@ -9,7 +9,7 @@ Note: XSOData was developed to provide XS Classic users using XSOData the possib
9
9
  This library contains nearly the same feature set as XSOData provided on SAP HANA XS Classic. This module is already
10
10
  in maintenance mode and it is not planned to extend or enhance it.
11
11
 
12
- If you want to create new OData services we strongly reoommend to use OData V4 along with a generic CDS-OData provider.
12
+ If you want to create new OData services we strongly recommend to use OData V4 along with a generic CDS-OData provider.
13
13
  Here you can model your consumption persistency model with CDS (Core Data Services) and expose parts or the complete
14
14
  model as OData service. Such a solution is already productively available on the JAVA runtime stack.
15
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sap/xsodata",
3
- "version": "8.1.3",
3
+ "version": "8.2.0",
4
4
  "description": "Expose data from a HANA database as OData V2 service with help of .xsodata files.",
5
5
  "main": "index.js",
6
6
  "license": "SEE LICENSE IN developer-license-3.1.txt",
@@ -61,21 +61,21 @@
61
61
  "xml-writer": "1.7.0"
62
62
  },
63
63
  "engines": {
64
- "node": "^18 || ^20"
64
+ "node": "^18 || ^20 || ^22"
65
65
  },
66
66
  "devDependencies": {
67
- "@sap/hana-client": "2.19.13",
67
+ "@sap/hana-client": "2.22.29",
68
68
  "chai": "4.3.10",
69
69
  "expect": "1.20.2",
70
70
  "filter-node-package": "3.2.0",
71
71
  "jison": "0.4.18",
72
72
  "jshint": "2.13.6",
73
- "mocha": "10.2.0",
74
- "mocha-simple-html-reporter": "1.1.0",
73
+ "mocha": "10.7.3",
74
+ "mocha-simple-html-reporter": "2.0.0",
75
75
  "node-mocks-http": "=1.7.6",
76
- "nyc": "^15.1.0",
76
+ "nyc": "^17.1.0",
77
77
  "pegjs": "0.10.0",
78
78
  "sinon": "6.1.4",
79
- "xml2js": "0.4.23"
79
+ "xml2js": "0.6.2"
80
80
  }
81
81
  }