@sap/xsodata 8.1.2 → 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 +8 -0
- package/README.md +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,14 @@ 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
|
+
|
|
15
|
+
## [8.1.3] - 2024-10-03
|
|
16
|
+
|
|
17
|
+
* FOSS related security updates
|
|
18
|
+
|
|
11
19
|
## [8.1.1] - 2023-11-30
|
|
12
20
|
|
|
13
21
|
* Add support for node 20
|
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
|
|
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.
|
|
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",
|
|
@@ -49,33 +49,33 @@
|
|
|
49
49
|
".npmignore"
|
|
50
50
|
],
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@sap/xsenv": "
|
|
52
|
+
"@sap/xsenv": "5.3.0",
|
|
53
53
|
"@sap/xssec": "3.6.0",
|
|
54
|
-
"async": "3.2.
|
|
55
|
-
"big.js": "6.2.
|
|
56
|
-
"body-parser": "1.20.
|
|
57
|
-
"hdb": "0.19.
|
|
54
|
+
"async": "3.2.6",
|
|
55
|
+
"big.js": "6.2.2",
|
|
56
|
+
"body-parser": "1.20.3",
|
|
57
|
+
"hdb": "0.19.10",
|
|
58
58
|
"lodash": "4.17.21",
|
|
59
59
|
"negotiator": "0.6.3",
|
|
60
60
|
"rwlock": "5.0.0",
|
|
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.
|
|
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.
|
|
74
|
-
"mocha-simple-html-reporter": "
|
|
73
|
+
"mocha": "10.7.3",
|
|
74
|
+
"mocha-simple-html-reporter": "2.0.0",
|
|
75
75
|
"node-mocks-http": "=1.7.6",
|
|
76
|
-
"nyc": "^
|
|
76
|
+
"nyc": "^17.1.0",
|
|
77
77
|
"pegjs": "0.10.0",
|
|
78
78
|
"sinon": "6.1.4",
|
|
79
|
-
"xml2js": "0.
|
|
79
|
+
"xml2js": "0.6.2"
|
|
80
80
|
}
|
|
81
81
|
}
|