@backstage/plugin-devtools-backend 0.2.0-next.3 → 0.2.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +47 -0
  2. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,52 @@
1
1
  # @backstage/plugin-devtools-backend
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-auth-node@0.3.1
9
+ - @backstage/backend-plugin-api@0.6.4
10
+ - @backstage/plugin-permission-node@0.7.15
11
+ - @backstage/backend-common@0.19.6
12
+ - @backstage/config-loader@1.5.0
13
+
14
+ ## 0.2.0
15
+
16
+ ### Minor Changes
17
+
18
+ - 71114ac50e02: **BREAKING**: The export for the new backend system has been moved to be the `default` export.
19
+
20
+ For example, if you are currently importing the plugin using the following pattern:
21
+
22
+ ```ts
23
+ import { examplePlugin } from '@backstage/plugin-example-backend';
24
+
25
+ backend.add(examplePlugin);
26
+ ```
27
+
28
+ It should be migrated to this:
29
+
30
+ ```ts
31
+ backend.add(import('@backstage/plugin-example-backend'));
32
+ ```
33
+
34
+ ### Patch Changes
35
+
36
+ - 12e644aa4eef: Show resource utilization in `DevTools` plugin
37
+ - Updated dependencies
38
+ - @backstage/backend-common@0.19.5
39
+ - @backstage/plugin-auth-node@0.3.0
40
+ - @backstage/config@1.1.0
41
+ - @backstage/errors@1.2.2
42
+ - @backstage/plugin-devtools-common@0.1.4
43
+ - @backstage/plugin-permission-common@0.7.8
44
+ - @backstage/types@1.1.1
45
+ - @backstage/plugin-permission-node@0.7.14
46
+ - @backstage/backend-plugin-api@0.6.3
47
+ - @backstage/config-loader@1.5.0
48
+ - @backstage/cli-common@0.1.12
49
+
3
50
  ## 0.2.0-next.3
4
51
 
5
52
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-devtools-backend",
3
- "version": "0.2.0-next.3",
3
+ "version": "0.2.1",
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.3",
32
- "@backstage/backend-plugin-api": "^0.6.3-next.3",
31
+ "@backstage/backend-common": "^0.19.6",
32
+ "@backstage/backend-plugin-api": "^0.6.4",
33
33
  "@backstage/cli-common": "^0.1.12",
34
- "@backstage/config": "^1.1.0-next.2",
35
- "@backstage/config-loader": "^1.5.0-next.3",
36
- "@backstage/errors": "^1.2.2-next.0",
37
- "@backstage/plugin-auth-node": "^0.3.0-next.3",
38
- "@backstage/plugin-devtools-common": "^0.1.4-next.2",
39
- "@backstage/plugin-permission-common": "^0.7.8-next.2",
40
- "@backstage/plugin-permission-node": "^0.7.14-next.3",
41
- "@backstage/types": "^1.1.1-next.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.1",
38
+ "@backstage/plugin-devtools-common": "^0.1.4",
39
+ "@backstage/plugin-permission-common": "^0.7.8",
40
+ "@backstage/plugin-permission-node": "^0.7.15",
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.3",
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",