@backstage/plugin-devtools 0.0.0-nightly-20230731021855 → 0.0.0-nightly-20230802021600
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 +18 -3
- package/README.md +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,27 @@
|
|
|
1
1
|
# @backstage/plugin-devtools
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20230802021600
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
+
- 48b6a04ad045: Fix readme typo
|
|
7
8
|
- Updated dependencies
|
|
8
|
-
- @backstage/plugin-devtools-common@0.0.0-nightly-
|
|
9
|
-
- @backstage/core-components@0.0.0-nightly-
|
|
9
|
+
- @backstage/plugin-devtools-common@0.0.0-nightly-20230802021600
|
|
10
|
+
- @backstage/core-components@0.0.0-nightly-20230802021600
|
|
11
|
+
- @backstage/core-plugin-api@1.5.3
|
|
12
|
+
- @backstage/errors@1.2.1
|
|
13
|
+
- @backstage/theme@0.4.1
|
|
14
|
+
- @backstage/types@1.1.0
|
|
15
|
+
- @backstage/plugin-permission-react@0.4.14
|
|
16
|
+
|
|
17
|
+
## 0.1.3-next.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- 48b6a04ad045: Fix readme typo
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/plugin-devtools-common@0.1.3-next.0
|
|
24
|
+
- @backstage/core-components@0.13.4-next.0
|
|
10
25
|
- @backstage/core-plugin-api@1.5.3
|
|
11
26
|
- @backstage/errors@1.2.1
|
|
12
27
|
- @backstage/theme@0.4.1
|
package/README.md
CHANGED
|
@@ -210,7 +210,7 @@ To use the permission framework to secure the DevTools sidebar option you'll wan
|
|
|
210
210
|
```
|
|
211
211
|
|
|
212
212
|
2. Then open the `packages/app/src/components/Root/Root.tsx` file
|
|
213
|
-
3.
|
|
213
|
+
3. Then add these imports after all the existing import statements:
|
|
214
214
|
|
|
215
215
|
```ts
|
|
216
216
|
import { devToolsAdministerPermission } from '@backstage/plugin-devtools-common';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-devtools",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20230802021600",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"postpack": "backstage-cli package postpack"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@backstage/core-components": "^0.0.0-nightly-
|
|
31
|
+
"@backstage/core-components": "^0.0.0-nightly-20230802021600",
|
|
32
32
|
"@backstage/core-plugin-api": "^1.5.3",
|
|
33
33
|
"@backstage/errors": "^1.2.1",
|
|
34
|
-
"@backstage/plugin-devtools-common": "^0.0.0-nightly-
|
|
34
|
+
"@backstage/plugin-devtools-common": "^0.0.0-nightly-20230802021600",
|
|
35
35
|
"@backstage/plugin-permission-react": "^0.4.14",
|
|
36
36
|
"@backstage/theme": "^0.4.1",
|
|
37
37
|
"@backstage/types": "^1.1.0",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
52
|
-
"@backstage/core-app-api": "^0.0.0-nightly-
|
|
53
|
-
"@backstage/dev-utils": "^0.0.0-nightly-
|
|
54
|
-
"@backstage/test-utils": "^0.0.0-nightly-
|
|
51
|
+
"@backstage/cli": "^0.0.0-nightly-20230802021600",
|
|
52
|
+
"@backstage/core-app-api": "^0.0.0-nightly-20230802021600",
|
|
53
|
+
"@backstage/dev-utils": "^0.0.0-nightly-20230802021600",
|
|
54
|
+
"@backstage/test-utils": "^0.0.0-nightly-20230802021600",
|
|
55
55
|
"@testing-library/jest-dom": "^5.10.1",
|
|
56
56
|
"@testing-library/react": "^12.1.3",
|
|
57
57
|
"@testing-library/user-event": "^14.0.0",
|