@sap/ux-ui5-tooling 1.8.0 → 1.8.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 +5 -0
- package/README.md +1 -0
- package/dist/cli/index.js +1233 -271
- package/dist/middlewares/fiori-tools-appreload.js +2 -1
- package/dist/middlewares/fiori-tools-preview.js +822 -188
- package/dist/middlewares/fiori-tools-proxy.js +1434 -488
- package/dist/middlewares/fiori-tools-servestatic.js +2 -1
- package/dist/tasks/cf-deploy/index.js +509 -204
- package/dist/tasks/deploy/index.js +824 -190
- package/dist/templates/control-property-editor/app.css +1 -1
- package/dist/templates/control-property-editor/app.js +18 -18
- package/dist/templates/variants-management/WorkspaceConnector.js +6 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
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.8.1] - 2022-11-03
|
|
6
|
+
### Fixed
|
|
7
|
+
- Improved Regex for determining if host is a trusted host, when using developer variant creation.
|
|
8
|
+
- Fixed an issue where the SAPUI5 version check breaks the starting of the preview.
|
|
9
|
+
|
|
5
10
|
## [1.8.0] - 2022-10-20
|
|
6
11
|
### Fixed
|
|
7
12
|
- Fixed an issue with previewing applications when the user is behind a corporate proxy.
|
package/README.md
CHANGED
|
@@ -142,6 +142,7 @@ If you want the proxy to handle also WebSockets, then you need to set the option
|
|
|
142
142
|
url: https://my.backend.com:1234
|
|
143
143
|
ws: true
|
|
144
144
|
```
|
|
145
|
+
**Note: proxying WebSockets is currently not supported in SAP Business Application Studio.**
|
|
145
146
|
|
|
146
147
|
#### [Changing the path to which a request is proxied](#changing-the-path-to-which-a-request-is-proxied)
|
|
147
148
|
Let's that you want to configure the proxy to send requests from a certain path `/services/odata` to a destination with a specified entry path `/my/entry/path`. Then you need to do the following:
|