@sap/async-xsjs 3.0.3 → 3.0.5

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,31 @@ 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.5"></a>
9
+ ## 3.0.5 - 2026-09-11
10
+
11
+ ### Updated
12
+ - update @sap/audit-logging version to 7.0.2
13
+ - update @sap/e2e-trace version to 6.2.2
14
+ - update @sap/hana-client version to 2.29.27
15
+ - update @sap/logging version to 9.2.2
16
+ - update @sap/textbundle version to 6.3.0
17
+ - update @sap/xsenv version to 6.2.2
18
+ - update @sap/xsodata version to 8.4.1
19
+ - update @sap/xss-secure version to 6.2.1
20
+ - update nodemailer version to 10.0.3
21
+ - update sax version to 1.6.1
22
+ - Fixed socket timeouts and process crashes that occurred when retrieving jobs with a large number of schedules.
23
+
24
+ <a name="3.0.4"></a>
25
+ ## 3.0.4 - 2026-07-17
26
+
27
+ ### Updated
28
+ - update express version to 4.22.2
29
+ - update @sap/xsodata version to 8.4.0
30
+ - update body-parser version to 2.3.0
31
+ - poolingCheck added and retry is modified.
32
+
8
33
  <a name="3.0.3"></a>
9
34
  ## 3.0.3 - 2026-07-06
10
35
 
@@ -22,6 +22,7 @@ var SERVICE_MANAGER_OPTS = [
22
22
 
23
23
  var DEFAULT_OPTIONS = {
24
24
  pooling: true,
25
+ poolingCheck: true,
25
26
  maxPoolSize: 10,
26
27
  connectionLifetime: 30
27
28
  };
@@ -6,7 +6,7 @@ var logger = require('../../../logging').logger;
6
6
  exports = module.exports;
7
7
  exports.connect = connect;
8
8
 
9
- var MAX_RETRIES = 10;
9
+ var MAX_RETRIES = 12;
10
10
  var RETRY_DELAY_MS = 100;
11
11
 
12
12
  function delay(ms) {
@@ -31,12 +31,15 @@ async function connect (hanaOptions) {
31
31
  } catch (err) {
32
32
  if (attempt < MAX_RETRIES) {
33
33
  attempt++;
34
+ var waitMs = (attempt - 1) * RETRY_DELAY_MS;
34
35
  logger.warn('HANA connection attempt ' + attempt + ' to ' + serverNode + ' failed, retrying in ' + (RETRY_DELAY_MS * attempt) + 'ms. Error: ' + err.message);
35
- await delay(RETRY_DELAY_MS * attempt);
36
+ if (waitMs > 0) {
37
+ await delay(waitMs);
38
+ }
36
39
  } else {
37
40
  logger.error('HANA connection to ' + serverNode + ' failed after ' + MAX_RETRIES + ' retries. Error: ' + err.message);
38
41
  throw err;
39
42
  }
40
43
  }
41
44
  }
42
- }
45
+ }
@@ -8,6 +8,8 @@ var jobsClient = require('@sap/jobs-client');
8
8
  var Schedules = require('./Schedules');
9
9
  var Schedule = require('./Schedule');
10
10
 
11
+ var SCHEDULE_FETCH_CONCURRENCY = 25;
12
+
11
13
  module.exports = Job;
12
14
 
13
15
  function Job(runtime, constructJob) {
@@ -21,42 +23,47 @@ function Job(runtime, constructJob) {
21
23
  var jobPath = resolveJobURI(runtime, constructJob.uri);
22
24
  var jobName = runtime.getJobName(jobPath);
23
25
  return new Promise ((resolve, reject) => {
24
- self._scheduler.fetchJob({ name: jobName, displaySchedules: true }, function(err, job) {
26
+ self._scheduler.fetchJob({ name: jobName, displaySchedules: true }, async function(err, job) {
25
27
  if (err) { return reject(err);}
26
- if (!job._id) {
27
- reject('Scheduler response missing _id property');
28
+ if (!job || !job._id) {
29
+ return reject('Scheduler response missing _id property');
28
30
  }
29
- if (!job.schedules) {
30
- reject('Scheduler response missing schedules property');
31
+ if (!Array.isArray(job.schedules)) {
32
+ return reject('Scheduler response missing schedules property');
31
33
  }
32
34
  self._jobId = job._id;
33
35
  self.active = job.active;
34
36
  var jobSchedules = job.schedules;
35
37
  var id = [];
36
38
  var schedulesObject = new Schedules(self._scheduler, self._jobId);
37
- var schedulePromises = jobSchedules.map((jobSchedule) => {
38
- if (!jobSchedule.scheduleId) {
39
- reject('Scheduler response missing scheduleId property');
40
- }
41
- var description = jobSchedule.description;
42
- var data = jobSchedule.data;
43
- var cron = jobSchedule.cron;
44
- var active = jobSchedule.active;
45
- var scheduleId = jobSchedule.scheduleId;
46
- id.push(jobSchedule.scheduleId);
47
- return new Schedule(self._scheduler,
48
- description, data, cron, active, self._jobId, scheduleId);
49
- });
50
- Promise.all(schedulePromises).then((resolvedSchedules) => {
51
- var currentScheduleId;
52
- for (var k = 0; k < resolvedSchedules.length; k++) {
53
- var resolvedSchedule = resolvedSchedules[k];
54
- currentScheduleId = id[k];
55
- schedulesObject[currentScheduleId] = resolvedSchedule;
39
+ try {
40
+ var resolvedSchedules = [];
41
+ for (var start = 0; start < jobSchedules.length; start += SCHEDULE_FETCH_CONCURRENCY) {
42
+ var scheduleBatch = jobSchedules.slice(start, start + SCHEDULE_FETCH_CONCURRENCY);
43
+ var batchSchedules = await Promise.all(scheduleBatch.map((jobSchedule) => {
44
+ if (!jobSchedule.scheduleId) {
45
+ throw new Error('Scheduler response missing scheduleId property');
46
+ }
47
+ var description = jobSchedule.description;
48
+ var data = jobSchedule.data;
49
+ var cron = jobSchedule.cron;
50
+ var active = jobSchedule.active;
51
+ var scheduleId = jobSchedule.scheduleId;
52
+ id.push(scheduleId);
53
+ return new Schedule(self._scheduler,
54
+ description, data, cron, active, self._jobId, scheduleId);
55
+ }));
56
+ resolvedSchedules = resolvedSchedules.concat(batchSchedules);
56
57
  }
57
- self.schedules = schedulesObject;
58
- resolve(self);
59
- });
58
+ } catch (scheduleError) {
59
+ reject(scheduleError);
60
+ return;
61
+ }
62
+ for (var k = 0; k < resolvedSchedules.length; k++) {
63
+ schedulesObject[id[k]] = resolvedSchedules[k];
64
+ }
65
+ self.schedules = schedulesObject;
66
+ resolve(self);
60
67
  });
61
68
  });
62
69
  }
@@ -19,13 +19,16 @@ function Logs(scheduler, scheduleId, jobId) {
19
19
  value: jobId
20
20
  });
21
21
  var self = this;
22
- return new Promise ((resolve) => {
22
+ return new Promise ((resolve, reject) => {
23
23
  fetchJobSchedulePromise(scheduler, {
24
24
  jobId: self.jobId,
25
25
  scheduleId: self.scheduleId,
26
26
  displayLogs: true
27
27
  })
28
28
  .then((body) => {
29
+ if (!body || !Array.isArray(body.logs)) {
30
+ throw new Error('Scheduler response missing logs property');
31
+ }
29
32
  var resolvedLogs = body.logs.map(function (jlog) {
30
33
  var host = null;
31
34
  var port = null;
@@ -45,7 +48,8 @@ function Logs(scheduler, scheduleId, jobId) {
45
48
  self.jobLog = resolvedLogs;
46
49
  // self.jobLogs = resolvedLogs;
47
50
  resolve(self);
48
- });
51
+ })
52
+ .catch(reject);
49
53
  });
50
54
  }
51
55
 
@@ -1,46 +1,46 @@
1
1
  {
2
2
  "name": "@sap/async-xsjs",
3
- "version": "3.0.3",
3
+ "version": "3.0.5",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@sap/async-xsjs",
9
- "version": "3.0.3",
9
+ "version": "3.0.5",
10
10
  "license": "SEE LICENSE IN LICENSE file",
11
11
  "dependencies": {
12
- "@sap/audit-logging": "^7.0.1",
13
- "@sap/e2e-trace": "^6.2.1",
14
- "@sap/hana-client": "2.28.21",
12
+ "@sap/audit-logging": "^7.0.2",
13
+ "@sap/e2e-trace": "^6.2.2",
14
+ "@sap/hana-client": "2.29.27",
15
15
  "@sap/hdbext": "8.1.14",
16
16
  "@sap/instance-manager": "^5.2.6",
17
17
  "@sap/jobs-client": "^1.9.1",
18
- "@sap/logging": "^9.2.1",
18
+ "@sap/logging": "^9.2.2",
19
19
  "@sap/node-jwt": "^1.6.30",
20
20
  "@sap/node-vsi": "^1.4.34",
21
- "@sap/textbundle": "^6.2.0",
22
- "@sap/xsenv": "^6.2.1",
23
- "@sap/xsodata": "^8.3.2",
24
- "@sap/xss-secure": "^6.2.0",
21
+ "@sap/textbundle": "^6.3.0",
22
+ "@sap/xsenv": "^6.2.2",
23
+ "@sap/xsodata": "^8.4.1",
24
+ "@sap/xss-secure": "^6.2.1",
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.2.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.1",
35
+ "express": "4.22.2",
36
36
  "lodash": "4.18.1",
37
37
  "media-typer": "0.3.0",
38
38
  "moment": "2.30.1",
39
39
  "multiparty": "4.3.0",
40
- "nodemailer": "8.0.10",
40
+ "nodemailer": "10.0.3",
41
41
  "passport": "0.7.0",
42
42
  "passport-strategy": "1.0.0",
43
- "sax": "1.6.0",
43
+ "sax": "1.6.1",
44
44
  "statuses": "1.2.1",
45
45
  "verror": "1.10.1",
46
46
  "yauzl": "3.4.0",
@@ -73,7 +73,7 @@
73
73
  }
74
74
  },
75
75
  "node_modules/@sap/e2e-trace": {
76
- "version": "6.2.1",
76
+ "version": "6.2.2",
77
77
  "license": "SEE LICENSE IN LICENSE file",
78
78
  "dependencies": {
79
79
  "request-stats": "3.0.0"
@@ -83,7 +83,7 @@
83
83
  }
84
84
  },
85
85
  "node_modules/@sap/hana-client": {
86
- "version": "2.28.21",
86
+ "version": "2.29.27",
87
87
  "hasInstallScript": true,
88
88
  "license": "SEE LICENSE IN developer-license-3_2.txt",
89
89
  "dependencies": {
@@ -166,7 +166,7 @@
166
166
  }
167
167
  },
168
168
  "node_modules/@sap/instance-manager/node_modules/@sap/xssec": {
169
- "version": "4.13.1",
169
+ "version": "4.15.0",
170
170
  "license": "SAP DEVELOPER LICENSE AGREEMENT",
171
171
  "dependencies": {
172
172
  "debug": "^4.4.3",
@@ -186,11 +186,23 @@
186
186
  "node": "^14 || ^16 || ^18 || ^20 || ^22 || ^24"
187
187
  }
188
188
  },
189
+ "node_modules/@sap/jobs-client/node_modules/@sap/xsenv": {
190
+ "version": "6.2.1",
191
+ "license": "SEE LICENSE IN LICENSE",
192
+ "dependencies": {
193
+ "debug": "4.4.3",
194
+ "node-cache": "^5.1.2",
195
+ "verror": "1.10.1"
196
+ },
197
+ "engines": {
198
+ "node": "^20.0.0 || ^22.0.0 || ^24.0.0"
199
+ }
200
+ },
189
201
  "node_modules/@sap/logging": {
190
- "version": "9.2.1",
202
+ "version": "9.2.2",
191
203
  "license": "SEE LICENSE IN LICENSE file",
192
204
  "dependencies": {
193
- "@sap/e2e-trace": "^6.2.1",
205
+ "@sap/e2e-trace": "6.2.2",
194
206
  "lodash": "4.18.1",
195
207
  "moment": "2.30.1"
196
208
  },
@@ -215,14 +227,14 @@
215
227
  }
216
228
  },
217
229
  "node_modules/@sap/textbundle": {
218
- "version": "6.2.0",
230
+ "version": "6.3.0",
219
231
  "license": "SEE LICENSE IN LICENSE file",
220
232
  "engines": {
221
233
  "node": "^20.0.0 || ^22.0.0 || ^24.0.0"
222
234
  }
223
235
  },
224
236
  "node_modules/@sap/xsenv": {
225
- "version": "6.2.1",
237
+ "version": "6.2.2",
226
238
  "license": "SEE LICENSE IN LICENSE",
227
239
  "dependencies": {
228
240
  "debug": "4.4.3",
@@ -234,38 +246,26 @@
234
246
  }
235
247
  },
236
248
  "node_modules/@sap/xsodata": {
237
- "version": "8.3.2",
249
+ "version": "8.4.1",
238
250
  "license": "SEE LICENSE IN developer-license-3.1.txt",
239
251
  "dependencies": {
240
- "@sap/xsenv": "5.6.1",
252
+ "@sap/xsenv": "6.2.2",
241
253
  "@sap/xssec": "3.6.2",
242
254
  "async": "3.2.6",
243
255
  "big.js": "7.0.1",
244
- "body-parser": "1.20.4",
245
- "hdb": "0.19.12",
256
+ "body-parser": "1.20.6",
257
+ "hdb": "2.29.6",
246
258
  "lodash": "4.18.1",
247
- "negotiator": "1.0.0",
259
+ "negotiator": "1.1.0",
248
260
  "rwlock": "5.0.0",
249
261
  "xml-writer": "1.7.0"
250
262
  },
251
263
  "engines": {
252
- "node": "^18 || ^20 || ^22 || ^24"
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"
264
+ "node": "^20 || ^22 || ^24"
265
265
  }
266
266
  },
267
267
  "node_modules/@sap/xsodata/node_modules/body-parser": {
268
- "version": "1.20.4",
268
+ "version": "1.20.6",
269
269
  "license": "MIT",
270
270
  "dependencies": {
271
271
  "bytes": "~3.1.2",
@@ -276,7 +276,7 @@
276
276
  "http-errors": "~2.0.1",
277
277
  "iconv-lite": "~0.4.24",
278
278
  "on-finished": "~2.4.1",
279
- "qs": "~6.14.0",
279
+ "qs": "~6.15.1",
280
280
  "raw-body": "~2.5.3",
281
281
  "type-is": "~1.6.18",
282
282
  "unpipe": "~1.0.0"
@@ -286,32 +286,13 @@
286
286
  "npm": "1.2.8000 || >= 1.4.16"
287
287
  }
288
288
  },
289
- "node_modules/@sap/xsodata/node_modules/body-parser/node_modules/debug": {
289
+ "node_modules/@sap/xsodata/node_modules/debug": {
290
290
  "version": "2.6.9",
291
291
  "license": "MIT",
292
292
  "dependencies": {
293
293
  "ms": "2.0.0"
294
294
  }
295
295
  },
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
296
  "node_modules/@sap/xsodata/node_modules/iconv-lite": {
316
297
  "version": "0.4.24",
317
298
  "license": "MIT",
@@ -322,6 +303,10 @@
322
303
  "node": ">=0.10.0"
323
304
  }
324
305
  },
306
+ "node_modules/@sap/xsodata/node_modules/ms": {
307
+ "version": "2.0.0",
308
+ "license": "MIT"
309
+ },
325
310
  "node_modules/@sap/xsodata/node_modules/raw-body": {
326
311
  "version": "2.5.3",
327
312
  "license": "MIT",
@@ -347,7 +332,7 @@
347
332
  }
348
333
  },
349
334
  "node_modules/@sap/xss-secure": {
350
- "version": "6.2.0",
335
+ "version": "6.2.1",
351
336
  "license": "SEE LICENSE IN LICENSE file",
352
337
  "engines": {
353
338
  "node": "^20.0.0 || ^22.0.0 || ^24.0.0"
@@ -428,11 +413,11 @@
428
413
  "license": "MIT"
429
414
  },
430
415
  "node_modules/axios": {
431
- "version": "1.18.1",
416
+ "version": "1.20.0",
432
417
  "license": "MIT",
433
418
  "dependencies": {
434
419
  "follow-redirects": "^1.16.0",
435
- "form-data": "^4.0.5",
420
+ "form-data": "^4.0.6",
436
421
  "https-proxy-agent": "^5.0.1",
437
422
  "proxy-from-env": "^2.1.0"
438
423
  }
@@ -456,18 +441,18 @@
456
441
  }
457
442
  },
458
443
  "node_modules/body-parser": {
459
- "version": "2.2.2",
444
+ "version": "2.3.0",
460
445
  "license": "MIT",
461
446
  "dependencies": {
462
447
  "bytes": "^3.1.2",
463
- "content-type": "^1.0.5",
448
+ "content-type": "^2.0.0",
464
449
  "debug": "^4.4.3",
465
- "http-errors": "^2.0.0",
466
- "iconv-lite": "^0.7.0",
450
+ "http-errors": "^2.0.1",
451
+ "iconv-lite": "^0.7.2",
467
452
  "on-finished": "^2.4.1",
468
- "qs": "^6.14.1",
469
- "raw-body": "^3.0.1",
470
- "type-is": "^2.0.1"
453
+ "qs": "^6.15.2",
454
+ "raw-body": "^3.0.2",
455
+ "type-is": "^2.1.0"
471
456
  },
472
457
  "engines": {
473
458
  "node": ">=18"
@@ -477,6 +462,17 @@
477
462
  "url": "https://opencollective.com/express"
478
463
  }
479
464
  },
465
+ "node_modules/body-parser/node_modules/content-type": {
466
+ "version": "2.1.0",
467
+ "license": "MIT",
468
+ "engines": {
469
+ "node": ">=18"
470
+ },
471
+ "funding": {
472
+ "type": "opencollective",
473
+ "url": "https://opencollective.com/express"
474
+ }
475
+ },
480
476
  "node_modules/buffer-crc32": {
481
477
  "version": "0.2.13",
482
478
  "license": "MIT",
@@ -753,12 +749,12 @@
753
749
  }
754
750
  },
755
751
  "node_modules/express": {
756
- "version": "4.22.1",
752
+ "version": "4.22.2",
757
753
  "license": "MIT",
758
754
  "dependencies": {
759
755
  "accepts": "~1.3.8",
760
756
  "array-flatten": "1.1.1",
761
- "body-parser": "~1.20.3",
757
+ "body-parser": "~1.20.5",
762
758
  "content-disposition": "~0.5.4",
763
759
  "content-type": "~1.0.4",
764
760
  "cookie": "~0.7.1",
@@ -777,7 +773,7 @@
777
773
  "parseurl": "~1.3.3",
778
774
  "path-to-regexp": "~0.1.12",
779
775
  "proxy-addr": "~2.0.7",
780
- "qs": "~6.14.0",
776
+ "qs": "~6.15.1",
781
777
  "range-parser": "~1.2.1",
782
778
  "safe-buffer": "5.2.1",
783
779
  "send": "~0.19.0",
@@ -797,7 +793,7 @@
797
793
  }
798
794
  },
799
795
  "node_modules/express/node_modules/body-parser": {
800
- "version": "1.20.5",
796
+ "version": "1.20.8",
801
797
  "license": "MIT",
802
798
  "dependencies": {
803
799
  "bytes": "~3.1.2",
@@ -808,7 +804,7 @@
808
804
  "http-errors": "~2.0.1",
809
805
  "iconv-lite": "~0.4.24",
810
806
  "on-finished": "~2.4.1",
811
- "qs": "~6.15.1",
807
+ "qs": "~6.16.0",
812
808
  "raw-body": "~2.5.3",
813
809
  "type-is": "~1.6.18",
814
810
  "unpipe": "~1.0.0"
@@ -818,20 +814,6 @@
818
814
  "npm": "1.2.8000 || >= 1.4.16"
819
815
  }
820
816
  },
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
817
  "node_modules/express/node_modules/cookie": {
836
818
  "version": "0.7.2",
837
819
  "license": "MIT",
@@ -1062,23 +1044,30 @@
1062
1044
  }
1063
1045
  },
1064
1046
  "node_modules/hdb": {
1065
- "version": "0.19.12",
1047
+ "version": "2.29.6",
1066
1048
  "license": "Apache-2.0",
1067
1049
  "dependencies": {
1068
- "iconv-lite": "^0.4.18"
1050
+ "iconv-lite": "0.7.0"
1069
1051
  },
1070
1052
  "engines": {
1071
- "node": ">= 0.12"
1053
+ "node": ">= 18"
1054
+ },
1055
+ "optionalDependencies": {
1056
+ "lz4-wasm-nodejs": "0.9.2"
1072
1057
  }
1073
1058
  },
1074
1059
  "node_modules/hdb/node_modules/iconv-lite": {
1075
- "version": "0.4.24",
1060
+ "version": "0.7.0",
1076
1061
  "license": "MIT",
1077
1062
  "dependencies": {
1078
- "safer-buffer": ">= 2.1.2 < 3"
1063
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
1079
1064
  },
1080
1065
  "engines": {
1081
1066
  "node": ">=0.10.0"
1067
+ },
1068
+ "funding": {
1069
+ "type": "opencollective",
1070
+ "url": "https://opencollective.com/express"
1082
1071
  }
1083
1072
  },
1084
1073
  "node_modules/http-errors": {
@@ -1226,12 +1215,17 @@
1226
1215
  "license": "MIT"
1227
1216
  },
1228
1217
  "node_modules/lru-cache": {
1229
- "version": "11.5.1",
1218
+ "version": "11.5.2",
1230
1219
  "license": "BlueOak-1.0.0",
1231
1220
  "engines": {
1232
1221
  "node": "20 || >=22"
1233
1222
  }
1234
1223
  },
1224
+ "node_modules/lz4-wasm-nodejs": {
1225
+ "version": "0.9.2",
1226
+ "license": "MIT",
1227
+ "optional": true
1228
+ },
1235
1229
  "node_modules/math-intrinsics": {
1236
1230
  "version": "1.1.0",
1237
1231
  "license": "MIT",
@@ -1339,10 +1333,28 @@
1339
1333
  }
1340
1334
  },
1341
1335
  "node_modules/negotiator": {
1342
- "version": "1.0.0",
1336
+ "version": "1.1.0",
1337
+ "license": "MIT",
1338
+ "dependencies": {
1339
+ "content-type": "^2.1.0"
1340
+ },
1341
+ "engines": {
1342
+ "node": ">=18"
1343
+ },
1344
+ "funding": {
1345
+ "type": "opencollective",
1346
+ "url": "https://opencollective.com/express"
1347
+ }
1348
+ },
1349
+ "node_modules/negotiator/node_modules/content-type": {
1350
+ "version": "2.1.0",
1343
1351
  "license": "MIT",
1344
1352
  "engines": {
1345
- "node": ">= 0.6"
1353
+ "node": ">=18"
1354
+ },
1355
+ "funding": {
1356
+ "type": "opencollective",
1357
+ "url": "https://opencollective.com/express"
1346
1358
  }
1347
1359
  },
1348
1360
  "node_modules/next-line": {
@@ -1385,10 +1397,10 @@
1385
1397
  }
1386
1398
  },
1387
1399
  "node_modules/nodemailer": {
1388
- "version": "8.0.10",
1400
+ "version": "10.0.3",
1389
1401
  "license": "MIT-0",
1390
1402
  "engines": {
1391
- "node": ">=6.0.0"
1403
+ "node": ">=20.0.0"
1392
1404
  }
1393
1405
  },
1394
1406
  "node_modules/object-inspect": {
@@ -1484,10 +1496,11 @@
1484
1496
  }
1485
1497
  },
1486
1498
  "node_modules/qs": {
1487
- "version": "6.14.2",
1499
+ "version": "6.16.0",
1488
1500
  "license": "BSD-3-Clause",
1489
1501
  "dependencies": {
1490
- "side-channel": "^1.1.0"
1502
+ "es-define-property": "^1.0.1",
1503
+ "side-channel": "^1.1.1"
1491
1504
  },
1492
1505
  "engines": {
1493
1506
  "node": ">=0.6"
@@ -1561,7 +1574,7 @@
1561
1574
  "license": "MIT"
1562
1575
  },
1563
1576
  "node_modules/sax": {
1564
- "version": "1.6.0",
1577
+ "version": "1.6.1",
1565
1578
  "license": "BlueOak-1.0.0",
1566
1579
  "engines": {
1567
1580
  "node": ">=11.0.0"
@@ -1730,7 +1743,7 @@
1730
1743
  }
1731
1744
  },
1732
1745
  "node_modules/type-is/node_modules/content-type": {
1733
- "version": "2.0.0",
1746
+ "version": "2.1.0",
1734
1747
  "license": "MIT",
1735
1748
  "engines": {
1736
1749
  "node": ">=18"
@@ -1741,10 +1754,14 @@
1741
1754
  }
1742
1755
  },
1743
1756
  "node_modules/type-is/node_modules/media-typer": {
1744
- "version": "1.1.0",
1757
+ "version": "1.1.1",
1745
1758
  "license": "MIT",
1746
1759
  "engines": {
1747
1760
  "node": ">= 0.8"
1761
+ },
1762
+ "funding": {
1763
+ "type": "opencollective",
1764
+ "url": "https://opencollective.com/express"
1748
1765
  }
1749
1766
  },
1750
1767
  "node_modules/type-is/node_modules/mime-types": {
package/package.json CHANGED
@@ -1,44 +1,47 @@
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.3",
4
+ "version": "3.0.5",
5
5
  "repository": {
6
6
  "url": "git@github.wdf.sap.corp:xs2/async-xsjs.git"
7
7
  },
8
8
  "license": "SEE LICENSE IN LICENSE file",
9
9
  "main": "./lib",
10
+ "overrides": {
11
+ "qs": "6.16.0"
12
+ },
10
13
  "dependencies": {
11
- "@sap/audit-logging": "^7.0.1",
12
- "@sap/e2e-trace": "^6.2.1",
13
- "@sap/hana-client": "2.28.21",
14
+ "@sap/audit-logging": "^7.0.2",
15
+ "@sap/e2e-trace": "^6.2.2",
16
+ "@sap/hana-client": "2.29.27",
14
17
  "@sap/hdbext": "8.1.14",
15
18
  "@sap/instance-manager": "^5.2.6",
16
19
  "@sap/jobs-client": "^1.9.1",
17
- "@sap/logging": "^9.2.1",
20
+ "@sap/logging": "^9.2.2",
18
21
  "@sap/node-jwt": "^1.6.30",
19
22
  "@sap/node-vsi": "^1.4.34",
20
- "@sap/textbundle": "^6.2.0",
21
- "@sap/xsenv": "^6.2.1",
22
- "@sap/xsodata": "^8.3.2",
23
- "@sap/xss-secure": "^6.2.0",
23
+ "@sap/textbundle": "^6.3.0",
24
+ "@sap/xsenv": "^6.2.2",
25
+ "@sap/xsodata": "^8.4.1",
26
+ "@sap/xss-secure": "^6.2.1",
24
27
  "@sap/xssec": "^3.6.0",
25
28
  "accept-language": "2.0.16",
26
29
  "big.js": "7.0.1",
27
- "body-parser": "2.2.2",
30
+ "body-parser": "2.3.0",
28
31
  "callsite": "1.0.0",
29
32
  "compression": "1.8.1",
30
33
  "content-type": "1.0.5",
31
34
  "cookie": "1.1.1",
32
35
  "cookie-parser": "1.4.7",
33
- "express": "4.22.1",
36
+ "express": "4.22.2",
34
37
  "lodash": "4.18.1",
35
38
  "media-typer": "0.3.0",
36
39
  "moment": "2.30.1",
37
40
  "multiparty": "4.3.0",
38
- "nodemailer": "8.0.10",
41
+ "nodemailer": "10.0.3",
39
42
  "passport": "0.7.0",
40
43
  "passport-strategy": "1.0.0",
41
- "sax": "1.6.0",
44
+ "sax": "1.6.1",
42
45
  "statuses": "1.2.1",
43
46
  "verror": "1.10.1",
44
47
  "yauzl": "3.4.0",