@backstage/plugin-devtools-backend 0.0.0-nightly-20230908021043 → 0.0.0-nightly-20230910021151

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,39 @@
1
1
  # @backstage/plugin-devtools-backend
2
2
 
3
- ## 0.0.0-nightly-20230908021043
3
+ ## 0.0.0-nightly-20230910021151
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
+ ```
4
22
 
5
23
  ### Patch Changes
6
24
 
7
25
  - 12e644aa4eef: Show resource utilization in `DevTools` plugin
8
26
  - Updated dependencies
9
- - @backstage/plugin-auth-node@0.0.0-nightly-20230908021043
10
- - @backstage/config@0.0.0-nightly-20230908021043
11
- - @backstage/errors@0.0.0-nightly-20230908021043
12
- - @backstage/plugin-devtools-common@0.0.0-nightly-20230908021043
13
- - @backstage/plugin-permission-common@0.0.0-nightly-20230908021043
14
- - @backstage/types@0.0.0-nightly-20230908021043
15
- - @backstage/backend-common@0.0.0-nightly-20230908021043
16
- - @backstage/plugin-permission-node@0.0.0-nightly-20230908021043
17
- - @backstage/backend-plugin-api@0.0.0-nightly-20230908021043
18
- - @backstage/config-loader@0.0.0-nightly-20230908021043
27
+ - @backstage/plugin-auth-node@0.0.0-nightly-20230910021151
28
+ - @backstage/config@0.0.0-nightly-20230910021151
29
+ - @backstage/errors@0.0.0-nightly-20230910021151
30
+ - @backstage/plugin-devtools-common@0.0.0-nightly-20230910021151
31
+ - @backstage/plugin-permission-common@0.0.0-nightly-20230910021151
32
+ - @backstage/types@0.0.0-nightly-20230910021151
33
+ - @backstage/backend-common@0.0.0-nightly-20230910021151
34
+ - @backstage/plugin-permission-node@0.0.0-nightly-20230910021151
35
+ - @backstage/backend-plugin-api@0.0.0-nightly-20230910021151
36
+ - @backstage/config-loader@0.0.0-nightly-20230910021151
19
37
  - @backstage/cli-common@0.1.12
20
38
 
21
39
  ## 0.1.6-next.2
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.0.0-nightly-20230908021043",
3
+ "version": "0.0.0-nightly-20230910021151",
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.0.0-nightly-20230908021043",
32
- "@backstage/backend-plugin-api": "^0.0.0-nightly-20230908021043",
31
+ "@backstage/backend-common": "^0.0.0-nightly-20230910021151",
32
+ "@backstage/backend-plugin-api": "^0.0.0-nightly-20230910021151",
33
33
  "@backstage/cli-common": "^0.1.12",
34
- "@backstage/config": "^0.0.0-nightly-20230908021043",
35
- "@backstage/config-loader": "^0.0.0-nightly-20230908021043",
36
- "@backstage/errors": "^0.0.0-nightly-20230908021043",
37
- "@backstage/plugin-auth-node": "^0.0.0-nightly-20230908021043",
38
- "@backstage/plugin-devtools-common": "^0.0.0-nightly-20230908021043",
39
- "@backstage/plugin-permission-common": "^0.0.0-nightly-20230908021043",
40
- "@backstage/plugin-permission-node": "^0.0.0-nightly-20230908021043",
41
- "@backstage/types": "^0.0.0-nightly-20230908021043",
34
+ "@backstage/config": "^0.0.0-nightly-20230910021151",
35
+ "@backstage/config-loader": "^0.0.0-nightly-20230910021151",
36
+ "@backstage/errors": "^0.0.0-nightly-20230910021151",
37
+ "@backstage/plugin-auth-node": "^0.0.0-nightly-20230910021151",
38
+ "@backstage/plugin-devtools-common": "^0.0.0-nightly-20230910021151",
39
+ "@backstage/plugin-permission-common": "^0.0.0-nightly-20230910021151",
40
+ "@backstage/plugin-permission-node": "^0.0.0-nightly-20230910021151",
41
+ "@backstage/types": "^0.0.0-nightly-20230910021151",
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.0.0-nightly-20230908021043",
57
+ "@backstage/cli": "^0.0.0-nightly-20230910021151",
58
58
  "@types/minimist": "^1.2.0",
59
59
  "@types/ping": "^0.4.1",
60
60
  "@types/supertest": "^2.0.8",