@backstage/plugin-devtools-backend 0.1.6-next.2 → 0.2.0

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,76 @@
1
1
  # @backstage/plugin-devtools-backend
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 71114ac50e02: **BREAKING**: The export for the new backend system has been moved to be the `default` export.
8
+
9
+ For example, if you are currently importing the plugin using the following pattern:
10
+
11
+ ```ts
12
+ import { examplePlugin } from '@backstage/plugin-example-backend';
13
+
14
+ backend.add(examplePlugin);
15
+ ```
16
+
17
+ It should be migrated to this:
18
+
19
+ ```ts
20
+ backend.add(import('@backstage/plugin-example-backend'));
21
+ ```
22
+
23
+ ### Patch Changes
24
+
25
+ - 12e644aa4eef: Show resource utilization in `DevTools` plugin
26
+ - Updated dependencies
27
+ - @backstage/backend-common@0.19.5
28
+ - @backstage/plugin-auth-node@0.3.0
29
+ - @backstage/config@1.1.0
30
+ - @backstage/errors@1.2.2
31
+ - @backstage/plugin-devtools-common@0.1.4
32
+ - @backstage/plugin-permission-common@0.7.8
33
+ - @backstage/types@1.1.1
34
+ - @backstage/plugin-permission-node@0.7.14
35
+ - @backstage/backend-plugin-api@0.6.3
36
+ - @backstage/config-loader@1.5.0
37
+ - @backstage/cli-common@0.1.12
38
+
39
+ ## 0.2.0-next.3
40
+
41
+ ### Minor Changes
42
+
43
+ - 71114ac50e02: **BREAKING**: The export for the new backend system has been moved to be the `default` export.
44
+
45
+ For example, if you are currently importing the plugin using the following pattern:
46
+
47
+ ```ts
48
+ import { examplePlugin } from '@backstage/plugin-example-backend';
49
+
50
+ backend.add(examplePlugin);
51
+ ```
52
+
53
+ It should be migrated to this:
54
+
55
+ ```ts
56
+ backend.add(import('@backstage/plugin-example-backend'));
57
+ ```
58
+
59
+ ### Patch Changes
60
+
61
+ - Updated dependencies
62
+ - @backstage/config@1.1.0-next.2
63
+ - @backstage/errors@1.2.2-next.0
64
+ - @backstage/plugin-devtools-common@0.1.4-next.2
65
+ - @backstage/plugin-permission-common@0.7.8-next.2
66
+ - @backstage/types@1.1.1-next.0
67
+ - @backstage/plugin-permission-node@0.7.14-next.3
68
+ - @backstage/backend-plugin-api@0.6.3-next.3
69
+ - @backstage/backend-common@0.19.5-next.3
70
+ - @backstage/cli-common@0.1.12
71
+ - @backstage/config-loader@1.5.0-next.3
72
+ - @backstage/plugin-auth-node@0.3.0-next.3
73
+
3
74
  ## 0.1.6-next.2
4
75
 
5
76
  ### Patch Changes
package/dist/index.cjs.js CHANGED
@@ -490,5 +490,5 @@ const devtoolsPlugin = backendPluginApi.createBackendPlugin({
490
490
 
491
491
  exports.DevToolsBackendApi = DevToolsBackendApi;
492
492
  exports.createRouter = createRouter;
493
- exports.devtoolsPlugin = devtoolsPlugin;
493
+ exports["default"] = devtoolsPlugin;
494
494
  //# sourceMappingURL=index.cjs.js.map
package/dist/index.d.ts CHANGED
@@ -34,4 +34,4 @@ declare function createRouter(options: RouterOptions): Promise<express.Router>;
34
34
  */
35
35
  declare const devtoolsPlugin: () => _backstage_backend_plugin_api.BackendFeature;
36
36
 
37
- export { DevToolsBackendApi, RouterOptions, createRouter, devtoolsPlugin };
37
+ export { DevToolsBackendApi, 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.1.6-next.2",
3
+ "version": "0.2.0",
4
4
  "main": "dist/index.cjs.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -28,17 +28,17 @@
28
28
  "postpack": "backstage-cli package postpack"
29
29
  },
30
30
  "dependencies": {
31
- "@backstage/backend-common": "^0.19.5-next.2",
32
- "@backstage/backend-plugin-api": "^0.6.3-next.2",
31
+ "@backstage/backend-common": "^0.19.5",
32
+ "@backstage/backend-plugin-api": "^0.6.3",
33
33
  "@backstage/cli-common": "^0.1.12",
34
- "@backstage/config": "^1.1.0-next.1",
35
- "@backstage/config-loader": "^1.5.0-next.2",
36
- "@backstage/errors": "^1.2.1",
37
- "@backstage/plugin-auth-node": "^0.3.0-next.2",
38
- "@backstage/plugin-devtools-common": "^0.1.4-next.1",
39
- "@backstage/plugin-permission-common": "^0.7.8-next.1",
40
- "@backstage/plugin-permission-node": "^0.7.14-next.2",
41
- "@backstage/types": "^1.1.0",
34
+ "@backstage/config": "^1.1.0",
35
+ "@backstage/config-loader": "^1.5.0",
36
+ "@backstage/errors": "^1.2.2",
37
+ "@backstage/plugin-auth-node": "^0.3.0",
38
+ "@backstage/plugin-devtools-common": "^0.1.4",
39
+ "@backstage/plugin-permission-common": "^0.7.8",
40
+ "@backstage/plugin-permission-node": "^0.7.14",
41
+ "@backstage/types": "^1.1.1",
42
42
  "@manypkg/get-packages": "^1.1.3",
43
43
  "@types/express": "*",
44
44
  "@yarnpkg/lockfile": "^1.1.0",
@@ -54,7 +54,7 @@
54
54
  "yn": "^4.0.0"
55
55
  },
56
56
  "devDependencies": {
57
- "@backstage/cli": "^0.22.13-next.2",
57
+ "@backstage/cli": "^0.22.13",
58
58
  "@types/minimist": "^1.2.0",
59
59
  "@types/ping": "^0.4.1",
60
60
  "@types/supertest": "^2.0.8",