@sap/xsodata 8.0.0 → 8.0.1

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,11 +8,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
8
8
 
9
9
  ## Unreleased
10
10
 
11
+ ## [8.0.1] - 2022-09-13
12
+
13
+ * remove node 12 support
14
+
11
15
  ## [8.0.0] - 2022-08-04
12
16
 
13
17
  * HANA Cloud database support added
14
18
  * Public synonym support added
15
- * Update module dependencies
19
+ * Update node module dependencies
16
20
 
17
21
  ## [7.5.5] - 2022-04-21
18
22
 
@@ -133,8 +133,7 @@ const execTempTableStatements = (context, stmsInput,asyncDone) => {
133
133
  const stms = Array.isArray(stmsInput) ? stmsInput : [stmsInput];
134
134
  var index;
135
135
  context.logger.silly('dataCollector', 'execTempTableStatements');
136
- context.logger
137
- .debug('dataCollector', 'execTempTableStatements statements', JSON.stringify(stms, null, 2));
136
+ context.logger.debug('dataCollector', 'execTempTableStatements statements', JSON.stringify(stms, null, ' '));
138
137
 
139
138
  return execCleanSessionStatements(stms, context, function done(err, context) {
140
139
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sap/xsodata",
3
- "version": "8.0.0",
3
+ "version": "8.0.1",
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",
@@ -58,7 +58,7 @@
58
58
  "xml-writer": "1.7.0"
59
59
  },
60
60
  "engines": {
61
- "node": "^12 || ^14 || ^16"
61
+ "node": "^14 || ^16"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@sap/hana-client": "2.10.20",