@sap/ux-ui5-tooling 1.17.6 → 1.18.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 +25 -0
- package/README.md +1 -1
- package/dist/cli/index.js +20181 -2894
- package/dist/middlewares/fiori-tools-appreload.js +2 -2
- package/dist/middlewares/fiori-tools-preview.js +161 -75
- package/dist/middlewares/fiori-tools-proxy.js +156 -74
- package/dist/tasks/cf-deploy/index.js +168 -91
- package/dist/tasks/deploy/index.js +20003 -2716
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,31 @@ 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.1] - 2025-06-12
|
|
7
|
+
### Quality
|
|
8
|
+
| Package | Type | Update | Change |
|
|
9
|
+
|---|---|---|---|
|
|
10
|
+
| [@sap-ux/adp-tooling](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/adp-tooling)) | devDependencies | minor | [`0.14.8` -> `0.14.15`] |
|
|
11
|
+
| [@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)) | devDependencies | minor | [`0.9.1` -> `0.9.2`] |
|
|
12
|
+
| [@sap-ux/deploy-tooling](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/deploy-tooling)) | devDependencies | minor | [`0.16.2` -> `0.16.5`] |
|
|
13
|
+
| [@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)) | devDependencies | minor | [`1.5.1` -> `1.5.2`] |
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## [1.18.0] - 2025-05-29
|
|
17
|
+
### Quality
|
|
18
|
+
| Package | Type | Update | 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)) | dependencies | patch | [`0.20.7` -> `0.20.14`] |
|
|
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)) | devDependencies | minor | [`0.13.45` -> `0.14.8`] |
|
|
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)) | devDependencies | minor | [`0.8.44` -> `0.9.1`] |
|
|
23
|
+
| [@sap-ux/btp-utils](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/btp-utils)) | devDependencies | minor | [`1.0.3` -> `1.1.0`] |
|
|
24
|
+
| [@sap-ux/deploy-tooling](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/deploy-tooling)) | devDependencies | minor | [`0.15.62` -> `0.16.2`] |
|
|
25
|
+
| [@sap-ux/reload-middleware](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/reload-middleware)) | devDependencies | minor | [`0.2.21` -> `0.3.0`] |
|
|
26
|
+
| [@sap-ux/serve-static-middleware](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/serve-static-middleware)) | devDependencies | minor | [`0.2.3` -> `0.3.0`] |
|
|
27
|
+
| [@sap-ux/store](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/store)) | devDependencies | minor | [`1.0.0` -> `1.1.0`] |
|
|
28
|
+
| [@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)) | devDependencies | minor | [`1.4.26` -> `1.5.1`] |
|
|
29
|
+
|
|
30
|
+
|
|
6
31
|
## [1.17.6] - 2025-05-15
|
|
7
32
|
### Changed
|
|
8
33
|
- Changed the minimum required [Node.js](https://nodejs.org/en/download) version to 20.19.2 or higher
|
package/README.md
CHANGED
|
@@ -259,7 +259,7 @@ Starting with `ux-ui5-tooling` version `1.4.7`, if the `version` property is not
|
|
|
259
259
|
|
|
260
260
|
Starting with `ux-ui5-tooling` version `1.7.1` a check for the SAPUI5 version of the application was added, which checks if the version is availble on the SAPUI5 SDK. If not, then the nearest, highest patch, version is used instead.
|
|
261
261
|
|
|
262
|
-
**Note:** all UI5 requests are routed through the proxy. Sometimes this can cause performance issues. If you don't want route the UI5 requests through the proxy, then you can set parameter `directLoad: true`. This will inject the UI5 url in the HTML file of the application and thus the UI5 libs will be loaded directly.
|
|
262
|
+
**Note:** all UI5 requests are routed through the proxy. Sometimes this can cause performance issues. If you don't want route the UI5 requests through the proxy, then you can set parameter `directLoad: true`. This will inject the UI5 url in the HTML file of the application and thus the UI5 libs will be loaded directly. This feature is only available for files served from the local file system (not for virtual endpoints). The filename must adhere to the default filenames: `/index.html`, `/test/flpSandbox.html`, `/test/flpSandboxMockServer.html` or `/test/flp.html`.
|
|
263
263
|
|
|
264
264
|
```
|
|
265
265
|
- name: fiori-tools-proxy
|