@sap/async-xsjs 1.0.5 → 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,27 @@ 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
+
22
+ <a name="1.0.6"></a>
23
+ ## 1.0.6 - 2023-06-23
24
+
25
+ ### Updated
26
+ - Updated hana-client to v2.17.14
27
+ - Updated hdbext to v7.7.5
28
+
8
29
  <a name="1.0.5"></a>
9
30
  ## 1.0.5 - 2023-06-08
10
31
 
@@ -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.5",
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.5",
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.16.21",
15
- "@sap/hdbext": "^7.7.3",
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.16.21",
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.4",
97
+ "version": "8.0.0",
98
98
  "dependencies": {
99
99
  "@sap/e2e-trace": "^3.1.0",
100
- "@sap/hana-client": "2.16.26",
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,11 +105,11 @@
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
111
  "node_modules/@sap/hdbext/node_modules/@sap/hana-client": {
112
- "version": "2.16.26",
112
+ "version": "2.17.21",
113
113
  "hasInstallScript": true,
114
114
  "dependencies": {
115
115
  "debug": "3.1.0"
@@ -155,6 +155,20 @@
155
155
  "node": "^10.0.0 || ^12.0.0 || ^14.0.0 || ^16.0.0 || ^18"
156
156
  }
157
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
+ },
158
172
  "node_modules/@sap/jobs-client": {
159
173
  "version": "1.7.47",
160
174
  "dependencies": {
@@ -222,6 +236,20 @@
222
236
  "node": "^10.0.0 || ^12.0.0 || ^14.0.0 || ^16.0.0 || ^18.0.0"
223
237
  }
224
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
+ },
225
253
  "node_modules/@sap/xsodata": {
226
254
  "version": "8.1.0",
227
255
  "dependencies": {
@@ -240,9 +268,29 @@
240
268
  "node": "^14 || ^16 || ^18"
241
269
  }
242
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
+ },
243
285
  "node_modules/@sap/xsodata/node_modules/async": {
244
286
  "version": "3.2.4"
245
287
  },
288
+ "node_modules/@sap/xsodata/node_modules/axios": {
289
+ "version": "0.26.1",
290
+ "dependencies": {
291
+ "follow-redirects": "^1.14.8"
292
+ }
293
+ },
246
294
  "node_modules/@sap/xsodata/node_modules/big.js": {
247
295
  "version": "6.2.1",
248
296
  "engines": {
@@ -270,18 +318,18 @@
270
318
  "npm": "1.2.8000 || >= 1.4.16"
271
319
  }
272
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
+ },
273
327
  "node_modules/@sap/xsodata/node_modules/content-type": {
274
328
  "version": "1.0.5",
275
329
  "engines": {
276
330
  "node": ">= 0.6"
277
331
  }
278
332
  },
279
- "node_modules/@sap/xsodata/node_modules/debug": {
280
- "version": "2.6.9",
281
- "dependencies": {
282
- "ms": "2.0.0"
283
- }
284
- },
285
333
  "node_modules/@sap/xsodata/node_modules/depd": {
286
334
  "version": "2.0.0",
287
335
  "engines": {
@@ -310,6 +358,15 @@
310
358
  "node": ">= 0.8"
311
359
  }
312
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
+ },
313
370
  "node_modules/@sap/xsodata/node_modules/ms": {
314
371
  "version": "2.0.0"
315
372
  },
@@ -349,6 +406,9 @@
349
406
  "node": ">= 0.8"
350
407
  }
351
408
  },
409
+ "node_modules/@sap/xsodata/node_modules/yallist": {
410
+ "version": "4.0.0"
411
+ },
352
412
  "node_modules/@sap/xss-secure": {
353
413
  "version": "4.2.0",
354
414
  "engines": {
@@ -356,17 +416,17 @@
356
416
  }
357
417
  },
358
418
  "node_modules/@sap/xssec": {
359
- "version": "3.2.17",
419
+ "version": "3.3.5",
360
420
  "dependencies": {
361
421
  "axios": "^0.26.0",
362
422
  "debug": "^4.3.2",
363
- "jsonwebtoken": "^9.0.0",
423
+ "jsonwebtoken": "^9.0.2",
364
424
  "lru-cache": "^6.0.0",
365
425
  "node-rsa": "^1.1.1",
366
426
  "valid-url": "1.0.9"
367
427
  },
368
428
  "engines": {
369
- "node": ">=12.0.0"
429
+ "node": ">=16.1.0"
370
430
  }
371
431
  },
372
432
  "node_modules/@sap/xssec/node_modules/axios": {
@@ -425,7 +485,7 @@
425
485
  "version": "0.4.0"
426
486
  },
427
487
  "node_modules/axios": {
428
- "version": "1.4.0",
488
+ "version": "1.5.1",
429
489
  "dependencies": {
430
490
  "follow-redirects": "^1.15.0",
431
491
  "form-data": "^4.0.0",
@@ -606,7 +666,7 @@
606
666
  "version": "1.0.2"
607
667
  },
608
668
  "node_modules/debug": {
609
- "version": "4.3.3",
669
+ "version": "4.3.4",
610
670
  "dependencies": {
611
671
  "ms": "2.1.2"
612
672
  },
@@ -856,7 +916,7 @@
856
916
  }
857
917
  },
858
918
  "node_modules/follow-redirects": {
859
- "version": "1.15.2",
919
+ "version": "1.15.3",
860
920
  "engines": {
861
921
  "node": ">=4.0"
862
922
  },
@@ -902,10 +962,7 @@
902
962
  }
903
963
  },
904
964
  "node_modules/has": {
905
- "version": "1.0.3",
906
- "dependencies": {
907
- "function-bind": "^1.1.1"
908
- },
965
+ "version": "1.0.4",
909
966
  "engines": {
910
967
  "node": ">= 0.4.0"
911
968
  }
@@ -975,12 +1032,18 @@
975
1032
  }
976
1033
  },
977
1034
  "node_modules/jsonwebtoken": {
978
- "version": "9.0.0",
1035
+ "version": "9.0.2",
979
1036
  "dependencies": {
980
1037
  "jws": "^3.2.2",
981
- "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",
982
1045
  "ms": "^2.1.1",
983
- "semver": "^7.3.8"
1046
+ "semver": "^7.5.4"
984
1047
  },
985
1048
  "engines": {
986
1049
  "node": ">=12",
@@ -1005,6 +1068,27 @@
1005
1068
  "node_modules/lodash": {
1006
1069
  "version": "4.17.21"
1007
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
+ },
1008
1092
  "node_modules/lru-cache": {
1009
1093
  "version": "4.1.1",
1010
1094
  "dependencies": {
@@ -1246,7 +1330,7 @@
1246
1330
  "version": "1.2.4"
1247
1331
  },
1248
1332
  "node_modules/semver": {
1249
- "version": "7.5.1",
1333
+ "version": "7.5.4",
1250
1334
  "dependencies": {
1251
1335
  "lru-cache": "^6.0.0"
1252
1336
  },
@@ -1466,10 +1550,10 @@
1466
1550
  },
1467
1551
  "dependencies": {
1468
1552
  "@sap/audit-logging": {
1469
- "version": "5.7.0",
1553
+ "version": "5.7.1",
1470
1554
  "requires": {
1471
1555
  "@sap/xssec": "^3.2.17",
1472
- "debug": "4.3.3",
1556
+ "debug": "4.3.4",
1473
1557
  "fetch-retry": "4.1.0",
1474
1558
  "node-cache": "5.1.0",
1475
1559
  "node-fetch": "2.6.7"
@@ -1482,7 +1566,7 @@
1482
1566
  }
1483
1567
  },
1484
1568
  "@sap/hana-client": {
1485
- "version": "2.16.21",
1569
+ "version": "2.18.24",
1486
1570
  "requires": {
1487
1571
  "debug": "3.1.0"
1488
1572
  },
@@ -1499,10 +1583,10 @@
1499
1583
  }
1500
1584
  },
1501
1585
  "@sap/hdbext": {
1502
- "version": "7.7.4",
1586
+ "version": "8.0.0",
1503
1587
  "requires": {
1504
1588
  "@sap/e2e-trace": "^3.1.0",
1505
- "@sap/hana-client": "2.16.26",
1589
+ "@sap/hana-client": "2.17.21",
1506
1590
  "accept-language": "2.0.16",
1507
1591
  "async": "3.2.2",
1508
1592
  "debug": "4.3.1",
@@ -1511,7 +1595,7 @@
1511
1595
  },
1512
1596
  "dependencies": {
1513
1597
  "@sap/hana-client": {
1514
- "version": "2.16.26",
1598
+ "version": "2.17.21",
1515
1599
  "requires": {
1516
1600
  "debug": "3.1.0"
1517
1601
  },
@@ -1544,6 +1628,14 @@
1544
1628
  "lru-cache": "4.1.1",
1545
1629
  "node-fetch": "2.6.7",
1546
1630
  "uuid": "7.0.0"
1631
+ },
1632
+ "dependencies": {
1633
+ "debug": {
1634
+ "version": "4.3.3",
1635
+ "requires": {
1636
+ "ms": "2.1.2"
1637
+ }
1638
+ }
1547
1639
  }
1548
1640
  },
1549
1641
  "@sap/jobs-client": {
@@ -1584,6 +1676,14 @@
1584
1676
  "debug": "4.3.3",
1585
1677
  "node-cache": "^5.1.0",
1586
1678
  "verror": "1.10.0"
1679
+ },
1680
+ "dependencies": {
1681
+ "debug": {
1682
+ "version": "4.3.3",
1683
+ "requires": {
1684
+ "ms": "2.1.2"
1685
+ }
1686
+ }
1587
1687
  }
1588
1688
  },
1589
1689
  "@sap/xsodata": {
@@ -1601,9 +1701,26 @@
1601
1701
  "xml-writer": "1.7.0"
1602
1702
  },
1603
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
+ },
1604
1715
  "async": {
1605
1716
  "version": "3.2.4"
1606
1717
  },
1718
+ "axios": {
1719
+ "version": "0.26.1",
1720
+ "requires": {
1721
+ "follow-redirects": "^1.14.8"
1722
+ }
1723
+ },
1607
1724
  "big.js": {
1608
1725
  "version": "6.2.1"
1609
1726
  },
@@ -1622,17 +1739,19 @@
1622
1739
  "raw-body": "2.5.1",
1623
1740
  "type-is": "~1.6.18",
1624
1741
  "unpipe": "1.0.0"
1742
+ },
1743
+ "dependencies": {
1744
+ "debug": {
1745
+ "version": "2.6.9",
1746
+ "requires": {
1747
+ "ms": "2.0.0"
1748
+ }
1749
+ }
1625
1750
  }
1626
1751
  },
1627
1752
  "content-type": {
1628
1753
  "version": "1.0.5"
1629
1754
  },
1630
- "debug": {
1631
- "version": "2.6.9",
1632
- "requires": {
1633
- "ms": "2.0.0"
1634
- }
1635
- },
1636
1755
  "depd": {
1637
1756
  "version": "2.0.0"
1638
1757
  },
@@ -1652,6 +1771,12 @@
1652
1771
  "toidentifier": "1.0.1"
1653
1772
  }
1654
1773
  },
1774
+ "lru-cache": {
1775
+ "version": "6.0.0",
1776
+ "requires": {
1777
+ "yallist": "^4.0.0"
1778
+ }
1779
+ },
1655
1780
  "ms": {
1656
1781
  "version": "2.0.0"
1657
1782
  },
@@ -1678,6 +1803,9 @@
1678
1803
  },
1679
1804
  "statuses": {
1680
1805
  "version": "2.0.1"
1806
+ },
1807
+ "yallist": {
1808
+ "version": "4.0.0"
1681
1809
  }
1682
1810
  }
1683
1811
  },
@@ -1685,11 +1813,11 @@
1685
1813
  "version": "4.2.0"
1686
1814
  },
1687
1815
  "@sap/xssec": {
1688
- "version": "3.2.17",
1816
+ "version": "3.3.5",
1689
1817
  "requires": {
1690
1818
  "axios": "^0.26.0",
1691
1819
  "debug": "^4.3.2",
1692
- "jsonwebtoken": "^9.0.0",
1820
+ "jsonwebtoken": "^9.0.2",
1693
1821
  "lru-cache": "^6.0.0",
1694
1822
  "node-rsa": "^1.1.1",
1695
1823
  "valid-url": "1.0.9"
@@ -1744,7 +1872,7 @@
1744
1872
  "version": "0.4.0"
1745
1873
  },
1746
1874
  "axios": {
1747
- "version": "1.4.0",
1875
+ "version": "1.5.1",
1748
1876
  "requires": {
1749
1877
  "follow-redirects": "^1.15.0",
1750
1878
  "form-data": "^4.0.0",
@@ -1882,7 +2010,7 @@
1882
2010
  "version": "1.0.2"
1883
2011
  },
1884
2012
  "debug": {
1885
- "version": "4.3.3",
2013
+ "version": "4.3.4",
1886
2014
  "requires": {
1887
2015
  "ms": "2.1.2"
1888
2016
  }
@@ -2069,7 +2197,7 @@
2069
2197
  }
2070
2198
  },
2071
2199
  "follow-redirects": {
2072
- "version": "1.15.2"
2200
+ "version": "1.15.3"
2073
2201
  },
2074
2202
  "form-data": {
2075
2203
  "version": "4.0.0",
@@ -2098,10 +2226,7 @@
2098
2226
  }
2099
2227
  },
2100
2228
  "has": {
2101
- "version": "1.0.3",
2102
- "requires": {
2103
- "function-bind": "^1.1.1"
2104
- }
2229
+ "version": "1.0.4"
2105
2230
  },
2106
2231
  "has-proto": {
2107
2232
  "version": "1.0.1"
@@ -2149,12 +2274,18 @@
2149
2274
  "version": "1.9.1"
2150
2275
  },
2151
2276
  "jsonwebtoken": {
2152
- "version": "9.0.0",
2277
+ "version": "9.0.2",
2153
2278
  "requires": {
2154
2279
  "jws": "^3.2.2",
2155
- "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",
2156
2287
  "ms": "^2.1.1",
2157
- "semver": "^7.3.8"
2288
+ "semver": "^7.5.4"
2158
2289
  }
2159
2290
  },
2160
2291
  "jwa": {
@@ -2175,6 +2306,27 @@
2175
2306
  "lodash": {
2176
2307
  "version": "4.17.21"
2177
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
+ },
2178
2330
  "lru-cache": {
2179
2331
  "version": "4.1.1",
2180
2332
  "requires": {
@@ -2341,7 +2493,7 @@
2341
2493
  "version": "1.2.4"
2342
2494
  },
2343
2495
  "semver": {
2344
- "version": "7.5.1",
2496
+ "version": "7.5.4",
2345
2497
  "requires": {
2346
2498
  "lru-cache": "^6.0.0"
2347
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.5",
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.16.21",
12
- "@sap/hdbext": "^7.7.3",
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",