@sap/ux-ui5-tooling 1.11.1 → 1.11.3
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 +11 -0
- package/README.md +5 -3
- package/dist/cli/index.js +6216 -23473
- package/dist/middlewares/fiori-tools-appreload.js +21728 -9121
- package/dist/middlewares/fiori-tools-preview.js +114 -48
- package/dist/middlewares/fiori-tools-proxy.js +8391 -9156
- package/dist/middlewares/fiori-tools-servestatic.js +16824 -3978
- package/dist/tasks/cf-deploy/index.js +988 -4732
- package/dist/tasks/deploy/index.js +73265 -90624
- package/dist/templates/control-property-editor/app.js +46 -46
- package/dist/templates/control-property-editor/ui5-adaptation.js +1 -1
- package/package.json +12 -13
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
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
|
+
|
|
6
|
+
## [1.11.3] - 2023-10-18
|
|
7
|
+
### Changed
|
|
8
|
+
- Changed the minimum required [NodeJS](https://nodejs.org/en/download) version to 18.14.2 or higher
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fixed an issue with starting developer variant creation with an older UI5 version
|
|
12
|
+
## [1.11.2] - 2023-10-04
|
|
13
|
+
### Fixed
|
|
14
|
+
- Removed usage of the deprecated `@ui5/logger` version 2 package
|
|
15
|
+
|
|
5
16
|
## [1.11.0] - 2023-09-06
|
|
6
17
|
### Fixed
|
|
7
18
|
- Fixed an issue with newly created variants not being shown during the preview
|
package/README.md
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
The SAP Fiori Tools - UI5 Tooling contains a selection of custom [middlewares](https://sap.github.io/ui5-tooling/pages/extensibility/CustomServerMiddleware/) that can be used with the command `ui5 serve` as well as custom [tasks](https://sap.github.io/ui5-tooling/pages/extensibility/CustomTasks/) that can be used with the command `ui5 build`.
|
|
4
4
|
Furthermore, the module expose the cli `fiori` offering e.g. the [`fiori run`](#run) command is a wrapper of the `ui5 serve` commands and provides some additional parameters as well as `fiori add deploy-config` and `fiori add flp-config` to extend an existing project.
|
|
5
5
|
|
|
6
|
-
**IMPORTANT**:
|
|
6
|
+
**IMPORTANT**:
|
|
7
|
+
- Starting with version `1.10.5`, the minimum required `@ui5/cli` version is >= 3! For more information about migration to version 3 of the `@ui5/cli`, see [here](https://sap.github.io/ui5-tooling/v3/updates/migrate-v3/).
|
|
8
|
+
- Starting with version `1.11.3`, the minimum required NodeJS version is 18.14.2 or higher!
|
|
7
9
|
|
|
8
10
|
## [**Middlewares**](#middlewares)
|
|
9
11
|
|
|
@@ -282,7 +284,7 @@ Starting with version `1.6.0` one can use the following syntax for proxying diff
|
|
|
282
284
|
- path: /resources
|
|
283
285
|
url: https://ui5.sap.com
|
|
284
286
|
- path: /test-resources
|
|
285
|
-
src: https://
|
|
287
|
+
src: https://ui5.sap.com
|
|
286
288
|
version: '1.100.1'
|
|
287
289
|
```
|
|
288
290
|
|
|
@@ -417,7 +419,7 @@ SAP Fiori Tools use the capabilities of custom tasks to deploy the SAP Fiori pro
|
|
|
417
419
|
|
|
418
420
|
### [Deployment to ABAP](#deployment-to-abap)
|
|
419
421
|
|
|
420
|
-
The deployment to ABAP task allows deploying SAP Fiori applications to SAP systems using the [SAPUI5 Repository OData service](https://
|
|
422
|
+
The deployment to ABAP task allows deploying SAP Fiori applications to SAP systems using the [SAPUI5 Repository OData service](https://ui5.sap.com/#/topic/a883327a82ef4cc792f3c1e7b7a48de8.html).
|
|
421
423
|
|
|
422
424
|
**Pre-requisites:**
|
|
423
425
|
|