@sap/ux-ui5-tooling 1.18.7 → 1.19.0

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,15 @@ 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.0] - 2025-09-18
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.5` -> `0.23.9`] |
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.24` -> `0.15.27`] |
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)) | [`0.16.46` -> `0.16.48`] |
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)) | [`1.5.10` -> `1.5.11`] |
14
+
6
15
  ## [1.18.7] - 2025-09-04
7
16
  ### Quality
8
17
  | Package | Change |
package/README.md CHANGED
@@ -514,7 +514,7 @@ builder:
514
514
  - name: deploy-to-abap
515
515
  afterTask: replaceVersion
516
516
  configuration:
517
- ignoreCertError: false # Disabled by default, set to true if you want to ignore certificate errors
517
+ ignoreCertErrors: false # Disabled by default. Set to `true` to ignore certificate errors.
518
518
  target:
519
519
  url: https://XYZ.sap-system.corp:44311
520
520
  client: 200
@@ -559,7 +559,9 @@ builder:
559
559
  - name: deploy-to-abap
560
560
  afterTask: replaceVersion
561
561
  configuration:
562
- yes: true # Enabled by default, set to true if you want to disable the confirmation prompt
562
+ verbose: true # Disabled by default. Set to `true` to include more information in the log.
563
+ yes: true # Enabled by default. Set to `true` to disable the confirmation prompt.
564
+ ignoreCertErrors: true # Disabled by default. Set to `true` to ignore certificate errors.
563
565
  target:
564
566
  url: https://XYZ.sap-system.corp:44311
565
567
  client: 200
@@ -666,7 +668,7 @@ The app object describes the backend object that is created/updated as result of
666
668
  - `boolean` (default: `false`)
667
669
  - If set to `true`, the task will log additional information about the deployment process. This is useful for debugging purposes.
668
670
 
669
- ## [Commands](#commands)
671
+ ## [CLI Commands](#commands)
670
672
  ### [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
673
  #### Options
672
674
 
@@ -757,7 +759,9 @@ Deploys an application to an ABAP frontend server.
757
759
  * `--testMode, -tm` - Shows the results of CRUD operations that would be done in a real deployment to help you make an informed decision.
758
760
  * `--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
761
  * `--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`).
762
+ * `--strict-ssl, -ss` - Deprecated. Use `ignoreCertErrors` (plural) instead.
763
+ * `--ignore-cert-error, -ic` - Deprecated. Use `ignoreCertErrors` (plural) instead.
764
+ * `--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
765
 
762
766
  ## [FAQ](#faq)
763
767