cds-plugin-ui5 0.14.0 → 0.16.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 +22 -0
- package/README.md +0 -3
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.16.0](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/cds-plugin-ui5@0.15.0...cds-plugin-ui5@0.16.0) (2025-12-02)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* update depedency versions ([#1302](https://github.com/ui5-community/ui5-ecosystem-showcase/issues/1302)) ([0a22ebd](https://github.com/ui5-community/ui5-ecosystem-showcase/commit/0a22ebdde9bcbce570eb7ccdda8539e106dc44e1))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [0.15.0](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/cds-plugin-ui5@0.14.0...cds-plugin-ui5@0.15.0) (2025-11-16)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **cds-plugin-ui5:** remove the under construction hint ([#1294](https://github.com/ui5-community/ui5-ecosystem-showcase/issues/1294)) ([55818e4](https://github.com/ui5-community/ui5-ecosystem-showcase/commit/55818e4994f62e33f62e401b11d2818fc5b81013)), closes [#1293](https://github.com/ui5-community/ui5-ecosystem-showcase/issues/1293)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [0.14.0](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/cds-plugin-ui5@0.13.6...cds-plugin-ui5@0.14.0) (2025-11-02)
|
|
7
29
|
|
|
8
30
|
|
package/README.md
CHANGED
|
@@ -4,9 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
The `cds-plugin-ui5` is a CDS server `cds-plugin` for the node runtime of the [SAP Cloud Application Programming Model (CAP)](https://cap.cloud.sap/docs/about/) which enables the integration of UI5 CLI based (UI5 freestyle or Fiori elements) projects into the CDS server via the UI5 CLI express middlewares. The UI5 or Fiori elements projects just need to be located in the `app` folder of the CDS server, or via the `cds.env.folders.app` variable, or be a dependency of the CDS server.
|
|
6
6
|
|
|
7
|
-
> :construction: **Note**
|
|
8
|
-
> This cds-plugin is still work in progress and not final yet!
|
|
9
|
-
|
|
10
7
|
## Prerequisites
|
|
11
8
|
|
|
12
9
|
The plugin requires [`@sap/cds`](https://www.npmjs.com/package/@sap/cds) `>=6.8.2`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cds-plugin-ui5",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0",
|
|
4
4
|
"description": "A CDS server plugin to inject the middlewares of all related UI5 CLI based projects.",
|
|
5
5
|
"author": "Peter Muessig",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
"@ui5/fs": "^4",
|
|
15
15
|
"@ui5/project": "^4",
|
|
16
16
|
"@ui5/server": "^4",
|
|
17
|
-
"glob": "^
|
|
18
|
-
"js-yaml": "^4.1.
|
|
17
|
+
"glob": "^13.0.0",
|
|
18
|
+
"js-yaml": "^4.1.1",
|
|
19
19
|
"node-html-parser": "^7.0.1",
|
|
20
|
-
"semver": "^7.7.
|
|
20
|
+
"semver": "^7.7.3"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@sap/cds": "*",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"@sap/cds": ">=6.8.2",
|
|
28
28
|
"express": ">=4.18.2"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "01ced0777ecea1c68249904945b7e80d1e1a307a"
|
|
31
31
|
}
|