@backstage/plugin-devtools 0.1.0 → 0.1.1-next.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.
- package/CHANGELOG.md +27 -0
- package/README.md +3 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @backstage/plugin-devtools
|
|
2
2
|
|
|
3
|
+
## 0.1.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bbe15f70c5cc: Added note to README about how secrets are displayed in the Config tab of the DevTools plugin
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/errors@1.2.0-next.0
|
|
10
|
+
- @backstage/plugin-devtools-common@0.1.1-next.0
|
|
11
|
+
- @backstage/core-components@0.13.2-next.1
|
|
12
|
+
- @backstage/core-plugin-api@1.5.2-next.0
|
|
13
|
+
- @backstage/theme@0.4.0-next.0
|
|
14
|
+
- @backstage/types@1.0.2
|
|
15
|
+
- @backstage/plugin-permission-react@0.4.13-next.0
|
|
16
|
+
|
|
17
|
+
## 0.1.1-next.0
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/theme@0.4.0-next.0
|
|
23
|
+
- @backstage/core-components@0.13.2-next.0
|
|
24
|
+
- @backstage/core-plugin-api@1.5.1
|
|
25
|
+
- @backstage/plugin-permission-react@0.4.12
|
|
26
|
+
- @backstage/errors@1.1.5
|
|
27
|
+
- @backstage/types@1.0.2
|
|
28
|
+
- @backstage/plugin-devtools-common@0.1.0
|
|
29
|
+
|
|
3
30
|
## 0.1.0
|
|
4
31
|
|
|
5
32
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -16,6 +16,8 @@ Lists helpful information about your current running Backstage instance such as:
|
|
|
16
16
|
|
|
17
17
|
Lists the configuration being used by your current running Backstage instance.
|
|
18
18
|
|
|
19
|
+
**Note:** The Config tab uses the configuration schema [defined by each plugin](https://backstage.io/docs/conf/defining) to be able to mask secrets. It does this by checking that the [visibility](https://backstage.io/docs/conf/defining#visibility) has been marked as `secret`. If this is not set then the secret will appear in clear text. To mitigate this it is highly recommended that you enable the [permission framework](https://backstage.io/docs/permissions/overview) and [apply the proper permissions](#permissions)). If you do see secrets in clear text please contact the plugin's author to get the visibility set to secret for the applicable property.
|
|
20
|
+
|
|
19
21
|

|
|
20
22
|
|
|
21
23
|
## Optional Features
|
|
@@ -147,7 +149,7 @@ To use the permission framework to secure the DevTools sidebar option you'll wan
|
|
|
147
149
|
|
|
148
150
|
```sh
|
|
149
151
|
# From your Backstage root directory
|
|
150
|
-
yarn add --cwd packages/app @backstage/plugin-devtools
|
|
152
|
+
yarn add --cwd packages/app @backstage/plugin-devtools-common
|
|
151
153
|
```
|
|
152
154
|
|
|
153
155
|
2. Then open the `packages/app/src/components/Root/Root.tsx` file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-devtools",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1-next.1",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"postpack": "backstage-cli package postpack"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@backstage/core-components": "^0.13.1",
|
|
32
|
-
"@backstage/core-plugin-api": "^1.5.
|
|
33
|
-
"@backstage/errors": "^1.
|
|
34
|
-
"@backstage/plugin-devtools-common": "^0.1.0",
|
|
35
|
-
"@backstage/plugin-permission-react": "^0.4.
|
|
36
|
-
"@backstage/theme": "^0.
|
|
31
|
+
"@backstage/core-components": "^0.13.2-next.1",
|
|
32
|
+
"@backstage/core-plugin-api": "^1.5.2-next.0",
|
|
33
|
+
"@backstage/errors": "^1.2.0-next.0",
|
|
34
|
+
"@backstage/plugin-devtools-common": "^0.1.1-next.0",
|
|
35
|
+
"@backstage/plugin-permission-react": "^0.4.13-next.0",
|
|
36
|
+
"@backstage/theme": "^0.4.0-next.0",
|
|
37
37
|
"@backstage/types": "^1.0.2",
|
|
38
38
|
"@material-ui/core": "^4.9.13",
|
|
39
39
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -47,16 +47,16 @@
|
|
|
47
47
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@backstage/cli": "^0.22.
|
|
51
|
-
"@backstage/core-app-api": "^1.8.0",
|
|
52
|
-
"@backstage/dev-utils": "^1.0.
|
|
53
|
-
"@backstage/test-utils": "^1.
|
|
50
|
+
"@backstage/cli": "^0.22.8-next.1",
|
|
51
|
+
"@backstage/core-app-api": "^1.8.1-next.0",
|
|
52
|
+
"@backstage/dev-utils": "^1.0.16-next.1",
|
|
53
|
+
"@backstage/test-utils": "^1.4.0-next.1",
|
|
54
54
|
"@testing-library/jest-dom": "^5.10.1",
|
|
55
55
|
"@testing-library/react": "^12.1.3",
|
|
56
56
|
"@testing-library/user-event": "^14.0.0",
|
|
57
57
|
"@types/node": "*",
|
|
58
58
|
"cross-fetch": "^3.1.5",
|
|
59
|
-
"msw": "^0.
|
|
59
|
+
"msw": "^1.0.0"
|
|
60
60
|
},
|
|
61
61
|
"files": [
|
|
62
62
|
"dist"
|