@sap/async-xsjs 2.3.0 → 3.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 +26 -1
- package/lib/routes.js +2 -0
- package/npm-shrinkwrap.json +18 -18
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,31 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
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
|
+
<a name="3.0.1"></a>
|
|
8
|
+
## 3.0.1 - 2026-06-11
|
|
9
|
+
|
|
10
|
+
### Updated
|
|
11
|
+
- update @sap/node-jwt version to 1.6.30
|
|
12
|
+
- update @sap/node-vsi to 1.4.34
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
<a name="3.0.0"></a>
|
|
16
|
+
## 3.0.0 - 2026-06-08
|
|
17
|
+
|
|
18
|
+
### Updated
|
|
19
|
+
- update @sap/hana-client version to 2.28.21
|
|
20
|
+
- update nodemailer to 8.0.10
|
|
21
|
+
- update yauzl version to 3.4.0
|
|
22
|
+
- update axios version to 1.17.0
|
|
23
|
+
|
|
24
|
+
<a name="3.0.0"></a>
|
|
25
|
+
## 3.0.0 - 2026-06-08
|
|
26
|
+
|
|
27
|
+
### Updated
|
|
28
|
+
- update @sap/hana-client version to 2.28.21
|
|
29
|
+
- update nodemailer to 8.0.10
|
|
30
|
+
- update yauzl version to 3.4.0
|
|
31
|
+
- update axios version to 1.17.0
|
|
7
32
|
|
|
8
33
|
<a name="2.3.0"></a>
|
|
9
34
|
## 2.3.0 - 2026-06-02
|
|
@@ -322,4 +347,4 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
|
|
322
347
|
<a name="1.0.0"></a>
|
|
323
348
|
## 1.0.0 - 2023-01-26
|
|
324
349
|
|
|
325
|
-
### Initial release
|
|
350
|
+
### Initial release
|
package/lib/routes.js
CHANGED
|
@@ -95,6 +95,8 @@ exports.error = function (err, req, res, next) { // eslint-disable-line no-unuse
|
|
|
95
95
|
if (process.env.NODE_ENV === 'development') {
|
|
96
96
|
title = status + ' ' + err.message;
|
|
97
97
|
stacktrace = err.stack || '';
|
|
98
|
+
} else if (status >= 400 && status < 500 && err.message) {
|
|
99
|
+
title = status + ' ' + err.message;
|
|
98
100
|
} else {
|
|
99
101
|
// do not reveal internal details to the client
|
|
100
102
|
title = status + ' ' + http.STATUS_CODES[status];
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/async-xsjs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@sap/async-xsjs",
|
|
9
|
-
"version": "
|
|
9
|
+
"version": "3.0.1",
|
|
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
|
-
"@sap/hana-client": "2.28.
|
|
14
|
+
"@sap/hana-client": "2.28.21",
|
|
15
15
|
"@sap/hdbext": "8.1.13",
|
|
16
16
|
"@sap/instance-manager": "^5.2.6",
|
|
17
17
|
"@sap/jobs-client": "^1.9.1",
|
|
18
18
|
"@sap/logging": "^9.2.1",
|
|
19
|
-
"@sap/node-jwt": "^1.6.
|
|
20
|
-
"@sap/node-vsi": "^1.4.
|
|
19
|
+
"@sap/node-jwt": "^1.6.30",
|
|
20
|
+
"@sap/node-vsi": "^1.4.34",
|
|
21
21
|
"@sap/textbundle": "^6.2.0",
|
|
22
22
|
"@sap/xsenv": "^6.2.1",
|
|
23
23
|
"@sap/xsodata": "^8.3.2",
|
|
24
24
|
"@sap/xss-secure": "^6.2.0",
|
|
25
25
|
"@sap/xssec": "^3.6.0",
|
|
26
26
|
"accept-language": "2.0.16",
|
|
27
|
-
"axios": "^1.
|
|
27
|
+
"axios": "^1.17.0",
|
|
28
28
|
"big.js": "7.0.1",
|
|
29
29
|
"body-parser": "2.2.2",
|
|
30
30
|
"callsite": "1.0.0",
|
|
@@ -37,13 +37,13 @@
|
|
|
37
37
|
"media-typer": "0.3.0",
|
|
38
38
|
"moment": "2.30.1",
|
|
39
39
|
"multiparty": "4.3.0",
|
|
40
|
-
"nodemailer": "8.0.
|
|
40
|
+
"nodemailer": "8.0.10",
|
|
41
41
|
"passport": "0.7.0",
|
|
42
42
|
"passport-strategy": "1.0.0",
|
|
43
43
|
"sax": "1.6.0",
|
|
44
44
|
"statuses": "1.2.1",
|
|
45
45
|
"verror": "1.10.1",
|
|
46
|
-
"yauzl": "3.
|
|
46
|
+
"yauzl": "3.4.0",
|
|
47
47
|
"yazl": "2.4.1"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
}
|
|
84
84
|
},
|
|
85
85
|
"node_modules/@sap/hana-client": {
|
|
86
|
-
"version": "2.28.
|
|
86
|
+
"version": "2.28.21",
|
|
87
87
|
"hasInstallScript": true,
|
|
88
88
|
"license": "SEE LICENSE IN developer-license-3_2.txt",
|
|
89
89
|
"dependencies": {
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
}
|
|
200
200
|
},
|
|
201
201
|
"node_modules/@sap/node-jwt": {
|
|
202
|
-
"version": "1.6.
|
|
202
|
+
"version": "1.6.30",
|
|
203
203
|
"hasInstallScript": true,
|
|
204
204
|
"license": "SAP DEVELOPER LICENSE AGREEMENT",
|
|
205
205
|
"engines": {
|
|
@@ -207,7 +207,7 @@
|
|
|
207
207
|
}
|
|
208
208
|
},
|
|
209
209
|
"node_modules/@sap/node-vsi": {
|
|
210
|
-
"version": "1.4.
|
|
210
|
+
"version": "1.4.34",
|
|
211
211
|
"hasInstallScript": true,
|
|
212
212
|
"license": "SAP DEVELOPER LICENSE AGREEMENT",
|
|
213
213
|
"engines": {
|
|
@@ -428,7 +428,7 @@
|
|
|
428
428
|
"license": "MIT"
|
|
429
429
|
},
|
|
430
430
|
"node_modules/axios": {
|
|
431
|
-
"version": "1.
|
|
431
|
+
"version": "1.17.0",
|
|
432
432
|
"license": "MIT",
|
|
433
433
|
"dependencies": {
|
|
434
434
|
"follow-redirects": "^1.16.0",
|
|
@@ -1384,7 +1384,7 @@
|
|
|
1384
1384
|
}
|
|
1385
1385
|
},
|
|
1386
1386
|
"node_modules/nodemailer": {
|
|
1387
|
-
"version": "8.0.
|
|
1387
|
+
"version": "8.0.10",
|
|
1388
1388
|
"license": "MIT-0",
|
|
1389
1389
|
"engines": {
|
|
1390
1390
|
"node": ">=6.0.0"
|
|
@@ -1567,7 +1567,7 @@
|
|
|
1567
1567
|
}
|
|
1568
1568
|
},
|
|
1569
1569
|
"node_modules/semver": {
|
|
1570
|
-
"version": "7.8.
|
|
1570
|
+
"version": "7.8.4",
|
|
1571
1571
|
"license": "ISC",
|
|
1572
1572
|
"bin": {
|
|
1573
1573
|
"semver": "bin/semver.js"
|
|
@@ -1634,12 +1634,12 @@
|
|
|
1634
1634
|
"license": "ISC"
|
|
1635
1635
|
},
|
|
1636
1636
|
"node_modules/side-channel": {
|
|
1637
|
-
"version": "1.1.
|
|
1637
|
+
"version": "1.1.1",
|
|
1638
1638
|
"license": "MIT",
|
|
1639
1639
|
"dependencies": {
|
|
1640
1640
|
"es-errors": "^1.3.0",
|
|
1641
|
-
"object-inspect": "^1.13.
|
|
1642
|
-
"side-channel-list": "^1.0.
|
|
1641
|
+
"object-inspect": "^1.13.4",
|
|
1642
|
+
"side-channel-list": "^1.0.1",
|
|
1643
1643
|
"side-channel-map": "^1.0.1",
|
|
1644
1644
|
"side-channel-weakmap": "^1.0.2"
|
|
1645
1645
|
},
|
|
@@ -1831,7 +1831,7 @@
|
|
|
1831
1831
|
}
|
|
1832
1832
|
},
|
|
1833
1833
|
"node_modules/yauzl": {
|
|
1834
|
-
"version": "3.
|
|
1834
|
+
"version": "3.4.0",
|
|
1835
1835
|
"license": "MIT",
|
|
1836
1836
|
"dependencies": {
|
|
1837
1837
|
"pend": "~1.2.0"
|
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": "
|
|
4
|
+
"version": "3.0.1",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "git@github.wdf.sap.corp:xs2/async-xsjs.git"
|
|
7
7
|
},
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@sap/audit-logging": "^7.0.1",
|
|
12
12
|
"@sap/e2e-trace": "^6.2.1",
|
|
13
|
-
"@sap/hana-client": "2.28.
|
|
13
|
+
"@sap/hana-client": "2.28.21",
|
|
14
14
|
"@sap/hdbext": "8.1.13",
|
|
15
15
|
"@sap/instance-manager": "^5.2.6",
|
|
16
16
|
"@sap/jobs-client": "^1.9.1",
|
|
17
17
|
"@sap/logging": "^9.2.1",
|
|
18
|
-
"@sap/node-jwt": "^1.6.
|
|
19
|
-
"@sap/node-vsi": "^1.4.
|
|
18
|
+
"@sap/node-jwt": "^1.6.30",
|
|
19
|
+
"@sap/node-vsi": "^1.4.34",
|
|
20
20
|
"@sap/textbundle": "^6.2.0",
|
|
21
21
|
"@sap/xsenv": "^6.2.1",
|
|
22
22
|
"@sap/xsodata": "^8.3.2",
|
|
@@ -35,15 +35,15 @@
|
|
|
35
35
|
"media-typer": "0.3.0",
|
|
36
36
|
"moment": "2.30.1",
|
|
37
37
|
"multiparty": "4.3.0",
|
|
38
|
-
"nodemailer": "8.0.
|
|
38
|
+
"nodemailer": "8.0.10",
|
|
39
39
|
"passport": "0.7.0",
|
|
40
40
|
"passport-strategy": "1.0.0",
|
|
41
41
|
"sax": "1.6.0",
|
|
42
42
|
"statuses": "1.2.1",
|
|
43
43
|
"verror": "1.10.1",
|
|
44
|
-
"yauzl": "3.
|
|
44
|
+
"yauzl": "3.4.0",
|
|
45
45
|
"yazl": "2.4.1",
|
|
46
|
-
"axios": "^1.
|
|
46
|
+
"axios": "^1.17.0"
|
|
47
47
|
},
|
|
48
48
|
"engines": {
|
|
49
49
|
"node": "^20.x || ^22.x || ^24.x"
|