@backstage/plugin-devtools 0.1.9-next.0 → 0.1.9-next.2
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 +28 -0
- package/README.md +5 -5
- package/alpha/package.json +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-devtools
|
|
2
2
|
|
|
3
|
+
## 0.1.9-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9aac2b0: Use `--cwd` as the first `yarn` argument
|
|
8
|
+
- 8fe56a8: Widen `@types/react` dependency range to include version 18.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/core-components@0.14.0-next.1
|
|
11
|
+
- @backstage/core-plugin-api@1.9.0-next.1
|
|
12
|
+
- @backstage/frontend-plugin-api@0.6.0-next.2
|
|
13
|
+
- @backstage/plugin-permission-react@0.4.20-next.1
|
|
14
|
+
- @backstage/core-compat-api@0.2.0-next.2
|
|
15
|
+
- @backstage/errors@1.2.3
|
|
16
|
+
- @backstage/plugin-devtools-common@0.1.8
|
|
17
|
+
|
|
18
|
+
## 0.1.9-next.1
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/frontend-plugin-api@0.6.0-next.1
|
|
24
|
+
- @backstage/core-compat-api@0.2.0-next.1
|
|
25
|
+
- @backstage/core-components@0.14.0-next.0
|
|
26
|
+
- @backstage/core-plugin-api@1.8.3-next.0
|
|
27
|
+
- @backstage/errors@1.2.3
|
|
28
|
+
- @backstage/plugin-devtools-common@0.1.8
|
|
29
|
+
- @backstage/plugin-permission-react@0.4.20-next.0
|
|
30
|
+
|
|
3
31
|
## 0.1.9-next.0
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ Lists helpful information about your current running Backstage instance such as:
|
|
|
14
14
|
|
|
15
15
|
#### Backstage Version Reporting
|
|
16
16
|
|
|
17
|
-
The Backstage Version that is reported requires `backstage.json` to be present at the root of the running backstage instance.
|
|
17
|
+
The Backstage Version that is reported requires `backstage.json` to be present at the root of the running backstage instance.
|
|
18
18
|
You may need to modify your Dockerfile to ensure `backstage.json` is copied into the `WORKDIR` of your image.
|
|
19
19
|
|
|
20
20
|
```sh
|
|
@@ -66,7 +66,7 @@ To setup the DevTools frontend you'll need to do the following steps:
|
|
|
66
66
|
|
|
67
67
|
```sh
|
|
68
68
|
# From your Backstage root directory
|
|
69
|
-
yarn
|
|
69
|
+
yarn --cwd packages/app add @backstage/plugin-devtools
|
|
70
70
|
```
|
|
71
71
|
|
|
72
72
|
2. Now open the `packages/app/src/App.tsx` file
|
|
@@ -206,7 +206,7 @@ To use the permission framework to secure the DevTools sidebar option you'll wan
|
|
|
206
206
|
|
|
207
207
|
```sh
|
|
208
208
|
# From your Backstage root directory
|
|
209
|
-
yarn
|
|
209
|
+
yarn --cwd packages/app add @backstage/plugin-devtools-common
|
|
210
210
|
```
|
|
211
211
|
|
|
212
212
|
2. Then open the `packages/app/src/components/Root/Root.tsx` file
|
|
@@ -236,7 +236,7 @@ To use the permission framework to secure the DevTools route you'll want to do t
|
|
|
236
236
|
|
|
237
237
|
```sh
|
|
238
238
|
# From your Backstage root directory
|
|
239
|
-
yarn
|
|
239
|
+
yarn --cwd packages/app add @backstage/plugin-devtools-common
|
|
240
240
|
```
|
|
241
241
|
|
|
242
242
|
2. Then open the `packages/app/src/App.tsx` file
|
|
@@ -341,7 +341,7 @@ To use this policy you'll need to make sure to add the `@backstage/plugin-devtoo
|
|
|
341
341
|
|
|
342
342
|
```sh
|
|
343
343
|
# From your Backstage root directory
|
|
344
|
-
yarn
|
|
344
|
+
yarn --cwd packages/backend add @backstage/plugin-devtools-common
|
|
345
345
|
```
|
|
346
346
|
|
|
347
347
|
You'll also need to add these imports:
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-devtools",
|
|
3
|
-
"version": "0.1.9-next.
|
|
3
|
+
"version": "0.1.9-next.2",
|
|
4
4
|
"main": "./dist/index.esm.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -40,13 +40,13 @@
|
|
|
40
40
|
"postpack": "backstage-cli package postpack"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@backstage/core-compat-api": "^0.
|
|
44
|
-
"@backstage/core-components": "^0.
|
|
45
|
-
"@backstage/core-plugin-api": "^1.
|
|
43
|
+
"@backstage/core-compat-api": "^0.2.0-next.2",
|
|
44
|
+
"@backstage/core-components": "^0.14.0-next.1",
|
|
45
|
+
"@backstage/core-plugin-api": "^1.9.0-next.1",
|
|
46
46
|
"@backstage/errors": "^1.2.3",
|
|
47
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
47
|
+
"@backstage/frontend-plugin-api": "^0.6.0-next.2",
|
|
48
48
|
"@backstage/plugin-devtools-common": "^0.1.8",
|
|
49
|
-
"@backstage/plugin-permission-react": "^0.4.
|
|
49
|
+
"@backstage/plugin-permission-react": "^0.4.20-next.1",
|
|
50
50
|
"@material-ui/core": "^4.9.13",
|
|
51
51
|
"@material-ui/icons": "^4.9.1",
|
|
52
52
|
"@material-ui/lab": "^4.0.0-alpha.57",
|
|
@@ -54,14 +54,14 @@
|
|
|
54
54
|
"react-use": "^17.2.4"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
|
-
"@types/react": "^16.13.1 || ^17.0.0",
|
|
57
|
+
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
58
58
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
59
59
|
"react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
60
60
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@backstage/cli": "^0.25.2-next.
|
|
64
|
-
"@backstage/dev-utils": "^1.0.27-next.
|
|
63
|
+
"@backstage/cli": "^0.25.2-next.2",
|
|
64
|
+
"@backstage/dev-utils": "^1.0.27-next.2",
|
|
65
65
|
"@testing-library/jest-dom": "^6.0.0",
|
|
66
66
|
"@testing-library/react": "^14.0.0"
|
|
67
67
|
},
|