@backstage/plugin-app-backend 0.3.68-next.2 → 0.3.68

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 CHANGED
@@ -1,5 +1,39 @@
1
1
  # @backstage/plugin-app-backend
2
2
 
3
+ ## 0.3.68
4
+
5
+ ### Patch Changes
6
+
7
+ - 8869b8e: Updated local development setup.
8
+ - 78a0b08: Internal refactor to handle `BackendFeature` contract change.
9
+ - 82c2b90: Restore the support of external config schema in the router of the `app-backend` plugin, which was broken in release `1.26.0`.
10
+ This support is critical for dynamic frontend plugins to have access to their config values.
11
+ - d44a20a: Added additional plugin metadata to `package.json`.
12
+ - Updated dependencies
13
+ - @backstage/backend-common@0.23.0
14
+ - @backstage/backend-plugin-api@0.6.19
15
+ - @backstage/plugin-auth-node@0.4.14
16
+ - @backstage/plugin-app-node@0.1.19
17
+ - @backstage/config-loader@1.8.1
18
+ - @backstage/config@1.2.0
19
+ - @backstage/errors@1.2.4
20
+ - @backstage/types@1.1.1
21
+
22
+ ## 0.3.68-next.3
23
+
24
+ ### Patch Changes
25
+
26
+ - d44a20a: Added additional plugin metadata to `package.json`.
27
+ - Updated dependencies
28
+ - @backstage/backend-plugin-api@0.6.19-next.3
29
+ - @backstage/plugin-auth-node@0.4.14-next.3
30
+ - @backstage/plugin-app-node@0.1.19-next.2
31
+ - @backstage/backend-common@0.23.0-next.3
32
+ - @backstage/config-loader@1.8.1-next.0
33
+ - @backstage/config@1.2.0
34
+ - @backstage/errors@1.2.4
35
+ - @backstage/types@1.1.1
36
+
3
37
  ## 0.3.68-next.2
4
38
 
5
39
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-app-backend",
3
- "version": "0.3.68-next.2",
3
+ "version": "0.3.68",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
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.BackendFeature;
7
+ declare const appPlugin: _backstage_backend_plugin_api.BackendFeatureCompat;
8
8
 
9
9
  export { appPlugin as default };
package/package.json CHANGED
@@ -1,13 +1,28 @@
1
1
  {
2
2
  "name": "@backstage/plugin-app-backend",
3
+ "version": "0.3.68",
3
4
  "description": "A Backstage backend plugin that serves the Backstage frontend app",
4
- "version": "0.3.68-next.2",
5
- "main": "./dist/index.cjs.js",
6
- "types": "./dist/index.d.ts",
7
- "license": "Apache-2.0",
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
- "backstage": {
25
- "role": "backend-plugin"
26
- },
27
- "homepage": "https://backstage.io",
28
- "repository": {
29
- "type": "git",
30
- "url": "https://github.com/backstage/backstage",
31
- "directory": "plugins/app-backend"
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
- "clean": "backstage-cli package clean"
54
+ "start": "backstage-cli package start",
55
+ "test": "backstage-cli package test"
44
56
  },
45
57
  "dependencies": {
46
- "@backstage/backend-common": "^0.23.0-next.2",
47
- "@backstage/backend-plugin-api": "^0.6.19-next.2",
58
+ "@backstage/backend-common": "^0.23.0",
59
+ "@backstage/backend-plugin-api": "^0.6.19",
48
60
  "@backstage/config": "^1.2.0",
49
- "@backstage/config-loader": "^1.8.0",
61
+ "@backstage/config-loader": "^1.8.1",
50
62
  "@backstage/errors": "^1.2.4",
51
- "@backstage/plugin-app-node": "^0.1.19-next.1",
52
- "@backstage/plugin-auth-node": "^0.4.14-next.2",
63
+ "@backstage/plugin-app-node": "^0.1.19",
64
+ "@backstage/plugin-auth-node": "^0.4.14",
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.7.6-next.2",
67
- "@backstage/backend-defaults": "^0.3.0-next.2",
68
- "@backstage/backend-test-utils": "^0.4.0-next.2",
69
- "@backstage/cli": "^0.26.7-next.2",
78
+ "@backstage/backend-app-api": "^0.7.6",
79
+ "@backstage/backend-defaults": "^0.3.0",
80
+ "@backstage/backend-test-utils": "^0.4.0",
81
+ "@backstage/cli": "^0.26.7",
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
  }