@sap/ux-ui5-tooling 1.20.1 → 1.20.3
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 +18 -0
- package/README.md +1 -1
- package/dist/cli/index.js +7641 -7489
- package/dist/middlewares/fiori-tools-appreload.js +422 -239
- package/dist/middlewares/fiori-tools-preview.js +5405 -5654
- package/dist/middlewares/fiori-tools-proxy.js +6109 -6113
- package/dist/middlewares/fiori-tools-servestatic.js +65 -43
- package/dist/tasks/cf-deploy/index.js +5302 -5553
- package/dist/tasks/deploy/index.js +6871 -6762
- package/package.json +24 -24
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@ 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.20.2] - 2026-01-22
|
|
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.23.84` -> `0.23.94`] |
|
|
11
|
+
| [@sap-ux/axios-extension](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/axios-extension)) | [`1.25.4` -> `1.25.6`] |
|
|
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.10.24` -> `0.10.29`] |
|
|
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.17.23` -> `0.17.32`] |
|
|
14
|
+
| [@sap-ux/project-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/project-access)) | [`1.33.0` -> `1.34.2`] |
|
|
15
|
+
| [@sap-ux/reload-middleware](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/reload-middleware)) | [`0.3.9` -> `0.3.10`] |
|
|
16
|
+
| [@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)) | [`0.4.5` -> `0.4.7`] |
|
|
17
|
+
| [@sap-ux/store](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/store)) | [`1.4.2` -> `1.5.0`] |
|
|
18
|
+
| [@sap-ux/system-access](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/system-access)) | [`0.6.37` -> `0.6.41`] |
|
|
19
|
+
| [@sap-ux/telemetry](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/telemetry)) | [`0.6.50` -> `0.6.56`] |
|
|
20
|
+
| [@sap-ux/ui5-config](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/ui5-config)) | [`0.29.12` -> `0.29.13`] |
|
|
21
|
+
| [@sap-ux/ui5-info](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/ui5-info)) | [`0.13.7` -> `0.13.8`] |
|
|
22
|
+
| [@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.6.10` -> `1.6.12`] |
|
|
23
|
+
|
|
6
24
|
## [1.20.1] - 2026-01-07
|
|
7
25
|
### Quality
|
|
8
26
|
| Package | Change |
|
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ Path that is to be watched. By default, the standard SAPUI5 `webapp` folder is u
|
|
|
37
37
|
|
|
38
38
|
#### ext
|
|
39
39
|
|
|
40
|
-
- `<string>` (default: `html,js,json,xml,properties,change`)
|
|
40
|
+
- `<string>` (default: `html,js,ts,json,xml,properties,change,variant,appdescr_variant,ctrl_variant,ctrl_variant_change,ctrl_variant_management_change`)
|
|
41
41
|
Change this parameter to select a custom set of file extensions that are to be watched
|
|
42
42
|
|
|
43
43
|
#### port
|