@sap/ux-ui5-tooling 1.18.7 → 1.19.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 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.19.1] - 2025-10-02
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.9` -> `0.23.15`] |
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.27` -> `0.15.31`] |
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.17` -> `0.10.2`] |
13
+ | [@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`] |
14
+ | [@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`] |
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.1` -> `0.3.3`] |
16
+ | [@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`] |
17
+
18
+ ## [1.19.0] - 2025-09-18
19
+ ### Quality
20
+ | Package | Change |
21
+ |---|---|
22
+ | [@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.5` -> `0.23.9`] |
23
+ | [@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.24` -> `0.15.27`] |
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)) | [`0.16.46` -> `0.16.48`] |
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.10` -> `1.5.11`] |
26
+
6
27
  ## [1.18.7] - 2025-09-04
7
28
  ### Quality
8
29
  | 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.
@@ -514,7 +544,7 @@ builder:
514
544
  - name: deploy-to-abap
515
545
  afterTask: replaceVersion
516
546
  configuration:
517
- ignoreCertError: false # Disabled by default, set to true if you want to ignore certificate errors
547
+ ignoreCertErrors: false # Disabled by default. Set to `true` to ignore certificate errors.
518
548
  target:
519
549
  url: https://XYZ.sap-system.corp:44311
520
550
  client: 200
@@ -559,7 +589,9 @@ builder:
559
589
  - name: deploy-to-abap
560
590
  afterTask: replaceVersion
561
591
  configuration:
562
- yes: true # Enabled by default, set to true if you want to disable the confirmation prompt
592
+ verbose: true # Disabled by default. Set to `true` to include more information in the log.
593
+ yes: true # Enabled by default. Set to `true` to disable the confirmation prompt.
594
+ ignoreCertErrors: true # Disabled by default. Set to `true` to ignore certificate errors.
563
595
  target:
564
596
  url: https://XYZ.sap-system.corp:44311
565
597
  client: 200
@@ -666,7 +698,7 @@ The app object describes the backend object that is created/updated as result of
666
698
  - `boolean` (default: `false`)
667
699
  - If set to `true`, the task will log additional information about the deployment process. This is useful for debugging purposes.
668
700
 
669
- ## [Commands](#commands)
701
+ ## [CLI Commands](#commands)
670
702
  ### [fiori run](#fiori-run---starts-a-local-web-server-for-running-a-fe-application) - starts a local web server for running a FE application
671
703
  #### Options
672
704
 
@@ -757,7 +789,9 @@ Deploys an application to an ABAP frontend server.
757
789
  * `--testMode, -tm` - Shows the results of CRUD operations that would be done in a real deployment to help you make an informed decision.
758
790
  * `--archive-path, -ap` - The path to the archive that should be deployed. If provided, the archive will be used instead of creating a new one from the dist folder.
759
791
  * `--verbose, -vb` - Enable verbose logging (default: `false`).
760
- * `--strict-ssl, -ss` - If set to `false`, the task will not validate the SSL certificate of the target system. This is useful for development purposes but should not be used in production environments (default: `true`).
792
+ * `--strict-ssl, -ss` - Deprecated. Use `ignoreCertErrors` (plural) instead.
793
+ * `--ignore-cert-error, -ic` - Deprecated. Use `ignoreCertErrors` (plural) instead.
794
+ * `--ignore-cert-errors, -ics` - Disabled by default. If set to `true`, the task will not validate the SSL certificate of the target system. This is useful for development purposes but must not be used in production environments.
761
795
 
762
796
  ## [FAQ](#faq)
763
797