@sap/ux-ui5-tooling 1.18.5 → 1.18.6
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 +4 -2
- package/dist/cli/index.js +19960 -19977
- package/dist/middlewares/fiori-tools-preview.js +7290 -754
- package/dist/middlewares/fiori-tools-proxy.js +7323 -775
- package/dist/tasks/cf-deploy/index.js +66266 -59730
- package/dist/tasks/deploy/index.js +7644 -1122
- package/package.json +12 -12
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.18.6] - 2025-08-20
|
|
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.21.2` -> `0.23.0`] |
|
|
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.13` -> `0.15.21`] |
|
|
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.38` -> `0.16.42`] |
|
|
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.8` -> `1.5.9`] |
|
|
14
|
+
|
|
6
15
|
## [1.18.5] - 2025-08-06
|
|
7
16
|
### Quality
|
|
8
17
|
| Package | Change |
|
package/README.md
CHANGED
|
@@ -176,18 +176,20 @@ By the default the `fiori-tools-proxy` will read the proxy configuration from th
|
|
|
176
176
|
|
|
177
177
|
```
|
|
178
178
|
#### [Ignoring Certificate Errors](#ignoring-certificate-errors)
|
|
179
|
-
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 `
|
|
179
|
+
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 `ignoreCertErrors: true` to ignore the certificate errors. Setting this parameter to `true` also allows the usage of self-signed certificates.
|
|
180
180
|
|
|
181
181
|
```
|
|
182
182
|
- name: fiori-tools-proxy
|
|
183
183
|
afterMiddleware: compression
|
|
184
184
|
configuration:
|
|
185
|
-
|
|
185
|
+
ignoreCertErrors: true
|
|
186
186
|
backend:
|
|
187
187
|
- path: /sap
|
|
188
188
|
url: https://my.backend.com:1234
|
|
189
189
|
|
|
190
190
|
```
|
|
191
|
+
|
|
192
|
+
**Note**: The singular form `ignoreCertError` is also supported for backward compatibility but is deprecated. When using the singular form, a deprecation warning will be displayed encouraging migration to `ignoreCertErrors` (plural).
|
|
191
193
|
#### [Providing Credentials](#providing-credentials)
|
|
192
194
|
### Local Testing
|
|
193
195
|
For local testing the logon credentials to a backend system need to be provided using the secure storage of the operating system.
|