@backstage/plugin-app-backend 0.0.0-nightly-20240610021801 → 0.0.0-nightly-20240612021718
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 -6
- package/alpha/package.json +1 -1
- package/package.json +40 -35
package/CHANGELOG.md
CHANGED
|
@@ -1,21 +1,37 @@
|
|
|
1
1
|
# @backstage/plugin-app-backend
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20240612021718
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- 8869b8e: Updated local development setup.
|
|
8
8
|
- 82c2b90: Restore the support of external config schema in the router of the `app-backend` plugin, which was broken in release `1.26.0`.
|
|
9
9
|
This support is critical for dynamic frontend plugins to have access to their config values.
|
|
10
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
10
11
|
- Updated dependencies
|
|
11
|
-
- @backstage/backend-
|
|
12
|
-
- @backstage/
|
|
13
|
-
- @backstage/
|
|
14
|
-
- @backstage/
|
|
12
|
+
- @backstage/backend-plugin-api@0.0.0-nightly-20240612021718
|
|
13
|
+
- @backstage/plugin-auth-node@0.0.0-nightly-20240612021718
|
|
14
|
+
- @backstage/backend-common@0.0.0-nightly-20240612021718
|
|
15
|
+
- @backstage/plugin-app-node@0.0.0-nightly-20240612021718
|
|
16
|
+
- @backstage/config-loader@0.0.0-nightly-20240612021718
|
|
17
|
+
- @backstage/config@1.2.0
|
|
18
|
+
- @backstage/errors@1.2.4
|
|
19
|
+
- @backstage/types@1.1.1
|
|
20
|
+
|
|
21
|
+
## 0.3.68-next.3
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @backstage/backend-plugin-api@0.6.19-next.3
|
|
28
|
+
- @backstage/plugin-auth-node@0.4.14-next.3
|
|
29
|
+
- @backstage/plugin-app-node@0.1.19-next.2
|
|
30
|
+
- @backstage/backend-common@0.23.0-next.3
|
|
31
|
+
- @backstage/config-loader@1.8.1-next.0
|
|
15
32
|
- @backstage/config@1.2.0
|
|
16
33
|
- @backstage/errors@1.2.4
|
|
17
34
|
- @backstage/types@1.1.1
|
|
18
|
-
- @backstage/plugin-app-node@0.0.0-nightly-20240610021801
|
|
19
35
|
|
|
20
36
|
## 0.3.68-next.2
|
|
21
37
|
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-app-backend",
|
|
3
|
+
"version": "0.0.0-nightly-20240612021718",
|
|
3
4
|
"description": "A Backstage backend plugin that serves the Backstage frontend app",
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
"backstage": {
|
|
6
|
+
"role": "backend-plugin",
|
|
7
|
+
"pluginId": "app",
|
|
8
|
+
"pluginPackages": [
|
|
9
|
+
"@backstage/plugin-app-backend",
|
|
10
|
+
"@backstage/plugin-app-node"
|
|
11
|
+
]
|
|
12
|
+
},
|
|
8
13
|
"publishConfig": {
|
|
9
14
|
"access": "public"
|
|
10
15
|
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"backstage"
|
|
18
|
+
],
|
|
19
|
+
"homepage": "https://backstage.io",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/backstage/backstage",
|
|
23
|
+
"directory": "plugins/app-backend"
|
|
24
|
+
},
|
|
25
|
+
"license": "Apache-2.0",
|
|
11
26
|
"exports": {
|
|
12
27
|
".": {
|
|
13
28
|
"require": "./dist/index.cjs.js",
|
|
@@ -21,35 +36,32 @@
|
|
|
21
36
|
},
|
|
22
37
|
"./package.json": "./package.json"
|
|
23
38
|
},
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
},
|
|
33
|
-
"keywords": [
|
|
34
|
-
"backstage"
|
|
39
|
+
"main": "./dist/index.cjs.js",
|
|
40
|
+
"types": "./dist/index.d.ts",
|
|
41
|
+
"files": [
|
|
42
|
+
"dist",
|
|
43
|
+
"config.d.ts",
|
|
44
|
+
"migrations/**/*.{js,d.ts}",
|
|
45
|
+
"static",
|
|
46
|
+
"alpha"
|
|
35
47
|
],
|
|
36
48
|
"scripts": {
|
|
37
|
-
"start": "backstage-cli package start",
|
|
38
49
|
"build": "backstage-cli package build",
|
|
50
|
+
"clean": "backstage-cli package clean",
|
|
39
51
|
"lint": "backstage-cli package lint",
|
|
40
|
-
"test": "backstage-cli package test",
|
|
41
52
|
"prepack": "backstage-cli package prepack",
|
|
42
53
|
"postpack": "backstage-cli package postpack",
|
|
43
|
-
"
|
|
54
|
+
"start": "backstage-cli package start",
|
|
55
|
+
"test": "backstage-cli package test"
|
|
44
56
|
},
|
|
45
57
|
"dependencies": {
|
|
46
|
-
"@backstage/backend-common": "^0.0.0-nightly-
|
|
47
|
-
"@backstage/backend-plugin-api": "^0.0.0-nightly-
|
|
58
|
+
"@backstage/backend-common": "^0.0.0-nightly-20240612021718",
|
|
59
|
+
"@backstage/backend-plugin-api": "^0.0.0-nightly-20240612021718",
|
|
48
60
|
"@backstage/config": "^1.2.0",
|
|
49
|
-
"@backstage/config-loader": "^0.0.0-nightly-
|
|
61
|
+
"@backstage/config-loader": "^0.0.0-nightly-20240612021718",
|
|
50
62
|
"@backstage/errors": "^1.2.4",
|
|
51
|
-
"@backstage/plugin-app-node": "^0.0.0-nightly-
|
|
52
|
-
"@backstage/plugin-auth-node": "^0.0.0-nightly-
|
|
63
|
+
"@backstage/plugin-app-node": "^0.0.0-nightly-20240612021718",
|
|
64
|
+
"@backstage/plugin-auth-node": "^0.0.0-nightly-20240612021718",
|
|
53
65
|
"@backstage/types": "^1.1.1",
|
|
54
66
|
"@types/express": "^4.17.6",
|
|
55
67
|
"express": "^4.17.1",
|
|
@@ -63,21 +75,14 @@
|
|
|
63
75
|
"yn": "^4.0.0"
|
|
64
76
|
},
|
|
65
77
|
"devDependencies": {
|
|
66
|
-
"@backstage/backend-app-api": "^0.0.0-nightly-
|
|
67
|
-
"@backstage/backend-defaults": "^0.0.0-nightly-
|
|
68
|
-
"@backstage/backend-test-utils": "^0.0.0-nightly-
|
|
69
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
78
|
+
"@backstage/backend-app-api": "^0.0.0-nightly-20240612021718",
|
|
79
|
+
"@backstage/backend-defaults": "^0.0.0-nightly-20240612021718",
|
|
80
|
+
"@backstage/backend-test-utils": "^0.0.0-nightly-20240612021718",
|
|
81
|
+
"@backstage/cli": "^0.0.0-nightly-20240612021718",
|
|
70
82
|
"@backstage/types": "^1.1.1",
|
|
71
83
|
"@types/supertest": "^2.0.8",
|
|
72
84
|
"node-fetch": "^2.6.7",
|
|
73
85
|
"supertest": "^6.1.3"
|
|
74
86
|
},
|
|
75
|
-
"configSchema": "config.d.ts"
|
|
76
|
-
"files": [
|
|
77
|
-
"dist",
|
|
78
|
-
"config.d.ts",
|
|
79
|
-
"migrations/**/*.{js,d.ts}",
|
|
80
|
-
"static",
|
|
81
|
-
"alpha"
|
|
82
|
-
]
|
|
87
|
+
"configSchema": "config.d.ts"
|
|
83
88
|
}
|