@backstage/plugin-devtools-backend 0.2.7-next.3 → 0.2.7

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,26 @@
1
1
  # @backstage/plugin-devtools-backend
2
2
 
3
+ ## 0.2.7
4
+
5
+ ### Patch Changes
6
+
7
+ - b64ce5a: Updated New Backend System instructions to use default import
8
+ - 9aac2b0: Use `--cwd` as the first `yarn` argument
9
+ - 6bb6f3e: Updated dependency `fs-extra` to `^11.2.0`.
10
+ Updated dependency `@types/fs-extra` to `^11.0.0`.
11
+ - Updated dependencies
12
+ - @backstage/backend-common@0.21.0
13
+ - @backstage/plugin-auth-node@0.4.4
14
+ - @backstage/backend-plugin-api@0.6.10
15
+ - @backstage/config-loader@1.6.2
16
+ - @backstage/plugin-permission-node@0.7.21
17
+ - @backstage/cli-common@0.1.13
18
+ - @backstage/config@1.1.1
19
+ - @backstage/errors@1.2.3
20
+ - @backstage/types@1.1.1
21
+ - @backstage/plugin-devtools-common@0.1.8
22
+ - @backstage/plugin-permission-common@0.7.12
23
+
3
24
  ## 0.2.7-next.3
4
25
 
5
26
  ### Patch Changes
package/README.md CHANGED
@@ -57,13 +57,12 @@ In your `packages/backend/src/index.ts` make the following changes:
57
57
 
58
58
  ```diff
59
59
  import { createBackend } from '@backstage/backend-defaults';
60
- + import { devtoolsPlugin } from '@backstage/plugin-devtools-backend';
61
60
 
62
61
  const backend = createBackend();
63
62
 
64
63
  // ... other feature additions
65
64
 
66
- + backend.add(devtoolsPlugin());
65
+ + backend.add(import('@backstage/plugin-devtools-backend'));
67
66
 
68
67
  backend.start();
69
68
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-devtools-backend",
3
- "version": "0.2.7-next.3",
3
+ "version": "0.2.7",
4
4
  "main": "dist/index.cjs.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -28,16 +28,16 @@
28
28
  "postpack": "backstage-cli package postpack"
29
29
  },
30
30
  "dependencies": {
31
- "@backstage/backend-common": "^0.21.0-next.3",
32
- "@backstage/backend-plugin-api": "^0.6.10-next.3",
31
+ "@backstage/backend-common": "^0.21.0",
32
+ "@backstage/backend-plugin-api": "^0.6.10",
33
33
  "@backstage/cli-common": "^0.1.13",
34
34
  "@backstage/config": "^1.1.1",
35
- "@backstage/config-loader": "^1.6.2-next.0",
35
+ "@backstage/config-loader": "^1.6.2",
36
36
  "@backstage/errors": "^1.2.3",
37
- "@backstage/plugin-auth-node": "^0.4.4-next.3",
37
+ "@backstage/plugin-auth-node": "^0.4.4",
38
38
  "@backstage/plugin-devtools-common": "^0.1.8",
39
39
  "@backstage/plugin-permission-common": "^0.7.12",
40
- "@backstage/plugin-permission-node": "^0.7.21-next.3",
40
+ "@backstage/plugin-permission-node": "^0.7.21",
41
41
  "@backstage/types": "^1.1.1",
42
42
  "@manypkg/get-packages": "^1.1.3",
43
43
  "@types/express": "*",
@@ -45,7 +45,7 @@
45
45
  "@yarnpkg/parsers": "^3.0.0-rc.4",
46
46
  "express": "^4.18.1",
47
47
  "express-promise-router": "^4.1.0",
48
- "fs-extra": "^10.0.0",
48
+ "fs-extra": "^11.0.0",
49
49
  "lodash": "^4.17.21",
50
50
  "node-fetch": "^2.6.7",
51
51
  "ping": "^0.4.1",
@@ -54,7 +54,7 @@
54
54
  "yn": "^4.0.0"
55
55
  },
56
56
  "devDependencies": {
57
- "@backstage/cli": "^0.25.2-next.3",
57
+ "@backstage/cli": "^0.25.2",
58
58
  "@types/minimist": "^1.2.0",
59
59
  "@types/ping": "^0.4.1",
60
60
  "@types/supertest": "^2.0.8",