cds-plugin-ui5 0.16.2 → 0.17.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 +19 -0
- package/README.md +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.17.0](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/cds-plugin-ui5@0.16.3...cds-plugin-ui5@0.17.0) (2026-03-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* update dependencies ([#1326](https://github.com/ui5-community/ui5-ecosystem-showcase/issues/1326)) ([6f16575](https://github.com/ui5-community/ui5-ecosystem-showcase/commit/6f16575680b0c526261b84f83b22743806c8509b))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.16.3](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/cds-plugin-ui5@0.16.2...cds-plugin-ui5@0.16.3) (2026-01-15)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package cds-plugin-ui5
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.16.2](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/cds-plugin-ui5@0.16.1...cds-plugin-ui5@0.16.2) (2026-01-15)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package cds-plugin-ui5
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# cds-plugin-ui5
|
|
2
2
|
|
|
3
|
-
> :wave: This is an **open‑source, community‑driven project**,
|
|
3
|
+
> :wave: This is an **open‑source, community‑driven project**, actively overseen by UI5 and CAP contributors. It is maintained outside SAP’s standard support model. You are welcome to adopt it, submit issues, contribute enhancements, and participate in community discussions.
|
|
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
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cds-plugin-ui5",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.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": "^13.0.
|
|
17
|
+
"glob": "^13.0.6",
|
|
18
18
|
"js-yaml": "^4.1.1",
|
|
19
|
-
"node-html-parser": "^7.0
|
|
20
|
-
"semver": "^7.7.
|
|
19
|
+
"node-html-parser": "^7.1.0",
|
|
20
|
+
"semver": "^7.7.4"
|
|
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": "c11ab96b1a054d26c7d2dcab1a9f1e3246aa1355"
|
|
31
31
|
}
|