@backstage/plugin-app-backend 0.4.2 → 0.4.3-next.1
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 +21 -4
- package/package.json +13 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-app-backend
|
|
2
2
|
|
|
3
|
-
## 0.4.
|
|
3
|
+
## 0.4.3-next.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- 5c9cc05: Use native fetch instead of node-fetch
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-auth-node@0.5.5-next.1
|
|
10
|
+
- @backstage/config-loader@1.9.3-next.0
|
|
11
|
+
- @backstage/backend-plugin-api@1.1.0-next.1
|
|
12
|
+
- @backstage/config@1.3.0
|
|
13
|
+
- @backstage/errors@1.2.5
|
|
14
|
+
- @backstage/types@1.2.0
|
|
15
|
+
- @backstage/plugin-app-node@0.1.28-next.1
|
|
8
16
|
|
|
9
|
-
## 0.4.
|
|
17
|
+
## 0.4.3-next.0
|
|
10
18
|
|
|
11
19
|
### Patch Changes
|
|
12
20
|
|
|
13
|
-
-
|
|
21
|
+
- 74c3f2a: Fixed a bug where config would not be injected on the `/` and `/index.html` paths.
|
|
22
|
+
- d66fa80: Fix root route handling when query parameters are present
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @backstage/backend-plugin-api@1.0.3-next.0
|
|
25
|
+
- @backstage/plugin-auth-node@0.5.5-next.0
|
|
26
|
+
- @backstage/config@1.3.0
|
|
27
|
+
- @backstage/config-loader@1.9.2
|
|
28
|
+
- @backstage/errors@1.2.5
|
|
29
|
+
- @backstage/types@1.2.0
|
|
30
|
+
- @backstage/plugin-app-node@0.1.28-next.0
|
|
14
31
|
|
|
15
32
|
## 0.4.0
|
|
16
33
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-app-backend",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3-next.1",
|
|
4
4
|
"description": "A Backstage backend plugin that serves the Backstage frontend app",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -68,13 +68,13 @@
|
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@backstage/backend-common": "^0.25.0",
|
|
71
|
-
"@backstage/backend-plugin-api": "
|
|
72
|
-
"@backstage/config": "
|
|
73
|
-
"@backstage/config-loader": "
|
|
74
|
-
"@backstage/errors": "
|
|
75
|
-
"@backstage/plugin-app-node": "
|
|
76
|
-
"@backstage/plugin-auth-node": "
|
|
77
|
-
"@backstage/types": "
|
|
71
|
+
"@backstage/backend-plugin-api": "1.1.0-next.1",
|
|
72
|
+
"@backstage/config": "1.3.0",
|
|
73
|
+
"@backstage/config-loader": "1.9.3-next.0",
|
|
74
|
+
"@backstage/errors": "1.2.5",
|
|
75
|
+
"@backstage/plugin-app-node": "0.1.28-next.1",
|
|
76
|
+
"@backstage/plugin-auth-node": "0.5.5-next.1",
|
|
77
|
+
"@backstage/types": "1.2.0",
|
|
78
78
|
"@types/express": "^4.17.6",
|
|
79
79
|
"express": "^4.17.1",
|
|
80
80
|
"express-promise-router": "^4.1.0",
|
|
@@ -87,13 +87,12 @@
|
|
|
87
87
|
"yn": "^4.0.0"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
|
-
"@backstage/backend-app-api": "
|
|
91
|
-
"@backstage/backend-defaults": "
|
|
92
|
-
"@backstage/backend-test-utils": "
|
|
93
|
-
"@backstage/cli": "
|
|
94
|
-
"@backstage/types": "
|
|
90
|
+
"@backstage/backend-app-api": "1.1.0-next.1",
|
|
91
|
+
"@backstage/backend-defaults": "0.6.0-next.1",
|
|
92
|
+
"@backstage/backend-test-utils": "1.2.0-next.1",
|
|
93
|
+
"@backstage/cli": "0.29.3-next.1",
|
|
94
|
+
"@backstage/types": "1.2.0",
|
|
95
95
|
"@types/supertest": "^2.0.8",
|
|
96
|
-
"node-fetch": "^2.7.0",
|
|
97
96
|
"supertest": "^7.0.0"
|
|
98
97
|
},
|
|
99
98
|
"configSchema": "config.d.ts"
|