dev-approuter 0.5.8 → 0.5.9
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 +8 -0
- package/README.md +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.5.9](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/dev-approuter@0.5.8...dev-approuter@0.5.9) (2025-09-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package dev-approuter
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.5.8](https://github.com/ui5-community/ui5-ecosystem-showcase/compare/dev-approuter@0.5.7...dev-approuter@0.5.8) (2025-07-31)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package dev-approuter
|
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
> :wave: This is a **community project** and there is no official support for this package! Feel free to use it, open issues, contribute, and help answering questions.
|
|
4
4
|
|
|
5
5
|
The `dev-approuter` is a dev time wrapper for the [SAP Application Router](https://www.npmjs.com/package/@sap/approuter) that can serve [UI5](https://ui5.sap.com/) and [SAP Cloud Application Programming Model (CAP)](https://cap.cloud.sap/docs/) apps that are added as (dev)dependencies to the approuter's `package.json`. A few key notes to begin with:
|
|
6
|
-
- The `dev-approuter` utilizes the [SAP Application Router's extension API](https://help.sap.com/docs/btp/sap-business-technology-platform/extension-api-of-application-router) by adding UI5 servers as extensions - providing the full [UI5
|
|
6
|
+
- The `dev-approuter` utilizes the [SAP Application Router's extension API](https://help.sap.com/docs/btp/sap-business-technology-platform/extension-api-of-application-router) by adding UI5 servers as extensions - providing the full [UI5 CLI](https://ui5.github.io/cli/v3/) experience.
|
|
7
7
|
- A linked SAP CDS app is started on a different port - this is to mimic a deployed architecture. The corresponding destination is automatically created for you.
|
|
8
8
|
- In order to safely separate development configuration from productive code, the `dev-approuter` introduces the concept of the `xs-dev.json` - think of it as an extension to the [`xs-app.json`](https://help.sap.com/docs/btp/sap-business-technology-platform/routing-configuration-file).
|
|
9
9
|
- As the name suggests, the `dev-approuter` is for development only and not meant to be used in production.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dev-approuter",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.9",
|
|
4
4
|
"description": "A dev time wrapper for the SAP Application Router that can serve UI5 and CDS modules added as dependencies.",
|
|
5
5
|
"author": "Nico Schoenteich <nicolai.schoenteich@sap.com> (https://github.com/nicoschoenteich)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@sap/approuter": ">=20",
|
|
15
15
|
"@sap/xsenv": "5.6.1",
|
|
16
|
-
"cds-plugin-ui5": "^0.13.
|
|
16
|
+
"cds-plugin-ui5": "^0.13.5",
|
|
17
17
|
"express": "^4",
|
|
18
|
-
"ui5-middleware-cap": "^3.3.
|
|
18
|
+
"ui5-middleware-cap": "^3.3.1"
|
|
19
19
|
},
|
|
20
|
-
"gitHead": "
|
|
20
|
+
"gitHead": "4cce1d164ff2a48d73361bb37a98381b3baf83ec"
|
|
21
21
|
}
|