@sap/ux-ui5-tooling 1.18.3 → 1.18.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 +21 -0
- package/README.md +8 -6
- package/dist/cli/index.js +32326 -29240
- package/dist/middlewares/fiori-tools-appreload.js +5947 -4200
- package/dist/middlewares/fiori-tools-preview.js +12406 -14948
- package/dist/middlewares/fiori-tools-proxy.js +13295 -19914
- package/dist/middlewares/fiori-tools-servestatic.js +2560 -2407
- package/dist/tasks/cf-deploy/index.js +12537 -15080
- package/dist/tasks/deploy/index.js +25760 -29141
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,27 @@ All notable changes to this project are documented in this file.
|
|
|
3
3
|
|
|
4
4
|
This project adheres to [Semantic Versioning](http://semver.org/) and the changelog is formatted based on [Keep a Changelog](http://keepachangelog.com/).
|
|
5
5
|
|
|
6
|
+
## [1.18.5] - 2025-08-06
|
|
7
|
+
### Quality
|
|
8
|
+
| Package | Change |
|
|
9
|
+
|---|---|
|
|
10
|
+
| [@sap-ux/preview-middleware](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/preview-middleware)) | [`0.20.73` -> `0.21.2`] |
|
|
11
|
+
| [@sap-ux/adp-tooling](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/adp-tooling)) | [`0.15.10` -> `0.15.13`] |
|
|
12
|
+
| [@sap-ux/backend-proxy-middleware](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/backend-proxy-middleware)) | [`0.9.11` -> `0.9.12`] |
|
|
13
|
+
| [@sap-ux/deploy-tooling](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/deploy-tooling)) | [`0.16.36` -> `0.16.38`] |
|
|
14
|
+
| [@sap-ux/ui5-proxy-middleware](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/ui5-proxy-middleware)) | [`1.5.7` -> `1.5.8`] |
|
|
15
|
+
|
|
16
|
+
## [1.18.4] - 2025-07-24
|
|
17
|
+
### Quality
|
|
18
|
+
| Package | Change |
|
|
19
|
+
|---|---|
|
|
20
|
+
| [@sap-ux/preview-middleware](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/preview-middleware)) | [`0.20.50` -> `0.20.67`] |
|
|
21
|
+
| [@sap-ux/adp-tooling](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/adp-tooling)) | [`0.14.35` -> `0.15.4`] |
|
|
22
|
+
| [@sap-ux/backend-proxy-middleware](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/backend-proxy-middleware)) | [`0.9.9` -> `0.9.10`] |
|
|
23
|
+
| [@sap-ux/deploy-tooling](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/deploy-tooling)) | [`0.16.22` -> `0.16.32`] |
|
|
24
|
+
| [@sap-ux/store](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/store)) | [`1.1.1` -> `1.1.2`] |
|
|
25
|
+
| [@sap-ux/ui5-proxy-middleware](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/ui5-proxy-middleware)) | [`1.5.4` -> `1.5.7`] |
|
|
26
|
+
|
|
6
27
|
## [1.18.3] - 2025-07-10
|
|
7
28
|
### Quality
|
|
8
29
|
| Package | Change |
|
package/README.md
CHANGED
|
@@ -189,13 +189,15 @@ By default, the `fiori-tools-proxy` will verify the SSL certificates and will th
|
|
|
189
189
|
|
|
190
190
|
```
|
|
191
191
|
#### [Providing Credentials](#providing-credentials)
|
|
192
|
-
|
|
192
|
+
### Local Testing
|
|
193
|
+
For local testing the logon credentials to a backend system need to be provided using the secure storage of the operating system.
|
|
193
194
|
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
195
|
+
Configure the needed connections here: `SAP Fiori -> SAP SYSTEMS`
|
|
196
|
+
|
|
197
|
+
### CI Scenario
|
|
198
|
+
In the CI scenario the logon credentials to a backend system need to be provided by the two environment variables
|
|
199
|
+
|
|
200
|
+
`FIORI_TOOLS_USER` and `FIORI_TOOLS_PASSWORD`
|
|
199
201
|
|
|
200
202
|
#### [Backend configuration options](#backend-configuration-options)
|
|
201
203
|
|