@sap/ux-ui5-tooling 1.10.6 → 1.11.1

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
@@ -2,10 +2,13 @@
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.0] - 2023-09-06
6
+ ### Fixed
7
+ - Fixed an issue with newly created variants not being shown during the preview
5
8
 
6
9
  ## [1.10.6] - 2023-08-23
7
10
  ### Added
8
- - Check the `@ui5/cli` version of the project and advise the user how to upgrade, if version < 3
11
+ - Check the `@ui5/cli` version of the project and advise the user on how to upgrade, if version < 3
9
12
 
10
13
  ## [1.10.5] - 2023-08-09
11
14
  ### Changed
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.
@@ -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