@sap/async-xsjs 2.0.7 → 2.0.9
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 +14 -0
- package/README.md +2 -0
- package/npm-shrinkwrap.json +402 -1131
- package/package.json +3 -3
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="2.0.9"></a>
|
|
9
|
+
## 2.0.9 - 2024-12-18
|
|
10
|
+
|
|
11
|
+
### Updated
|
|
12
|
+
- Pinned @sap/hdbext version to 8.1.0 to fix the security vulnerability.
|
|
13
|
+
|
|
14
|
+
<a name="2.0.8"></a>
|
|
15
|
+
## 2.0.8 - 2024-12-12
|
|
16
|
+
|
|
17
|
+
### Updated
|
|
18
|
+
- Pinned @sap/hdbext version to 8.0.9 to fix the security vulnerability.
|
|
19
|
+
- Updated express version to 4.21.2 to fix the security vulnerability.
|
|
20
|
+
|
|
21
|
+
|
|
8
22
|
<a name="2.0.7"></a>
|
|
9
23
|
## 2.0.7 - 2024-12-03
|
|
10
24
|
|
package/README.md
CHANGED
|
@@ -93,6 +93,8 @@ Here is a list of options you can provide:
|
|
|
93
93
|
| redirectUrl | | If specified, a redirect to this URL is triggered when the root path is requested. <br> **Note**: When _async-xsjs_ is performed behind a reverse proxy (for example, Application Router), the value of this property should be aligned with the path rewriting rules that may apply. |
|
|
94
94
|
| xsApplicationUser | true | If set to false, the session variable `XS_APPLICATIONUSER` will not be set. |
|
|
95
95
|
|
|
96
|
+
**Note:** If xsApplicationUser is true or anonymous is false and your database is Hana Cloud, please configure the [JWT Environment](https://help.sap.com/docs/hana-cloud-database/sap-hana-cloud-sap-hana-database-data-access-guide/set-up-jwt-environment), else SET command: XS_APPLICATIONUSER will be failed and process will be stopped.
|
|
97
|
+
|
|
96
98
|
**Note:** When there are several `rootDirs` (for example, **repo1** and **repo2**) and their file structures are identical (_/repo1/hello.xsjs_ and _/repo2/hello.xsjs_), then:
|
|
97
99
|
* The file from the first directory, as listed in the `rootDirs` property, will be used (_/repo1/hello.xsjs_).
|
|
98
100
|
* The file from the second directory (_/repo2/hello.xsjs_) will be ignored with a warning message in the logs.
|