@backstage/plugin-devtools-backend 0.3.5-next.2 → 0.3.5

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,41 @@
1
1
  # @backstage/plugin-devtools-backend
2
2
 
3
+ ## 0.3.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 8869b8e: Updated local development setup.
8
+ - 78a0b08: Internal refactor to handle `BackendFeature` contract change.
9
+ - d44a20a: Added additional plugin metadata to `package.json`.
10
+ - Updated dependencies
11
+ - @backstage/backend-common@0.23.0
12
+ - @backstage/backend-plugin-api@0.6.19
13
+ - @backstage/plugin-permission-node@0.7.30
14
+ - @backstage/plugin-permission-common@0.7.14
15
+ - @backstage/plugin-devtools-common@0.1.10
16
+ - @backstage/cli-common@0.1.14
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.5-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-permission-common@0.7.14-next.0
30
+ - @backstage/plugin-devtools-common@0.1.10-next.0
31
+ - @backstage/plugin-permission-node@0.7.30-next.3
32
+ - @backstage/cli-common@0.1.14-next.0
33
+ - @backstage/backend-common@0.23.0-next.3
34
+ - @backstage/config-loader@1.8.1-next.0
35
+ - @backstage/config@1.2.0
36
+ - @backstage/errors@1.2.4
37
+ - @backstage/types@1.1.1
38
+
3
39
  ## 0.3.5-next.2
4
40
 
5
41
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -33,6 +33,6 @@ declare function createRouter(options: RouterOptions): Promise<express.Router>;
33
33
  *
34
34
  * @public
35
35
  */
36
- declare const devtoolsPlugin: () => _backstage_backend_plugin_api.BackendFeature;
36
+ declare const devtoolsPlugin: _backstage_backend_plugin_api.BackendFeatureCompat;
37
37
 
38
38
  export { DevToolsBackendApi, type RouterOptions, createRouter, devtoolsPlugin as default };
package/package.json CHANGED
@@ -1,42 +1,52 @@
1
1
  {
2
2
  "name": "@backstage/plugin-devtools-backend",
3
- "version": "0.3.5-next.2",
4
- "main": "dist/index.cjs.js",
5
- "types": "dist/index.d.ts",
6
- "license": "Apache-2.0",
3
+ "version": "0.3.5",
4
+ "backstage": {
5
+ "role": "backend-plugin",
6
+ "pluginId": "devtools",
7
+ "pluginPackages": [
8
+ "@backstage/plugin-devtools",
9
+ "@backstage/plugin-devtools-backend",
10
+ "@backstage/plugin-devtools-common"
11
+ ]
12
+ },
7
13
  "publishConfig": {
8
14
  "access": "public",
9
15
  "main": "dist/index.cjs.js",
10
16
  "types": "dist/index.d.ts"
11
17
  },
12
- "backstage": {
13
- "role": "backend-plugin"
14
- },
15
18
  "homepage": "https://backstage.io",
16
19
  "repository": {
17
20
  "type": "git",
18
21
  "url": "https://github.com/backstage/backstage",
19
22
  "directory": "plugins/devtools-backend"
20
23
  },
24
+ "license": "Apache-2.0",
25
+ "main": "dist/index.cjs.js",
26
+ "types": "dist/index.d.ts",
27
+ "files": [
28
+ "dist",
29
+ "config.d.ts"
30
+ ],
21
31
  "scripts": {
22
- "start": "backstage-cli package start",
23
32
  "build": "backstage-cli package build",
24
- "lint": "backstage-cli package lint",
25
- "test": "backstage-cli package test",
26
33
  "clean": "backstage-cli package clean",
34
+ "lint": "backstage-cli package lint",
27
35
  "prepack": "backstage-cli package prepack",
28
- "postpack": "backstage-cli package postpack"
36
+ "postpack": "backstage-cli package postpack",
37
+ "start": "backstage-cli package start",
38
+ "test": "backstage-cli package test"
29
39
  },
30
40
  "dependencies": {
31
- "@backstage/backend-common": "^0.23.0-next.2",
32
- "@backstage/backend-plugin-api": "^0.6.19-next.2",
33
- "@backstage/cli-common": "^0.1.13",
41
+ "@backstage/backend-common": "^0.23.0",
42
+ "@backstage/backend-plugin-api": "^0.6.19",
43
+ "@backstage/cli-common": "^0.1.14",
34
44
  "@backstage/config": "^1.2.0",
35
- "@backstage/config-loader": "^1.8.0",
45
+ "@backstage/config-loader": "^1.8.1",
36
46
  "@backstage/errors": "^1.2.4",
37
- "@backstage/plugin-devtools-common": "^0.1.9",
38
- "@backstage/plugin-permission-common": "^0.7.13",
39
- "@backstage/plugin-permission-node": "^0.7.30-next.2",
47
+ "@backstage/plugin-devtools-common": "^0.1.10",
48
+ "@backstage/plugin-permission-common": "^0.7.14",
49
+ "@backstage/plugin-permission-node": "^0.7.30",
40
50
  "@backstage/types": "^1.1.1",
41
51
  "@manypkg/get-packages": "^1.1.3",
42
52
  "@types/express": "*",
@@ -52,17 +62,13 @@
52
62
  "yn": "^4.0.0"
53
63
  },
54
64
  "devDependencies": {
55
- "@backstage/backend-defaults": "^0.3.0-next.2",
56
- "@backstage/backend-test-utils": "^0.4.0-next.2",
57
- "@backstage/cli": "^0.26.7-next.2",
65
+ "@backstage/backend-defaults": "^0.3.0",
66
+ "@backstage/backend-test-utils": "^0.4.0",
67
+ "@backstage/cli": "^0.26.7",
58
68
  "@types/ping": "^0.4.1",
59
69
  "@types/supertest": "^2.0.8",
60
70
  "@types/yarnpkg__lockfile": "^1.1.4",
61
71
  "supertest": "^6.2.4"
62
72
  },
63
- "files": [
64
- "dist",
65
- "config.d.ts"
66
- ],
67
73
  "configSchema": "config.d.ts"
68
74
  }