@backstage/plugin-app-backend 0.3.72 → 0.3.74-next.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 +16 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +1 -1
- package/package.json +10 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/plugin-app-backend
|
|
2
2
|
|
|
3
|
+
## 0.3.74-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d3f79d1: Fixing dependency metadata with the new `@backstage/plugin-app` package
|
|
8
|
+
- d425fc4: Modules, plugins, and services are now `BackendFeature`, not a function that returns a feature.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/backend-plugin-api@0.9.0-next.0
|
|
11
|
+
- @backstage/plugin-app-node@0.1.25-next.0
|
|
12
|
+
- @backstage/backend-common@0.25.0-next.0
|
|
13
|
+
- @backstage/plugin-auth-node@0.5.2-next.0
|
|
14
|
+
- @backstage/config@1.2.0
|
|
15
|
+
- @backstage/config-loader@1.9.0
|
|
16
|
+
- @backstage/errors@1.2.4
|
|
17
|
+
- @backstage/types@1.1.1
|
|
18
|
+
|
|
3
19
|
## 0.3.72
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -4,6 +4,6 @@ import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
|
|
|
4
4
|
* The App plugin is responsible for serving the frontend app bundle and static assets.
|
|
5
5
|
* @alpha
|
|
6
6
|
*/
|
|
7
|
-
declare const appPlugin: _backstage_backend_plugin_api.
|
|
7
|
+
declare const appPlugin: _backstage_backend_plugin_api.BackendFeature;
|
|
8
8
|
|
|
9
9
|
export { appPlugin as default };
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-app-backend",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.74-next.0",
|
|
4
4
|
"description": "A Backstage backend plugin that serves the Backstage frontend app",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
7
7
|
"pluginId": "app",
|
|
8
8
|
"pluginPackages": [
|
|
9
|
+
"@backstage/plugin-app",
|
|
9
10
|
"@backstage/plugin-app-backend",
|
|
10
11
|
"@backstage/plugin-app-node"
|
|
11
12
|
]
|
|
@@ -55,13 +56,13 @@
|
|
|
55
56
|
"test": "backstage-cli package test"
|
|
56
57
|
},
|
|
57
58
|
"dependencies": {
|
|
58
|
-
"@backstage/backend-common": "^0.
|
|
59
|
-
"@backstage/backend-plugin-api": "^0.
|
|
59
|
+
"@backstage/backend-common": "^0.25.0-next.0",
|
|
60
|
+
"@backstage/backend-plugin-api": "^0.9.0-next.0",
|
|
60
61
|
"@backstage/config": "^1.2.0",
|
|
61
62
|
"@backstage/config-loader": "^1.9.0",
|
|
62
63
|
"@backstage/errors": "^1.2.4",
|
|
63
|
-
"@backstage/plugin-app-node": "^0.1.
|
|
64
|
-
"@backstage/plugin-auth-node": "^0.5.0",
|
|
64
|
+
"@backstage/plugin-app-node": "^0.1.25-next.0",
|
|
65
|
+
"@backstage/plugin-auth-node": "^0.5.2-next.0",
|
|
65
66
|
"@backstage/types": "^1.1.1",
|
|
66
67
|
"@types/express": "^4.17.6",
|
|
67
68
|
"express": "^4.17.1",
|
|
@@ -75,10 +76,10 @@
|
|
|
75
76
|
"yn": "^4.0.0"
|
|
76
77
|
},
|
|
77
78
|
"devDependencies": {
|
|
78
|
-
"@backstage/backend-app-api": "^0.
|
|
79
|
-
"@backstage/backend-defaults": "^0.
|
|
80
|
-
"@backstage/backend-test-utils": "^0.
|
|
81
|
-
"@backstage/cli": "^0.27.0",
|
|
79
|
+
"@backstage/backend-app-api": "^0.10.0-next.0",
|
|
80
|
+
"@backstage/backend-defaults": "^0.5.0-next.0",
|
|
81
|
+
"@backstage/backend-test-utils": "^0.6.0-next.0",
|
|
82
|
+
"@backstage/cli": "^0.27.1-next.0",
|
|
82
83
|
"@backstage/types": "^1.1.1",
|
|
83
84
|
"@types/supertest": "^2.0.8",
|
|
84
85
|
"node-fetch": "^2.7.0",
|