@sap/ux-ui5-tooling 1.6.7 → 1.7.0
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 +7 -0
- package/dist/cli/index.js +568 -497
- package/dist/middlewares/fiori-tools-appreload.js +117 -215
- package/dist/middlewares/fiori-tools-preview.js +535 -481
- package/dist/middlewares/fiori-tools-proxy.js +17071 -14514
- package/dist/middlewares/fiori-tools-servestatic.js +119 -219
- package/dist/tasks/cf-deploy/index.js +436 -283
- package/dist/tasks/deploy/index.js +559 -488
- package/dist/templates/control-property-editor/app.css +1 -1
- package/dist/templates/control-property-editor/app.js +49 -49
- package/dist/templates/control-property-editor/ui5-adaptation.js +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +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.7.0] - 2022-07-28
|
|
6
|
+
### Changed
|
|
7
|
+
- Improved error handling of the `fiori-tools-proxy`
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- Fixed an issue where previewing an application using a full url destination was not working
|
|
11
|
+
|
|
5
12
|
## [1.6.7] - 2022-07-14
|
|
6
13
|
### Changed
|
|
7
14
|
- 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
|