@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 +9 -0
- package/README.md +8 -4
- package/dist/cli/index.js +194 -162
- package/dist/markdowns/deploy/deploy.en.md +44 -33
- package/dist/markdowns/undeploy/undeploy.en.md +23 -21
- package/dist/middlewares/fiori-tools-appreload.js +2 -0
- package/dist/middlewares/fiori-tools-preview.js +11 -6
- package/dist/middlewares/fiori-tools-proxy.js +12 -9
- package/dist/middlewares/fiori-tools-servestatic.js +2 -0
- package/dist/tasks/cf-deploy/index.js +18 -15
- package/dist/tasks/deploy/index.js +255 -98
- package/package.json +9 -9
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
|
-
|
|
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
|
-
|
|
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` -
|
|
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
|
|