@backstage/plugin-devtools-backend 0.3.5-next.3 → 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 +19 -0
- package/dist/index.d.ts +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
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
|
+
|
|
3
22
|
## 0.3.5-next.3
|
|
4
23
|
|
|
5
24
|
### 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:
|
|
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-devtools-backend",
|
|
3
|
-
"version": "0.3.5
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "backend-plugin",
|
|
6
6
|
"pluginId": "devtools",
|
|
@@ -38,15 +38,15 @@
|
|
|
38
38
|
"test": "backstage-cli package test"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@backstage/backend-common": "^0.23.0
|
|
42
|
-
"@backstage/backend-plugin-api": "^0.6.19
|
|
43
|
-
"@backstage/cli-common": "^0.1.14
|
|
41
|
+
"@backstage/backend-common": "^0.23.0",
|
|
42
|
+
"@backstage/backend-plugin-api": "^0.6.19",
|
|
43
|
+
"@backstage/cli-common": "^0.1.14",
|
|
44
44
|
"@backstage/config": "^1.2.0",
|
|
45
|
-
"@backstage/config-loader": "^1.8.1
|
|
45
|
+
"@backstage/config-loader": "^1.8.1",
|
|
46
46
|
"@backstage/errors": "^1.2.4",
|
|
47
|
-
"@backstage/plugin-devtools-common": "^0.1.10
|
|
48
|
-
"@backstage/plugin-permission-common": "^0.7.14
|
|
49
|
-
"@backstage/plugin-permission-node": "^0.7.30
|
|
47
|
+
"@backstage/plugin-devtools-common": "^0.1.10",
|
|
48
|
+
"@backstage/plugin-permission-common": "^0.7.14",
|
|
49
|
+
"@backstage/plugin-permission-node": "^0.7.30",
|
|
50
50
|
"@backstage/types": "^1.1.1",
|
|
51
51
|
"@manypkg/get-packages": "^1.1.3",
|
|
52
52
|
"@types/express": "*",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"yn": "^4.0.0"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@backstage/backend-defaults": "^0.3.0
|
|
66
|
-
"@backstage/backend-test-utils": "^0.4.0
|
|
67
|
-
"@backstage/cli": "^0.26.7
|
|
65
|
+
"@backstage/backend-defaults": "^0.3.0",
|
|
66
|
+
"@backstage/backend-test-utils": "^0.4.0",
|
|
67
|
+
"@backstage/cli": "^0.26.7",
|
|
68
68
|
"@types/ping": "^0.4.1",
|
|
69
69
|
"@types/supertest": "^2.0.8",
|
|
70
70
|
"@types/yarnpkg__lockfile": "^1.1.4",
|