@backstage/plugin-devtools 0.1.9-next.2 → 0.1.9
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 +31 -0
- package/README.md +4 -2
- package/alpha/package.json +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @backstage/plugin-devtools
|
|
2
2
|
|
|
3
|
+
## 0.1.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c12a86c: Refactored code to improve accessibility by moving elements outside the `ul` tag and placing them appropriately. Also adjusted theme to offer better contrast.
|
|
8
|
+
- 9aac2b0: Use `--cwd` as the first `yarn` argument
|
|
9
|
+
- 8fe56a8: Widen `@types/react` dependency range to include version 18.
|
|
10
|
+
- b89d8be: Added alpha support for the New Frontend System (Declarative Integration)
|
|
11
|
+
- 995d280: Updated imports from named to default imports to help with the Material UI v4 to v5 migration
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/frontend-plugin-api@0.6.0
|
|
14
|
+
- @backstage/core-compat-api@0.2.0
|
|
15
|
+
- @backstage/core-components@0.14.0
|
|
16
|
+
- @backstage/core-plugin-api@1.9.0
|
|
17
|
+
- @backstage/plugin-permission-react@0.4.20
|
|
18
|
+
- @backstage/errors@1.2.3
|
|
19
|
+
- @backstage/plugin-devtools-common@0.1.8
|
|
20
|
+
|
|
21
|
+
## 0.1.9-next.3
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @backstage/core-components@0.14.0-next.2
|
|
27
|
+
- @backstage/core-compat-api@0.2.0-next.3
|
|
28
|
+
- @backstage/core-plugin-api@1.9.0-next.1
|
|
29
|
+
- @backstage/errors@1.2.3
|
|
30
|
+
- @backstage/frontend-plugin-api@0.6.0-next.3
|
|
31
|
+
- @backstage/plugin-devtools-common@0.1.8
|
|
32
|
+
- @backstage/plugin-permission-react@0.4.20-next.1
|
|
33
|
+
|
|
3
34
|
## 0.1.9-next.2
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -418,8 +418,10 @@ By default, only packages with names starting with `@backstage` and `@internal`
|
|
|
418
418
|
devTools:
|
|
419
419
|
info:
|
|
420
420
|
packagePrefixes:
|
|
421
|
-
|
|
422
|
-
|
|
421
|
+
# Note that you MUST have quotes around these. The YAML won't be valid
|
|
422
|
+
# if you don't, because of the leading at-symbols.
|
|
423
|
+
- '@roadiehq/backstage-'
|
|
424
|
+
- '@spotify/backstage-'
|
|
423
425
|
```
|
|
424
426
|
|
|
425
427
|
### External Dependencies Configuration
|
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
|
|
3
|
+
"version": "0.1.9",
|
|
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.2.0
|
|
44
|
-
"@backstage/core-components": "^0.14.0
|
|
45
|
-
"@backstage/core-plugin-api": "^1.9.0
|
|
43
|
+
"@backstage/core-compat-api": "^0.2.0",
|
|
44
|
+
"@backstage/core-components": "^0.14.0",
|
|
45
|
+
"@backstage/core-plugin-api": "^1.9.0",
|
|
46
46
|
"@backstage/errors": "^1.2.3",
|
|
47
|
-
"@backstage/frontend-plugin-api": "^0.6.0
|
|
47
|
+
"@backstage/frontend-plugin-api": "^0.6.0",
|
|
48
48
|
"@backstage/plugin-devtools-common": "^0.1.8",
|
|
49
|
-
"@backstage/plugin-permission-react": "^0.4.20
|
|
49
|
+
"@backstage/plugin-permission-react": "^0.4.20",
|
|
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",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@backstage/cli": "^0.25.2
|
|
64
|
-
"@backstage/dev-utils": "^1.0.27
|
|
63
|
+
"@backstage/cli": "^0.25.2",
|
|
64
|
+
"@backstage/dev-utils": "^1.0.27",
|
|
65
65
|
"@testing-library/jest-dom": "^6.0.0",
|
|
66
66
|
"@testing-library/react": "^14.0.0"
|
|
67
67
|
},
|