@sap/async-xsjs 3.0.2 → 3.0.4
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 +17 -2
- package/lib/xsjs/db/common/DbOptions.js +1 -0
- package/lib/xsjs/db/common/connection.js +36 -3
- package/npm-shrinkwrap.json +66 -83
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,12 +5,28 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
5
5
|
|
|
6
6
|
The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
|
7
7
|
|
|
8
|
+
<a name="3.0.4"></a>
|
|
9
|
+
## 3.0.4 - 2026-07-17
|
|
10
|
+
|
|
11
|
+
### Updated
|
|
12
|
+
- update express version to 4.22.2
|
|
13
|
+
- update @sap/xsodata version to 8.4.0
|
|
14
|
+
- update body-parser version to 2.3.0
|
|
15
|
+
- poolingCheck added and retry is modified.
|
|
16
|
+
|
|
17
|
+
<a name="3.0.3"></a>
|
|
18
|
+
## 3.0.3 - 2026-07-06
|
|
19
|
+
|
|
20
|
+
### Updated
|
|
21
|
+
- update @sap/hdbext version to 8.1.14
|
|
22
|
+
- Revised the lib/client-factory.js code to enhance logger information handling
|
|
23
|
+
|
|
8
24
|
<a name="3.0.2"></a>
|
|
9
25
|
## 3.0.2 - 2026-06-29
|
|
10
26
|
|
|
11
27
|
### Updated
|
|
12
28
|
- update axios version to 1.18.1
|
|
13
|
-
|
|
29
|
+
|
|
14
30
|
<a name="3.0.1"></a>
|
|
15
31
|
## 3.0.1 - 2026-06-11
|
|
16
32
|
|
|
@@ -18,7 +34,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
|
|
18
34
|
- update @sap/node-jwt version to 1.6.30
|
|
19
35
|
- update @sap/node-vsi to 1.4.34
|
|
20
36
|
|
|
21
|
-
|
|
22
37
|
<a name="3.0.0"></a>
|
|
23
38
|
## 3.0.0 - 2026-06-08
|
|
24
39
|
|
|
@@ -1,12 +1,45 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var hdbext = require('@sap/hdbext');
|
|
4
|
+
var logger = require('../../../logging').logger;
|
|
4
5
|
|
|
5
6
|
exports = module.exports;
|
|
6
7
|
exports.connect = connect;
|
|
7
8
|
|
|
9
|
+
var MAX_RETRIES = 12;
|
|
10
|
+
var RETRY_DELAY_MS = 100;
|
|
11
|
+
|
|
12
|
+
function delay(ms) {
|
|
13
|
+
return new Promise(function (resolve) { setTimeout(resolve, ms); });
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
function getServerNode(hanaOptions) {
|
|
17
|
+
if (hanaOptions.serverNode) {
|
|
18
|
+
return hanaOptions.serverNode;
|
|
19
|
+
}
|
|
20
|
+
return `${hanaOptions.host}:${hanaOptions.port}`;
|
|
21
|
+
}
|
|
22
|
+
|
|
8
23
|
async function connect (hanaOptions) {
|
|
9
|
-
var
|
|
10
|
-
|
|
11
|
-
|
|
24
|
+
var attempt = 0;
|
|
25
|
+
var serverNode = getServerNode(hanaOptions);
|
|
26
|
+
while (attempt <= MAX_RETRIES) {
|
|
27
|
+
try {
|
|
28
|
+
var conn = await hdbext.createConnectionPromise(hanaOptions);
|
|
29
|
+
conn.setAutoCommit(false);
|
|
30
|
+
return conn;
|
|
31
|
+
} catch (err) {
|
|
32
|
+
if (attempt < MAX_RETRIES) {
|
|
33
|
+
attempt++;
|
|
34
|
+
var waitMs = (attempt - 1) * RETRY_DELAY_MS;
|
|
35
|
+
logger.warn('HANA connection attempt ' + attempt + ' to ' + serverNode + ' failed, retrying in ' + (RETRY_DELAY_MS * attempt) + 'ms. Error: ' + err.message);
|
|
36
|
+
if (waitMs > 0) {
|
|
37
|
+
await delay(waitMs);
|
|
38
|
+
}
|
|
39
|
+
} else {
|
|
40
|
+
logger.error('HANA connection to ' + serverNode + ' failed after ' + MAX_RETRIES + ' retries. Error: ' + err.message);
|
|
41
|
+
throw err;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
12
45
|
}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/async-xsjs",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@sap/async-xsjs",
|
|
9
|
-
"version": "3.0.
|
|
9
|
+
"version": "3.0.4",
|
|
10
10
|
"license": "SEE LICENSE IN LICENSE file",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@sap/audit-logging": "^7.0.1",
|
|
13
13
|
"@sap/e2e-trace": "^6.2.1",
|
|
14
14
|
"@sap/hana-client": "2.28.21",
|
|
15
|
-
"@sap/hdbext": "8.1.
|
|
15
|
+
"@sap/hdbext": "8.1.14",
|
|
16
16
|
"@sap/instance-manager": "^5.2.6",
|
|
17
17
|
"@sap/jobs-client": "^1.9.1",
|
|
18
18
|
"@sap/logging": "^9.2.1",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"@sap/node-vsi": "^1.4.34",
|
|
21
21
|
"@sap/textbundle": "^6.2.0",
|
|
22
22
|
"@sap/xsenv": "^6.2.1",
|
|
23
|
-
"@sap/xsodata": "^8.
|
|
23
|
+
"@sap/xsodata": "^8.4.0",
|
|
24
24
|
"@sap/xss-secure": "^6.2.0",
|
|
25
25
|
"@sap/xssec": "^3.6.0",
|
|
26
26
|
"accept-language": "2.0.16",
|
|
27
27
|
"axios": "^1.18.1",
|
|
28
28
|
"big.js": "7.0.1",
|
|
29
|
-
"body-parser": "2.
|
|
29
|
+
"body-parser": "2.3.0",
|
|
30
30
|
"callsite": "1.0.0",
|
|
31
31
|
"compression": "1.8.1",
|
|
32
32
|
"content-type": "1.0.5",
|
|
33
33
|
"cookie": "1.1.1",
|
|
34
34
|
"cookie-parser": "1.4.7",
|
|
35
|
-
"express": "4.22.
|
|
35
|
+
"express": "4.22.2",
|
|
36
36
|
"lodash": "4.18.1",
|
|
37
37
|
"media-typer": "0.3.0",
|
|
38
38
|
"moment": "2.30.1",
|
|
@@ -105,11 +105,11 @@
|
|
|
105
105
|
"license": "MIT"
|
|
106
106
|
},
|
|
107
107
|
"node_modules/@sap/hdbext": {
|
|
108
|
-
"version": "8.1.
|
|
108
|
+
"version": "8.1.14",
|
|
109
109
|
"license": "SEE LICENSE IN LICENSE file",
|
|
110
110
|
"dependencies": {
|
|
111
111
|
"@sap/e2e-trace": "6.0.0",
|
|
112
|
-
"@sap/hana-client": "2.
|
|
112
|
+
"@sap/hana-client": "2.29.23",
|
|
113
113
|
"accept-language": "2.0.16",
|
|
114
114
|
"async": "3.2.6",
|
|
115
115
|
"debug": "4.4.3",
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
}
|
|
132
132
|
},
|
|
133
133
|
"node_modules/@sap/hdbext/node_modules/@sap/hana-client": {
|
|
134
|
-
"version": "2.
|
|
134
|
+
"version": "2.29.23",
|
|
135
135
|
"hasInstallScript": true,
|
|
136
136
|
"license": "SEE LICENSE IN developer-license-3_2.txt",
|
|
137
137
|
"dependencies": {
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
}
|
|
167
167
|
},
|
|
168
168
|
"node_modules/@sap/instance-manager/node_modules/@sap/xssec": {
|
|
169
|
-
"version": "4.13.
|
|
169
|
+
"version": "4.13.3",
|
|
170
170
|
"license": "SAP DEVELOPER LICENSE AGREEMENT",
|
|
171
171
|
"dependencies": {
|
|
172
172
|
"debug": "^4.4.3",
|
|
@@ -234,38 +234,26 @@
|
|
|
234
234
|
}
|
|
235
235
|
},
|
|
236
236
|
"node_modules/@sap/xsodata": {
|
|
237
|
-
"version": "8.
|
|
237
|
+
"version": "8.4.0",
|
|
238
238
|
"license": "SEE LICENSE IN developer-license-3.1.txt",
|
|
239
239
|
"dependencies": {
|
|
240
|
-
"@sap/xsenv": "
|
|
240
|
+
"@sap/xsenv": "6.2.1",
|
|
241
241
|
"@sap/xssec": "3.6.2",
|
|
242
242
|
"async": "3.2.6",
|
|
243
243
|
"big.js": "7.0.1",
|
|
244
|
-
"body-parser": "1.20.
|
|
245
|
-
"hdb": "
|
|
244
|
+
"body-parser": "1.20.5",
|
|
245
|
+
"hdb": "2.27.1",
|
|
246
246
|
"lodash": "4.18.1",
|
|
247
247
|
"negotiator": "1.0.0",
|
|
248
248
|
"rwlock": "5.0.0",
|
|
249
249
|
"xml-writer": "1.7.0"
|
|
250
250
|
},
|
|
251
251
|
"engines": {
|
|
252
|
-
"node": "^
|
|
253
|
-
}
|
|
254
|
-
},
|
|
255
|
-
"node_modules/@sap/xsodata/node_modules/@sap/xsenv": {
|
|
256
|
-
"version": "5.6.1",
|
|
257
|
-
"license": "SEE LICENSE IN LICENSE file",
|
|
258
|
-
"dependencies": {
|
|
259
|
-
"debug": "4.4.0",
|
|
260
|
-
"node-cache": "^5.1.2",
|
|
261
|
-
"verror": "1.10.1"
|
|
262
|
-
},
|
|
263
|
-
"engines": {
|
|
264
|
-
"node": "^18.0.0 || ^20.0.0 || ^22.0.0"
|
|
252
|
+
"node": "^20 || ^22 || ^24"
|
|
265
253
|
}
|
|
266
254
|
},
|
|
267
255
|
"node_modules/@sap/xsodata/node_modules/body-parser": {
|
|
268
|
-
"version": "1.20.
|
|
256
|
+
"version": "1.20.5",
|
|
269
257
|
"license": "MIT",
|
|
270
258
|
"dependencies": {
|
|
271
259
|
"bytes": "~3.1.2",
|
|
@@ -276,7 +264,7 @@
|
|
|
276
264
|
"http-errors": "~2.0.1",
|
|
277
265
|
"iconv-lite": "~0.4.24",
|
|
278
266
|
"on-finished": "~2.4.1",
|
|
279
|
-
"qs": "~6.
|
|
267
|
+
"qs": "~6.15.1",
|
|
280
268
|
"raw-body": "~2.5.3",
|
|
281
269
|
"type-is": "~1.6.18",
|
|
282
270
|
"unpipe": "~1.0.0"
|
|
@@ -286,32 +274,13 @@
|
|
|
286
274
|
"npm": "1.2.8000 || >= 1.4.16"
|
|
287
275
|
}
|
|
288
276
|
},
|
|
289
|
-
"node_modules/@sap/xsodata/node_modules/
|
|
277
|
+
"node_modules/@sap/xsodata/node_modules/debug": {
|
|
290
278
|
"version": "2.6.9",
|
|
291
279
|
"license": "MIT",
|
|
292
280
|
"dependencies": {
|
|
293
281
|
"ms": "2.0.0"
|
|
294
282
|
}
|
|
295
283
|
},
|
|
296
|
-
"node_modules/@sap/xsodata/node_modules/body-parser/node_modules/ms": {
|
|
297
|
-
"version": "2.0.0",
|
|
298
|
-
"license": "MIT"
|
|
299
|
-
},
|
|
300
|
-
"node_modules/@sap/xsodata/node_modules/debug": {
|
|
301
|
-
"version": "4.4.0",
|
|
302
|
-
"license": "MIT",
|
|
303
|
-
"dependencies": {
|
|
304
|
-
"ms": "^2.1.3"
|
|
305
|
-
},
|
|
306
|
-
"engines": {
|
|
307
|
-
"node": ">=6.0"
|
|
308
|
-
},
|
|
309
|
-
"peerDependenciesMeta": {
|
|
310
|
-
"supports-color": {
|
|
311
|
-
"optional": true
|
|
312
|
-
}
|
|
313
|
-
}
|
|
314
|
-
},
|
|
315
284
|
"node_modules/@sap/xsodata/node_modules/iconv-lite": {
|
|
316
285
|
"version": "0.4.24",
|
|
317
286
|
"license": "MIT",
|
|
@@ -322,6 +291,10 @@
|
|
|
322
291
|
"node": ">=0.10.0"
|
|
323
292
|
}
|
|
324
293
|
},
|
|
294
|
+
"node_modules/@sap/xsodata/node_modules/ms": {
|
|
295
|
+
"version": "2.0.0",
|
|
296
|
+
"license": "MIT"
|
|
297
|
+
},
|
|
325
298
|
"node_modules/@sap/xsodata/node_modules/raw-body": {
|
|
326
299
|
"version": "2.5.3",
|
|
327
300
|
"license": "MIT",
|
|
@@ -456,18 +429,18 @@
|
|
|
456
429
|
}
|
|
457
430
|
},
|
|
458
431
|
"node_modules/body-parser": {
|
|
459
|
-
"version": "2.
|
|
432
|
+
"version": "2.3.0",
|
|
460
433
|
"license": "MIT",
|
|
461
434
|
"dependencies": {
|
|
462
435
|
"bytes": "^3.1.2",
|
|
463
|
-
"content-type": "^
|
|
436
|
+
"content-type": "^2.0.0",
|
|
464
437
|
"debug": "^4.4.3",
|
|
465
|
-
"http-errors": "^2.0.
|
|
466
|
-
"iconv-lite": "^0.7.
|
|
438
|
+
"http-errors": "^2.0.1",
|
|
439
|
+
"iconv-lite": "^0.7.2",
|
|
467
440
|
"on-finished": "^2.4.1",
|
|
468
|
-
"qs": "^6.
|
|
469
|
-
"raw-body": "^3.0.
|
|
470
|
-
"type-is": "^2.0
|
|
441
|
+
"qs": "^6.15.2",
|
|
442
|
+
"raw-body": "^3.0.2",
|
|
443
|
+
"type-is": "^2.1.0"
|
|
471
444
|
},
|
|
472
445
|
"engines": {
|
|
473
446
|
"node": ">=18"
|
|
@@ -477,6 +450,17 @@
|
|
|
477
450
|
"url": "https://opencollective.com/express"
|
|
478
451
|
}
|
|
479
452
|
},
|
|
453
|
+
"node_modules/body-parser/node_modules/content-type": {
|
|
454
|
+
"version": "2.0.0",
|
|
455
|
+
"license": "MIT",
|
|
456
|
+
"engines": {
|
|
457
|
+
"node": ">=18"
|
|
458
|
+
},
|
|
459
|
+
"funding": {
|
|
460
|
+
"type": "opencollective",
|
|
461
|
+
"url": "https://opencollective.com/express"
|
|
462
|
+
}
|
|
463
|
+
},
|
|
480
464
|
"node_modules/buffer-crc32": {
|
|
481
465
|
"version": "0.2.13",
|
|
482
466
|
"license": "MIT",
|
|
@@ -753,12 +737,12 @@
|
|
|
753
737
|
}
|
|
754
738
|
},
|
|
755
739
|
"node_modules/express": {
|
|
756
|
-
"version": "4.22.
|
|
740
|
+
"version": "4.22.2",
|
|
757
741
|
"license": "MIT",
|
|
758
742
|
"dependencies": {
|
|
759
743
|
"accepts": "~1.3.8",
|
|
760
744
|
"array-flatten": "1.1.1",
|
|
761
|
-
"body-parser": "~1.20.
|
|
745
|
+
"body-parser": "~1.20.5",
|
|
762
746
|
"content-disposition": "~0.5.4",
|
|
763
747
|
"content-type": "~1.0.4",
|
|
764
748
|
"cookie": "~0.7.1",
|
|
@@ -777,7 +761,7 @@
|
|
|
777
761
|
"parseurl": "~1.3.3",
|
|
778
762
|
"path-to-regexp": "~0.1.12",
|
|
779
763
|
"proxy-addr": "~2.0.7",
|
|
780
|
-
"qs": "~6.
|
|
764
|
+
"qs": "~6.15.1",
|
|
781
765
|
"range-parser": "~1.2.1",
|
|
782
766
|
"safe-buffer": "5.2.1",
|
|
783
767
|
"send": "~0.19.0",
|
|
@@ -797,7 +781,7 @@
|
|
|
797
781
|
}
|
|
798
782
|
},
|
|
799
783
|
"node_modules/express/node_modules/body-parser": {
|
|
800
|
-
"version": "1.20.
|
|
784
|
+
"version": "1.20.6",
|
|
801
785
|
"license": "MIT",
|
|
802
786
|
"dependencies": {
|
|
803
787
|
"bytes": "~3.1.2",
|
|
@@ -818,20 +802,6 @@
|
|
|
818
802
|
"npm": "1.2.8000 || >= 1.4.16"
|
|
819
803
|
}
|
|
820
804
|
},
|
|
821
|
-
"node_modules/express/node_modules/body-parser/node_modules/qs": {
|
|
822
|
-
"version": "6.15.3",
|
|
823
|
-
"license": "BSD-3-Clause",
|
|
824
|
-
"dependencies": {
|
|
825
|
-
"es-define-property": "^1.0.1",
|
|
826
|
-
"side-channel": "^1.1.1"
|
|
827
|
-
},
|
|
828
|
-
"engines": {
|
|
829
|
-
"node": ">=0.6"
|
|
830
|
-
},
|
|
831
|
-
"funding": {
|
|
832
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
833
|
-
}
|
|
834
|
-
},
|
|
835
805
|
"node_modules/express/node_modules/cookie": {
|
|
836
806
|
"version": "0.7.2",
|
|
837
807
|
"license": "MIT",
|
|
@@ -1062,23 +1032,30 @@
|
|
|
1062
1032
|
}
|
|
1063
1033
|
},
|
|
1064
1034
|
"node_modules/hdb": {
|
|
1065
|
-
"version": "
|
|
1035
|
+
"version": "2.27.1",
|
|
1066
1036
|
"license": "Apache-2.0",
|
|
1067
1037
|
"dependencies": {
|
|
1068
|
-
"iconv-lite": "
|
|
1038
|
+
"iconv-lite": "0.7.0"
|
|
1069
1039
|
},
|
|
1070
1040
|
"engines": {
|
|
1071
|
-
"node": ">=
|
|
1041
|
+
"node": ">= 18"
|
|
1042
|
+
},
|
|
1043
|
+
"optionalDependencies": {
|
|
1044
|
+
"lz4-wasm-nodejs": "0.9.2"
|
|
1072
1045
|
}
|
|
1073
1046
|
},
|
|
1074
1047
|
"node_modules/hdb/node_modules/iconv-lite": {
|
|
1075
|
-
"version": "0.
|
|
1048
|
+
"version": "0.7.0",
|
|
1076
1049
|
"license": "MIT",
|
|
1077
1050
|
"dependencies": {
|
|
1078
|
-
"safer-buffer": ">= 2.1.2 < 3"
|
|
1051
|
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
1079
1052
|
},
|
|
1080
1053
|
"engines": {
|
|
1081
1054
|
"node": ">=0.10.0"
|
|
1055
|
+
},
|
|
1056
|
+
"funding": {
|
|
1057
|
+
"type": "opencollective",
|
|
1058
|
+
"url": "https://opencollective.com/express"
|
|
1082
1059
|
}
|
|
1083
1060
|
},
|
|
1084
1061
|
"node_modules/http-errors": {
|
|
@@ -1125,7 +1102,7 @@
|
|
|
1125
1102
|
}
|
|
1126
1103
|
},
|
|
1127
1104
|
"node_modules/iconv-lite": {
|
|
1128
|
-
"version": "0.7.
|
|
1105
|
+
"version": "0.7.3",
|
|
1129
1106
|
"license": "MIT",
|
|
1130
1107
|
"dependencies": {
|
|
1131
1108
|
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
@@ -1226,12 +1203,17 @@
|
|
|
1226
1203
|
"license": "MIT"
|
|
1227
1204
|
},
|
|
1228
1205
|
"node_modules/lru-cache": {
|
|
1229
|
-
"version": "11.5.
|
|
1206
|
+
"version": "11.5.2",
|
|
1230
1207
|
"license": "BlueOak-1.0.0",
|
|
1231
1208
|
"engines": {
|
|
1232
1209
|
"node": "20 || >=22"
|
|
1233
1210
|
}
|
|
1234
1211
|
},
|
|
1212
|
+
"node_modules/lz4-wasm-nodejs": {
|
|
1213
|
+
"version": "0.9.2",
|
|
1214
|
+
"license": "MIT",
|
|
1215
|
+
"optional": true
|
|
1216
|
+
},
|
|
1235
1217
|
"node_modules/math-intrinsics": {
|
|
1236
1218
|
"version": "1.1.0",
|
|
1237
1219
|
"license": "MIT",
|
|
@@ -1484,10 +1466,11 @@
|
|
|
1484
1466
|
}
|
|
1485
1467
|
},
|
|
1486
1468
|
"node_modules/qs": {
|
|
1487
|
-
"version": "6.
|
|
1469
|
+
"version": "6.15.3",
|
|
1488
1470
|
"license": "BSD-3-Clause",
|
|
1489
1471
|
"dependencies": {
|
|
1490
|
-
"
|
|
1472
|
+
"es-define-property": "^1.0.1",
|
|
1473
|
+
"side-channel": "^1.1.1"
|
|
1491
1474
|
},
|
|
1492
1475
|
"engines": {
|
|
1493
1476
|
"node": ">=0.6"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/async-xsjs",
|
|
3
3
|
"description": "Compatibility layer to run XS Classic applications on XS Advanced",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.4",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "git@github.wdf.sap.corp:xs2/async-xsjs.git"
|
|
7
7
|
},
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@sap/audit-logging": "^7.0.1",
|
|
12
12
|
"@sap/e2e-trace": "^6.2.1",
|
|
13
13
|
"@sap/hana-client": "2.28.21",
|
|
14
|
-
"@sap/hdbext": "8.1.
|
|
14
|
+
"@sap/hdbext": "8.1.14",
|
|
15
15
|
"@sap/instance-manager": "^5.2.6",
|
|
16
16
|
"@sap/jobs-client": "^1.9.1",
|
|
17
17
|
"@sap/logging": "^9.2.1",
|
|
@@ -19,18 +19,18 @@
|
|
|
19
19
|
"@sap/node-vsi": "^1.4.34",
|
|
20
20
|
"@sap/textbundle": "^6.2.0",
|
|
21
21
|
"@sap/xsenv": "^6.2.1",
|
|
22
|
-
"@sap/xsodata": "^8.
|
|
22
|
+
"@sap/xsodata": "^8.4.0",
|
|
23
23
|
"@sap/xss-secure": "^6.2.0",
|
|
24
24
|
"@sap/xssec": "^3.6.0",
|
|
25
25
|
"accept-language": "2.0.16",
|
|
26
26
|
"big.js": "7.0.1",
|
|
27
|
-
"body-parser": "2.
|
|
27
|
+
"body-parser": "2.3.0",
|
|
28
28
|
"callsite": "1.0.0",
|
|
29
29
|
"compression": "1.8.1",
|
|
30
30
|
"content-type": "1.0.5",
|
|
31
31
|
"cookie": "1.1.1",
|
|
32
32
|
"cookie-parser": "1.4.7",
|
|
33
|
-
"express": "4.22.
|
|
33
|
+
"express": "4.22.2",
|
|
34
34
|
"lodash": "4.18.1",
|
|
35
35
|
"media-typer": "0.3.0",
|
|
36
36
|
"moment": "2.30.1",
|