@sap/ux-ui5-tooling 1.19.0 → 1.19.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 CHANGED
@@ -3,6 +3,33 @@ 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.19.2] - 2025-10-16
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.15` -> `0.23.27`] |
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.31` -> `0.16.4`] |
12
+ | [@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.22.9` -> `1.23.0`] |
13
+ | [@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.2` -> `0.10.3`] |
14
+ | [@sap-ux/btp-utils](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/btp-utils)) | [`1.1.3` -> `1.1.4`] |
15
+ | [@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.52` -> `0.16.60`] |
16
+ | [@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.3` -> `0.3.4`] |
17
+ | [@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.0` -> `0.4.1`] |
18
+ | [@sap-ux/store](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/store)) | [`1.1.4` -> `1.2.0`] |
19
+ | [@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.2` -> `1.6.4`] |
20
+
21
+ ## [1.19.1] - 2025-10-02
22
+ ### Quality
23
+ | Package | Change |
24
+ |---|---|
25
+ | [@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.9` -> `0.23.15`] |
26
+ | [@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.27` -> `0.15.31`] |
27
+ | [@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.17` -> `0.10.2`] |
28
+ | [@sap-ux/btp-utils](https://github.com/SAP/open-ux-tools) ([source](https://github.com/SAP/open-ux-tools/tree/HEAD/packages/btp-utils)) | [`1.1.1` -> `1.1.3`] |
29
+ | [@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.48` -> `0.16.52`] |
30
+ | [@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.1` -> `0.3.3`] |
31
+ | [@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.11` -> `1.6.2`] |
32
+
6
33
  ## [1.19.0] - 2025-09-18
7
34
  ### Quality
8
35
  | Package | Change |
package/README.md CHANGED
@@ -288,10 +288,40 @@ Starting with version `1.6.0` one can use the following syntax for proxying diff
288
288
  - path: /resources
289
289
  url: https://ui5.sap.com
290
290
  - path: /test-resources
291
- src: https://ui5.sap.com
291
+ url: https://ui5.sap.com
292
292
  version: '1.100.1'
293
293
  ```
294
294
 
295
+ Starting with version `1.20.0` one can use the following syntax to load UI5 sources from a different host, e.g.
296
+
297
+ **NOTE: using `pathReplace` will not consider a specified UI5 version. If a specific UI5 version is needed, then it needs to be part of the `pathReplace`.**
298
+
299
+ ```Yaml
300
+ server:
301
+ customMiddleware:
302
+ - name: ui5-proxy-middleware
303
+ afterMiddleware: compression
304
+ configuration:
305
+ ui5:
306
+ - path: /resources
307
+ url: https://my.backend.example:1234
308
+ pathReplace: /sap/public/ui5/resources
309
+ ```
310
+ ```Yaml
311
+ server:
312
+ customMiddleware:
313
+ - name: fiori-tools-proxy
314
+ afterMiddleware: compression
315
+ configuration:
316
+ ui5:
317
+ paths:
318
+ - path: /resources
319
+ url: https://ui5.sap.com
320
+ - path: /test-resources
321
+ url: https://my.backend.example:1234
322
+ pathReplace: /sap/public/ui5/resources
323
+ ```
324
+
295
325
  ### [**3. Serve Static**](#3-serve-static)
296
326
 
297
327
  The serve static middleware provides the capability to serve any static resources locally from your machine. E.g. you can serve SAPUI5 locally or any other resources.