@sap/async-xsjs 1.0.6 → 1.0.7

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
@@ -5,6 +5,20 @@ 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="1.0.7"></a>
9
+ ## 1.0.7 - 2023-10-03
10
+
11
+ ### Updated
12
+ - Updated hana-client to v2.18.24
13
+ - Updated hdbext to v8.0.0
14
+ - Updated xssec to v3.3.5
15
+ - Updated audit-logging to v5.7.1
16
+
17
+
18
+ ### Fixed
19
+ - Fixed Sql script job runner
20
+
21
+
8
22
  <a name="1.0.6"></a>
9
23
  ## 1.0.6 - 2023-06-23
10
24
 
@@ -1,3 +1,4 @@
1
+ /* eslint-disable */
1
2
  'use strict';
2
3
 
3
4
  var assert = require('assert');
@@ -8,29 +9,44 @@ module.exports = SqlScriptJobRunner;
8
9
 
9
10
 
10
11
  function SqlScriptJobRunner(dbReqOptions) {
11
- assert(dbReqOptions, 'Valid dbReqOptions expected');
12
- this._dbReqOptions = dbReqOptions;
12
+ assert(dbReqOptions, 'Valid dbReqOptions expected');
13
+ this._dbReqOptions = dbReqOptions;
13
14
  }
14
15
 
15
- SqlScriptJobRunner.prototype.run = async function(job, inputParams) {
16
- var self = this;
17
- var hanaOptions;
18
- var hdbClient;
19
-
20
- var hanaOpts = await this._dbReqOptions.getInstanceOptionsPromise();
21
- hanaOptions = hanaOpts;
22
- var client = await connection.connect(hanaOptions);
23
- hdbClient = client;
24
- client.setAutoCommit(true);
25
- var procedure = await hdbext.loadProcedurePromise(client, hanaOptions.schema, self._defineSqlProcName(job.action));
26
- await procedure(inputParams);
27
- hdbClient && await hdbClient.close();
16
+ SqlScriptJobRunner.prototype.run = async function (job, inputParams) {
17
+ var hanaOptions = await this._dbReqOptions.getInstanceOptionsPromise();
18
+ var client = await connection.connect(hanaOptions);
19
+ client.setAutoCommit(true);
20
+
21
+ try {
22
+ await this._execProc(client, hanaOptions.schema, job.action, inputParams);
23
+ } finally {
24
+ client && client.close(function () {
25
+ });
26
+ }
28
27
  };
29
28
 
30
- SqlScriptJobRunner.prototype._defineSqlProcName = function(action) {
31
- if (!action.packagename) {
32
- return action.funcname;
33
- }
29
+ SqlScriptJobRunner.prototype._execProc = function (client, schema, procName, inputParams) {
30
+ return new Promise((resolve, reject) => {
31
+ hdbext.loadProcedurePromise(client, schema, procName)
32
+ .then((procedure) => {
33
+ procedure(inputParams, function () {
34
+ var err = arguments[0];
35
+ if (err) {
36
+ reject(err);
37
+ } else {
38
+ resolve();
39
+ }
40
+ });
41
+ });
42
+ });
43
+ };
44
+
45
+
46
+ SqlScriptJobRunner.prototype._defineSqlProcName = function (action) {
47
+ if (!action.packagename) {
48
+ return action.funcname;
49
+ }
34
50
 
35
- return action.packagename + '::' + action.funcname;
51
+ return action.packagename + '::' + action.funcname;
36
52
  };
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@sap/async-xsjs",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@sap/async-xsjs",
9
- "version": "1.0.6",
9
+ "version": "1.0.7",
10
10
  "license": "SEE LICENSE IN LICENSE file",
11
11
  "dependencies": {
12
- "@sap/audit-logging": "^5.7.0",
12
+ "@sap/audit-logging": "^5.7.1",
13
13
  "@sap/e2e-trace": "^3.2.0",
14
- "@sap/hana-client": "2.17.14",
15
- "@sap/hdbext": "^7.7.5",
14
+ "@sap/hana-client": "^2.18.24",
15
+ "@sap/hdbext": "^8.0.0",
16
16
  "@sap/instance-manager": "^3.5.3",
17
17
  "@sap/jobs-client": "^1.7.43",
18
18
  "@sap/logging": "^6.2.0",
@@ -24,7 +24,7 @@
24
24
  "@sap/xsenv": "^3.4.0",
25
25
  "@sap/xsodata": "^8.0.2",
26
26
  "@sap/xss-secure": "^4.1.0",
27
- "@sap/xssec": "^3.2.17",
27
+ "@sap/xssec": "^3.3.5",
28
28
  "accept-language": "2.0.16",
29
29
  "axios": "^1.3.5",
30
30
  "big.js": "5.0.2",
@@ -53,10 +53,10 @@
53
53
  }
54
54
  },
55
55
  "node_modules/@sap/audit-logging": {
56
- "version": "5.7.0",
56
+ "version": "5.7.1",
57
57
  "dependencies": {
58
58
  "@sap/xssec": "^3.2.17",
59
- "debug": "4.3.3",
59
+ "debug": "4.3.4",
60
60
  "fetch-retry": "4.1.0",
61
61
  "node-cache": "5.1.0",
62
62
  "node-fetch": "2.6.7"
@@ -75,7 +75,7 @@
75
75
  }
76
76
  },
77
77
  "node_modules/@sap/hana-client": {
78
- "version": "2.17.14",
78
+ "version": "2.18.24",
79
79
  "hasInstallScript": true,
80
80
  "dependencies": {
81
81
  "debug": "3.1.0"
@@ -94,10 +94,10 @@
94
94
  "version": "2.0.0"
95
95
  },
96
96
  "node_modules/@sap/hdbext": {
97
- "version": "7.7.5",
97
+ "version": "8.0.0",
98
98
  "dependencies": {
99
99
  "@sap/e2e-trace": "^3.1.0",
100
- "@sap/hana-client": "2.17.14",
100
+ "@sap/hana-client": "2.17.21",
101
101
  "accept-language": "2.0.16",
102
102
  "async": "3.2.2",
103
103
  "debug": "4.3.1",
@@ -105,9 +105,28 @@
105
105
  "verror": "1.10.0"
106
106
  },
107
107
  "engines": {
108
- "node": "^10.0.0 || ^12.0.0 || ^14.0.0 || ^16.0.0 || ^18.0.0"
108
+ "node": "^12.0.0 || ^14.0.0 || ^16.0.0 || ^18.0.0"
109
109
  }
110
110
  },
111
+ "node_modules/@sap/hdbext/node_modules/@sap/hana-client": {
112
+ "version": "2.17.21",
113
+ "hasInstallScript": true,
114
+ "dependencies": {
115
+ "debug": "3.1.0"
116
+ },
117
+ "engines": {
118
+ "node": ">=4.0.0"
119
+ }
120
+ },
121
+ "node_modules/@sap/hdbext/node_modules/@sap/hana-client/node_modules/debug": {
122
+ "version": "3.1.0",
123
+ "dependencies": {
124
+ "ms": "2.0.0"
125
+ }
126
+ },
127
+ "node_modules/@sap/hdbext/node_modules/@sap/hana-client/node_modules/ms": {
128
+ "version": "2.0.0"
129
+ },
111
130
  "node_modules/@sap/hdbext/node_modules/debug": {
112
131
  "version": "4.3.1",
113
132
  "dependencies": {
@@ -136,6 +155,20 @@
136
155
  "node": "^10.0.0 || ^12.0.0 || ^14.0.0 || ^16.0.0 || ^18"
137
156
  }
138
157
  },
158
+ "node_modules/@sap/instance-manager/node_modules/debug": {
159
+ "version": "4.3.3",
160
+ "dependencies": {
161
+ "ms": "2.1.2"
162
+ },
163
+ "engines": {
164
+ "node": ">=6.0"
165
+ },
166
+ "peerDependenciesMeta": {
167
+ "supports-color": {
168
+ "optional": true
169
+ }
170
+ }
171
+ },
139
172
  "node_modules/@sap/jobs-client": {
140
173
  "version": "1.7.47",
141
174
  "dependencies": {
@@ -203,6 +236,20 @@
203
236
  "node": "^10.0.0 || ^12.0.0 || ^14.0.0 || ^16.0.0 || ^18.0.0"
204
237
  }
205
238
  },
239
+ "node_modules/@sap/xsenv/node_modules/debug": {
240
+ "version": "4.3.3",
241
+ "dependencies": {
242
+ "ms": "2.1.2"
243
+ },
244
+ "engines": {
245
+ "node": ">=6.0"
246
+ },
247
+ "peerDependenciesMeta": {
248
+ "supports-color": {
249
+ "optional": true
250
+ }
251
+ }
252
+ },
206
253
  "node_modules/@sap/xsodata": {
207
254
  "version": "8.1.0",
208
255
  "dependencies": {
@@ -221,9 +268,29 @@
221
268
  "node": "^14 || ^16 || ^18"
222
269
  }
223
270
  },
271
+ "node_modules/@sap/xsodata/node_modules/@sap/xssec": {
272
+ "version": "3.2.17",
273
+ "dependencies": {
274
+ "axios": "^0.26.0",
275
+ "debug": "^4.3.2",
276
+ "jsonwebtoken": "^9.0.0",
277
+ "lru-cache": "^6.0.0",
278
+ "node-rsa": "^1.1.1",
279
+ "valid-url": "1.0.9"
280
+ },
281
+ "engines": {
282
+ "node": ">=12.0.0"
283
+ }
284
+ },
224
285
  "node_modules/@sap/xsodata/node_modules/async": {
225
286
  "version": "3.2.4"
226
287
  },
288
+ "node_modules/@sap/xsodata/node_modules/axios": {
289
+ "version": "0.26.1",
290
+ "dependencies": {
291
+ "follow-redirects": "^1.14.8"
292
+ }
293
+ },
227
294
  "node_modules/@sap/xsodata/node_modules/big.js": {
228
295
  "version": "6.2.1",
229
296
  "engines": {
@@ -251,18 +318,18 @@
251
318
  "npm": "1.2.8000 || >= 1.4.16"
252
319
  }
253
320
  },
321
+ "node_modules/@sap/xsodata/node_modules/body-parser/node_modules/debug": {
322
+ "version": "2.6.9",
323
+ "dependencies": {
324
+ "ms": "2.0.0"
325
+ }
326
+ },
254
327
  "node_modules/@sap/xsodata/node_modules/content-type": {
255
328
  "version": "1.0.5",
256
329
  "engines": {
257
330
  "node": ">= 0.6"
258
331
  }
259
332
  },
260
- "node_modules/@sap/xsodata/node_modules/debug": {
261
- "version": "2.6.9",
262
- "dependencies": {
263
- "ms": "2.0.0"
264
- }
265
- },
266
333
  "node_modules/@sap/xsodata/node_modules/depd": {
267
334
  "version": "2.0.0",
268
335
  "engines": {
@@ -291,6 +358,15 @@
291
358
  "node": ">= 0.8"
292
359
  }
293
360
  },
361
+ "node_modules/@sap/xsodata/node_modules/lru-cache": {
362
+ "version": "6.0.0",
363
+ "dependencies": {
364
+ "yallist": "^4.0.0"
365
+ },
366
+ "engines": {
367
+ "node": ">=10"
368
+ }
369
+ },
294
370
  "node_modules/@sap/xsodata/node_modules/ms": {
295
371
  "version": "2.0.0"
296
372
  },
@@ -330,6 +406,9 @@
330
406
  "node": ">= 0.8"
331
407
  }
332
408
  },
409
+ "node_modules/@sap/xsodata/node_modules/yallist": {
410
+ "version": "4.0.0"
411
+ },
333
412
  "node_modules/@sap/xss-secure": {
334
413
  "version": "4.2.0",
335
414
  "engines": {
@@ -337,17 +416,17 @@
337
416
  }
338
417
  },
339
418
  "node_modules/@sap/xssec": {
340
- "version": "3.2.17",
419
+ "version": "3.3.5",
341
420
  "dependencies": {
342
421
  "axios": "^0.26.0",
343
422
  "debug": "^4.3.2",
344
- "jsonwebtoken": "^9.0.0",
423
+ "jsonwebtoken": "^9.0.2",
345
424
  "lru-cache": "^6.0.0",
346
425
  "node-rsa": "^1.1.1",
347
426
  "valid-url": "1.0.9"
348
427
  },
349
428
  "engines": {
350
- "node": ">=12.0.0"
429
+ "node": ">=16.1.0"
351
430
  }
352
431
  },
353
432
  "node_modules/@sap/xssec/node_modules/axios": {
@@ -406,7 +485,7 @@
406
485
  "version": "0.4.0"
407
486
  },
408
487
  "node_modules/axios": {
409
- "version": "1.4.0",
488
+ "version": "1.5.1",
410
489
  "dependencies": {
411
490
  "follow-redirects": "^1.15.0",
412
491
  "form-data": "^4.0.0",
@@ -587,7 +666,7 @@
587
666
  "version": "1.0.2"
588
667
  },
589
668
  "node_modules/debug": {
590
- "version": "4.3.3",
669
+ "version": "4.3.4",
591
670
  "dependencies": {
592
671
  "ms": "2.1.2"
593
672
  },
@@ -837,7 +916,7 @@
837
916
  }
838
917
  },
839
918
  "node_modules/follow-redirects": {
840
- "version": "1.15.2",
919
+ "version": "1.15.3",
841
920
  "engines": {
842
921
  "node": ">=4.0"
843
922
  },
@@ -883,10 +962,7 @@
883
962
  }
884
963
  },
885
964
  "node_modules/has": {
886
- "version": "1.0.3",
887
- "dependencies": {
888
- "function-bind": "^1.1.1"
889
- },
965
+ "version": "1.0.4",
890
966
  "engines": {
891
967
  "node": ">= 0.4.0"
892
968
  }
@@ -956,12 +1032,18 @@
956
1032
  }
957
1033
  },
958
1034
  "node_modules/jsonwebtoken": {
959
- "version": "9.0.0",
1035
+ "version": "9.0.2",
960
1036
  "dependencies": {
961
1037
  "jws": "^3.2.2",
962
- "lodash": "^4.17.21",
1038
+ "lodash.includes": "^4.3.0",
1039
+ "lodash.isboolean": "^3.0.3",
1040
+ "lodash.isinteger": "^4.0.4",
1041
+ "lodash.isnumber": "^3.0.3",
1042
+ "lodash.isplainobject": "^4.0.6",
1043
+ "lodash.isstring": "^4.0.1",
1044
+ "lodash.once": "^4.0.0",
963
1045
  "ms": "^2.1.1",
964
- "semver": "^7.3.8"
1046
+ "semver": "^7.5.4"
965
1047
  },
966
1048
  "engines": {
967
1049
  "node": ">=12",
@@ -986,6 +1068,27 @@
986
1068
  "node_modules/lodash": {
987
1069
  "version": "4.17.21"
988
1070
  },
1071
+ "node_modules/lodash.includes": {
1072
+ "version": "4.3.0"
1073
+ },
1074
+ "node_modules/lodash.isboolean": {
1075
+ "version": "3.0.3"
1076
+ },
1077
+ "node_modules/lodash.isinteger": {
1078
+ "version": "4.0.4"
1079
+ },
1080
+ "node_modules/lodash.isnumber": {
1081
+ "version": "3.0.3"
1082
+ },
1083
+ "node_modules/lodash.isplainobject": {
1084
+ "version": "4.0.6"
1085
+ },
1086
+ "node_modules/lodash.isstring": {
1087
+ "version": "4.0.1"
1088
+ },
1089
+ "node_modules/lodash.once": {
1090
+ "version": "4.1.1"
1091
+ },
989
1092
  "node_modules/lru-cache": {
990
1093
  "version": "4.1.1",
991
1094
  "dependencies": {
@@ -1227,7 +1330,7 @@
1227
1330
  "version": "1.2.4"
1228
1331
  },
1229
1332
  "node_modules/semver": {
1230
- "version": "7.5.3",
1333
+ "version": "7.5.4",
1231
1334
  "dependencies": {
1232
1335
  "lru-cache": "^6.0.0"
1233
1336
  },
@@ -1447,10 +1550,10 @@
1447
1550
  },
1448
1551
  "dependencies": {
1449
1552
  "@sap/audit-logging": {
1450
- "version": "5.7.0",
1553
+ "version": "5.7.1",
1451
1554
  "requires": {
1452
1555
  "@sap/xssec": "^3.2.17",
1453
- "debug": "4.3.3",
1556
+ "debug": "4.3.4",
1454
1557
  "fetch-retry": "4.1.0",
1455
1558
  "node-cache": "5.1.0",
1456
1559
  "node-fetch": "2.6.7"
@@ -1463,7 +1566,7 @@
1463
1566
  }
1464
1567
  },
1465
1568
  "@sap/hana-client": {
1466
- "version": "2.17.14",
1569
+ "version": "2.18.24",
1467
1570
  "requires": {
1468
1571
  "debug": "3.1.0"
1469
1572
  },
@@ -1480,10 +1583,10 @@
1480
1583
  }
1481
1584
  },
1482
1585
  "@sap/hdbext": {
1483
- "version": "7.7.5",
1586
+ "version": "8.0.0",
1484
1587
  "requires": {
1485
1588
  "@sap/e2e-trace": "^3.1.0",
1486
- "@sap/hana-client": "2.17.14",
1589
+ "@sap/hana-client": "2.17.21",
1487
1590
  "accept-language": "2.0.16",
1488
1591
  "async": "3.2.2",
1489
1592
  "debug": "4.3.1",
@@ -1491,6 +1594,23 @@
1491
1594
  "verror": "1.10.0"
1492
1595
  },
1493
1596
  "dependencies": {
1597
+ "@sap/hana-client": {
1598
+ "version": "2.17.21",
1599
+ "requires": {
1600
+ "debug": "3.1.0"
1601
+ },
1602
+ "dependencies": {
1603
+ "debug": {
1604
+ "version": "3.1.0",
1605
+ "requires": {
1606
+ "ms": "2.0.0"
1607
+ }
1608
+ },
1609
+ "ms": {
1610
+ "version": "2.0.0"
1611
+ }
1612
+ }
1613
+ },
1494
1614
  "debug": {
1495
1615
  "version": "4.3.1",
1496
1616
  "requires": {
@@ -1508,6 +1628,14 @@
1508
1628
  "lru-cache": "4.1.1",
1509
1629
  "node-fetch": "2.6.7",
1510
1630
  "uuid": "7.0.0"
1631
+ },
1632
+ "dependencies": {
1633
+ "debug": {
1634
+ "version": "4.3.3",
1635
+ "requires": {
1636
+ "ms": "2.1.2"
1637
+ }
1638
+ }
1511
1639
  }
1512
1640
  },
1513
1641
  "@sap/jobs-client": {
@@ -1548,6 +1676,14 @@
1548
1676
  "debug": "4.3.3",
1549
1677
  "node-cache": "^5.1.0",
1550
1678
  "verror": "1.10.0"
1679
+ },
1680
+ "dependencies": {
1681
+ "debug": {
1682
+ "version": "4.3.3",
1683
+ "requires": {
1684
+ "ms": "2.1.2"
1685
+ }
1686
+ }
1551
1687
  }
1552
1688
  },
1553
1689
  "@sap/xsodata": {
@@ -1565,9 +1701,26 @@
1565
1701
  "xml-writer": "1.7.0"
1566
1702
  },
1567
1703
  "dependencies": {
1704
+ "@sap/xssec": {
1705
+ "version": "3.2.17",
1706
+ "requires": {
1707
+ "axios": "^0.26.0",
1708
+ "debug": "^4.3.2",
1709
+ "jsonwebtoken": "^9.0.0",
1710
+ "lru-cache": "^6.0.0",
1711
+ "node-rsa": "^1.1.1",
1712
+ "valid-url": "1.0.9"
1713
+ }
1714
+ },
1568
1715
  "async": {
1569
1716
  "version": "3.2.4"
1570
1717
  },
1718
+ "axios": {
1719
+ "version": "0.26.1",
1720
+ "requires": {
1721
+ "follow-redirects": "^1.14.8"
1722
+ }
1723
+ },
1571
1724
  "big.js": {
1572
1725
  "version": "6.2.1"
1573
1726
  },
@@ -1586,17 +1739,19 @@
1586
1739
  "raw-body": "2.5.1",
1587
1740
  "type-is": "~1.6.18",
1588
1741
  "unpipe": "1.0.0"
1742
+ },
1743
+ "dependencies": {
1744
+ "debug": {
1745
+ "version": "2.6.9",
1746
+ "requires": {
1747
+ "ms": "2.0.0"
1748
+ }
1749
+ }
1589
1750
  }
1590
1751
  },
1591
1752
  "content-type": {
1592
1753
  "version": "1.0.5"
1593
1754
  },
1594
- "debug": {
1595
- "version": "2.6.9",
1596
- "requires": {
1597
- "ms": "2.0.0"
1598
- }
1599
- },
1600
1755
  "depd": {
1601
1756
  "version": "2.0.0"
1602
1757
  },
@@ -1616,6 +1771,12 @@
1616
1771
  "toidentifier": "1.0.1"
1617
1772
  }
1618
1773
  },
1774
+ "lru-cache": {
1775
+ "version": "6.0.0",
1776
+ "requires": {
1777
+ "yallist": "^4.0.0"
1778
+ }
1779
+ },
1619
1780
  "ms": {
1620
1781
  "version": "2.0.0"
1621
1782
  },
@@ -1642,6 +1803,9 @@
1642
1803
  },
1643
1804
  "statuses": {
1644
1805
  "version": "2.0.1"
1806
+ },
1807
+ "yallist": {
1808
+ "version": "4.0.0"
1645
1809
  }
1646
1810
  }
1647
1811
  },
@@ -1649,11 +1813,11 @@
1649
1813
  "version": "4.2.0"
1650
1814
  },
1651
1815
  "@sap/xssec": {
1652
- "version": "3.2.17",
1816
+ "version": "3.3.5",
1653
1817
  "requires": {
1654
1818
  "axios": "^0.26.0",
1655
1819
  "debug": "^4.3.2",
1656
- "jsonwebtoken": "^9.0.0",
1820
+ "jsonwebtoken": "^9.0.2",
1657
1821
  "lru-cache": "^6.0.0",
1658
1822
  "node-rsa": "^1.1.1",
1659
1823
  "valid-url": "1.0.9"
@@ -1708,7 +1872,7 @@
1708
1872
  "version": "0.4.0"
1709
1873
  },
1710
1874
  "axios": {
1711
- "version": "1.4.0",
1875
+ "version": "1.5.1",
1712
1876
  "requires": {
1713
1877
  "follow-redirects": "^1.15.0",
1714
1878
  "form-data": "^4.0.0",
@@ -1846,7 +2010,7 @@
1846
2010
  "version": "1.0.2"
1847
2011
  },
1848
2012
  "debug": {
1849
- "version": "4.3.3",
2013
+ "version": "4.3.4",
1850
2014
  "requires": {
1851
2015
  "ms": "2.1.2"
1852
2016
  }
@@ -2033,7 +2197,7 @@
2033
2197
  }
2034
2198
  },
2035
2199
  "follow-redirects": {
2036
- "version": "1.15.2"
2200
+ "version": "1.15.3"
2037
2201
  },
2038
2202
  "form-data": {
2039
2203
  "version": "4.0.0",
@@ -2062,10 +2226,7 @@
2062
2226
  }
2063
2227
  },
2064
2228
  "has": {
2065
- "version": "1.0.3",
2066
- "requires": {
2067
- "function-bind": "^1.1.1"
2068
- }
2229
+ "version": "1.0.4"
2069
2230
  },
2070
2231
  "has-proto": {
2071
2232
  "version": "1.0.1"
@@ -2113,12 +2274,18 @@
2113
2274
  "version": "1.9.1"
2114
2275
  },
2115
2276
  "jsonwebtoken": {
2116
- "version": "9.0.0",
2277
+ "version": "9.0.2",
2117
2278
  "requires": {
2118
2279
  "jws": "^3.2.2",
2119
- "lodash": "^4.17.21",
2280
+ "lodash.includes": "^4.3.0",
2281
+ "lodash.isboolean": "^3.0.3",
2282
+ "lodash.isinteger": "^4.0.4",
2283
+ "lodash.isnumber": "^3.0.3",
2284
+ "lodash.isplainobject": "^4.0.6",
2285
+ "lodash.isstring": "^4.0.1",
2286
+ "lodash.once": "^4.0.0",
2120
2287
  "ms": "^2.1.1",
2121
- "semver": "^7.3.8"
2288
+ "semver": "^7.5.4"
2122
2289
  }
2123
2290
  },
2124
2291
  "jwa": {
@@ -2139,6 +2306,27 @@
2139
2306
  "lodash": {
2140
2307
  "version": "4.17.21"
2141
2308
  },
2309
+ "lodash.includes": {
2310
+ "version": "4.3.0"
2311
+ },
2312
+ "lodash.isboolean": {
2313
+ "version": "3.0.3"
2314
+ },
2315
+ "lodash.isinteger": {
2316
+ "version": "4.0.4"
2317
+ },
2318
+ "lodash.isnumber": {
2319
+ "version": "3.0.3"
2320
+ },
2321
+ "lodash.isplainobject": {
2322
+ "version": "4.0.6"
2323
+ },
2324
+ "lodash.isstring": {
2325
+ "version": "4.0.1"
2326
+ },
2327
+ "lodash.once": {
2328
+ "version": "4.1.1"
2329
+ },
2142
2330
  "lru-cache": {
2143
2331
  "version": "4.1.1",
2144
2332
  "requires": {
@@ -2305,7 +2493,7 @@
2305
2493
  "version": "1.2.4"
2306
2494
  },
2307
2495
  "semver": {
2308
- "version": "7.5.3",
2496
+ "version": "7.5.4",
2309
2497
  "requires": {
2310
2498
  "lru-cache": "^6.0.0"
2311
2499
  },
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@sap/async-xsjs",
3
3
  "description": "Compatibility layer to run XS Classic applications on XS Advanced",
4
- "version": "1.0.6",
4
+ "version": "1.0.7",
5
5
  "repository": {},
6
6
  "license": "SEE LICENSE IN LICENSE file",
7
7
  "main": "./lib",
8
8
  "dependencies": {
9
- "@sap/audit-logging": "^5.7.0",
9
+ "@sap/audit-logging": "^5.7.1",
10
10
  "@sap/e2e-trace": "^3.2.0",
11
- "@sap/hana-client": "2.17.14",
12
- "@sap/hdbext": "^7.7.5",
11
+ "@sap/hana-client": "^2.18.24",
12
+ "@sap/hdbext": "^8.0.0",
13
13
  "@sap/instance-manager": "^3.5.3",
14
14
  "@sap/jobs-client": "^1.7.43",
15
15
  "@sap/logging": "^6.2.0",
@@ -21,7 +21,7 @@
21
21
  "@sap/xsenv": "^3.4.0",
22
22
  "@sap/xsodata": "^8.0.2",
23
23
  "@sap/xss-secure": "^4.1.0",
24
- "@sap/xssec": "^3.2.17",
24
+ "@sap/xssec": "^3.3.5",
25
25
  "accept-language": "2.0.16",
26
26
  "big.js": "5.0.2",
27
27
  "body-parser": "1.19.2",