@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 CHANGED
@@ -1,21 +1,37 @@
1
1
  # @backstage/plugin-app-backend
2
2
 
3
- ## 0.0.0-nightly-20240610021801
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-common@0.0.0-nightly-20240610021801
12
- - @backstage/backend-plugin-api@0.0.0-nightly-20240610021801
13
- - @backstage/plugin-auth-node@0.0.0-nightly-20240610021801
14
- - @backstage/config-loader@0.0.0-nightly-20240610021801
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
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-app-backend",
3
- "version": "0.0.0-nightly-20240610021801",
3
+ "version": "0.0.0-nightly-20240612021718",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
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
- "version": "0.0.0-nightly-20240610021801",
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.0.0-nightly-20240610021801",
47
- "@backstage/backend-plugin-api": "^0.0.0-nightly-20240610021801",
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-20240610021801",
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-20240610021801",
52
- "@backstage/plugin-auth-node": "^0.0.0-nightly-20240610021801",
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-20240610021801",
67
- "@backstage/backend-defaults": "^0.0.0-nightly-20240610021801",
68
- "@backstage/backend-test-utils": "^0.0.0-nightly-20240610021801",
69
- "@backstage/cli": "^0.0.0-nightly-20240610021801",
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
  }