@sap/ux-ui5-tooling 1.18.4 → 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 CHANGED
@@ -3,6 +3,25 @@ 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
+
15
+ ## [1.18.5] - 2025-08-06
16
+ ### Quality
17
+ | Package | Change |
18
+ |---|---|
19
+ | [@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.20.73` -> `0.21.2`] |
20
+ | [@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.10` -> `0.15.13`] |
21
+ | [@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.11` -> `0.9.12`] |
22
+ | [@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.36` -> `0.16.38`] |
23
+ | [@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.7` -> `1.5.8`] |
24
+
6
25
  ## [1.18.4] - 2025-07-24
7
26
  ### Quality
8
27
  | Package | Change |
package/README.md CHANGED
@@ -176,26 +176,30 @@ 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 `ignoreCertError: true` to ignore the certificate errors. Setting this parameter to `true` also allows the usage of self-signed certificates.
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
- ignoreCertError: true
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
- Starting with version `1.6.7` it is now possible to provide the credentials for the backend service upfront in a `.env` file.
194
+ ### Local Testing
195
+ For local testing the logon credentials to a backend system need to be provided using the secure storage of the operating system.
193
196
 
194
- ```
195
- FIORI_TOOLS_USER=YOUR_USER
196
- FIORI_TOOLS_PASSWORD=YOUR_PASSWORD
197
- ```
198
- When the two environment variables `FIORI_TOOLS_USER` and `FIORI_TOOLS_PASSWORD` are defined, then they will be used as credentials when connecting to the backend service.
197
+ Configure the needed connections here: `SAP Fiori -> SAP SYSTEMS`
198
+
199
+ ### CI Scenario
200
+ In the CI scenario the logon credentials to a backend system need to be provided by the two environment variables
201
+
202
+ `FIORI_TOOLS_USER` and `FIORI_TOOLS_PASSWORD`
199
203
 
200
204
  #### [Backend configuration options](#backend-configuration-options)
201
205