@sap/ux-ui5-tooling 1.11.0 → 1.11.2
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 +4 -0
- package/README.md +16 -2
- package/dist/cli/index.js +30089 -20701
- package/dist/middlewares/fiori-tools-appreload.js +21652 -9063
- package/dist/middlewares/fiori-tools-preview.js +14 -7
- package/dist/middlewares/fiori-tools-proxy.js +8307 -9102
- package/dist/middlewares/fiori-tools-servestatic.js +16778 -3950
- package/dist/tasks/cf-deploy/index.js +857 -4631
- package/dist/tasks/deploy/index.js +95172 -85886
- package/dist/templates/control-property-editor/app.css +1 -1
- package/dist/templates/control-property-editor/app.js +57 -54
- package/package.json +11 -12
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
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
|
+
## [1.11.2] - 2023-10-04
|
|
6
|
+
### Fixed
|
|
7
|
+
- Removed usage of the deprecated `@ui5/logger` version 2 package
|
|
8
|
+
|
|
5
9
|
## [1.11.0] - 2023-09-06
|
|
6
10
|
### Fixed
|
|
7
11
|
- Fixed an issue with newly created variants not being shown during the preview
|
package/README.md
CHANGED
|
@@ -172,6 +172,19 @@ By the default the `fiori-tools-proxy` will read the proxy configuration from th
|
|
|
172
172
|
- path: /sap
|
|
173
173
|
url: https://my.backend.com:1234
|
|
174
174
|
|
|
175
|
+
```
|
|
176
|
+
#### [Ignoring Certificate Errors](#ignoring-certificate-errors)
|
|
177
|
+
By default, the `fiori-tools-proxy` will verify the SSL certificates and will throw an error if the validation fails. One can set the parameter `ignoreCertError: true` to ignore the certificate errors. Setting this parameter to `true` also allows the usage of self-signed certificates.
|
|
178
|
+
|
|
179
|
+
```
|
|
180
|
+
- name: fiori-tools-proxy
|
|
181
|
+
afterMiddleware: compression
|
|
182
|
+
configuration:
|
|
183
|
+
ignoreCertError: true
|
|
184
|
+
backend:
|
|
185
|
+
- path: /sap
|
|
186
|
+
url: https://my.backend.com:1234
|
|
187
|
+
|
|
175
188
|
```
|
|
176
189
|
#### [Providing Credentials](#providing-credentials)
|
|
177
190
|
Starting with version `1.6.7` it is now possible to provide the credentials for the backend service upfront in a `.env` file.
|
|
@@ -269,7 +282,7 @@ Starting with version `1.6.0` one can use the following syntax for proxying diff
|
|
|
269
282
|
- path: /resources
|
|
270
283
|
url: https://ui5.sap.com
|
|
271
284
|
- path: /test-resources
|
|
272
|
-
src: https://
|
|
285
|
+
src: https://ui5.sap.com
|
|
273
286
|
version: '1.100.1'
|
|
274
287
|
```
|
|
275
288
|
|
|
@@ -404,7 +417,7 @@ SAP Fiori Tools use the capabilities of custom tasks to deploy the SAP Fiori pro
|
|
|
404
417
|
|
|
405
418
|
### [Deployment to ABAP](#deployment-to-abap)
|
|
406
419
|
|
|
407
|
-
The deployment to ABAP task allows deploying SAP Fiori applications to SAP systems using the [SAPUI5 Repository OData service](https://
|
|
420
|
+
The deployment to ABAP task allows deploying SAP Fiori applications to SAP systems using the [SAPUI5 Repository OData service](https://ui5.sap.com/#/topic/a883327a82ef4cc792f3c1e7b7a48de8.html).
|
|
408
421
|
|
|
409
422
|
**Pre-requisites:**
|
|
410
423
|
|
|
@@ -639,6 +652,7 @@ Deploys an application to an ABAP frontend server.
|
|
|
639
652
|
* `--description, -e` - The application description (default: description from `ui5-deploy.yaml`).
|
|
640
653
|
* `--yes, -y` - Deploy without asking for confirmation.
|
|
641
654
|
* `--failfast, -f` - Throw an error if something goes wrong and exit with a return code != 0.
|
|
655
|
+
* `--testMode, -tm` - Shows the results of CRUD operations that would be done in a real deployment to help you make an informed decision.
|
|
642
656
|
|
|
643
657
|
## [FAQ](#faq)
|
|
644
658
|
|