@sap/async-xsjs 3.0.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 +17 -1
- package/lib/routes.js +2 -0
- package/npm-shrinkwrap.json +10 -10
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,22 @@ 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
|
|
7
23
|
|
|
8
24
|
<a name="3.0.0"></a>
|
|
9
25
|
## 3.0.0 - 2026-06-08
|
|
@@ -331,4 +347,4 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
|
|
331
347
|
<a name="1.0.0"></a>
|
|
332
348
|
## 1.0.0 - 2023-01-26
|
|
333
349
|
|
|
334
|
-
### 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,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/async-xsjs",
|
|
3
|
-
"version": "3.0.
|
|
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": "3.0.
|
|
9
|
+
"version": "3.0.1",
|
|
10
10
|
"license": "SEE LICENSE IN LICENSE file",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@sap/audit-logging": "^7.0.1",
|
|
@@ -16,8 +16,8 @@
|
|
|
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",
|
|
@@ -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": {
|
|
@@ -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
|
},
|
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.1",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "git@github.wdf.sap.corp:xs2/async-xsjs.git"
|
|
7
7
|
},
|
|
@@ -15,8 +15,8 @@
|
|
|
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",
|