@sap/ux-ui5-tooling 1.6.6 → 1.6.7
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 +1 -1
- package/dist/cli/index.js +1014 -445
- package/dist/middlewares/fiori-tools-appreload.js +56 -56
- package/dist/middlewares/fiori-tools-preview.js +450 -125
- package/dist/middlewares/fiori-tools-proxy.js +81992 -92260
- package/dist/middlewares/fiori-tools-servestatic.js +56 -56
- package/dist/tasks/cf-deploy/index.js +506 -181
- package/dist/tasks/deploy/index.js +1014 -445
- package/dist/templates/control-property-editor/app.css +1 -1
- package/dist/templates/control-property-editor/app.js +48 -48
- package/package.json +14 -14
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.6.7] - 2022-07-14
|
|
6
|
+
### Changed
|
|
7
|
+
- The `fiori-tools-proxy` is now using the [@sap-ux/backend-proxy-middleware](https://www.npmjs.com/package/@sap-ux/backend-proxy-middleware) for proxying requests to the backend
|
|
8
|
+
|
|
5
9
|
## [1.6.0] - 2022-05-05
|
|
6
10
|
### Changed
|
|
7
11
|
- The `fiori-tools-proxy` is now using the [@sap-ux/ui5-proxy-middleware](https://www.npmjs.com/package/@sap-ux/ui5-proxy-middleware) for proxying the UI5 sources
|
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ Set this parameter to get more log information.
|
|
|
48
48
|
|
|
49
49
|
### [**2. Proxy**](#2-proxy)
|
|
50
50
|
|
|
51
|
-
The proxy middleware provides you with the capabilities to connect to
|
|
51
|
+
The proxy middleware provides you with the capabilities to connect to different back-end systems or to switch the SAPUI5 version of the application. The proxy is based on the [@sap-ux/ui5-proxy-middleware](https://www.npmjs.com/package/@sap-ux/ui5-proxy-middleware) for proxying the UI5 sources (starting with version `1.6.0`) and the [@sap-ux/backend-proxy-middleware](https://www.npmjs.com/package/@sap-ux/backend-proxy-middleware) for connecting to different back-end systems (starting with version `1.6.7`). Both `@sap-ux/ui5-proxy-middleware` and `@sap-ux/backend-proxy-middleware` are based on the [http-proxy-middleware](https://www.npmjs.com/package/http-proxy-middleware).
|
|
52
52
|
|
|
53
53
|
### Configuration Examples
|
|
54
54
|
|