@backstage/app-defaults 1.4.0-next.3 → 1.4.0
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 +26 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @backstage/app-defaults
|
|
2
2
|
|
|
3
|
+
## 1.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1fd38bc4141a: **MUI v5 Support:** Adding platform-wide support for MUI v5 allowing a transition phase for migrating central plugins & components over. We still support v4 instances & plugins by adding a
|
|
8
|
+
|
|
9
|
+
To allow the future support of plugins & components using MUI v5 you want to upgrade your `AppTheme`'s to using the `UnifiedThemeProvider`
|
|
10
|
+
|
|
11
|
+
```diff
|
|
12
|
+
Provider: ({ children }) => (
|
|
13
|
+
- <ThemeProvider theme={lightTheme}>
|
|
14
|
+
- <CssBaseline>{children}</CssBaseline>
|
|
15
|
+
- </ThemeProvider>
|
|
16
|
+
+ <UnifiedThemeProvider theme={builtinThemes.light} children={children} />
|
|
17
|
+
),
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/core-app-api@1.8.1
|
|
24
|
+
- @backstage/core-plugin-api@1.5.2
|
|
25
|
+
- @backstage/core-components@0.13.2
|
|
26
|
+
- @backstage/theme@0.4.0
|
|
27
|
+
- @backstage/plugin-permission-react@0.4.13
|
|
28
|
+
|
|
3
29
|
## 1.4.0-next.3
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/app-defaults",
|
|
3
3
|
"description": "Provides the default wiring of a Backstage App",
|
|
4
|
-
"version": "1.4.0
|
|
4
|
+
"version": "1.4.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
7
7
|
"main": "dist/index.esm.js",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"start": "backstage-cli package start"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@backstage/core-app-api": "^1.8.1
|
|
36
|
-
"@backstage/core-components": "^0.13.2
|
|
37
|
-
"@backstage/core-plugin-api": "^1.5.2
|
|
38
|
-
"@backstage/plugin-permission-react": "^0.4.13
|
|
39
|
-
"@backstage/theme": "^0.4.0
|
|
35
|
+
"@backstage/core-app-api": "^1.8.1",
|
|
36
|
+
"@backstage/core-components": "^0.13.2",
|
|
37
|
+
"@backstage/core-plugin-api": "^1.5.2",
|
|
38
|
+
"@backstage/plugin-permission-react": "^0.4.13",
|
|
39
|
+
"@backstage/theme": "^0.4.0",
|
|
40
40
|
"@material-ui/core": "^4.12.2",
|
|
41
41
|
"@material-ui/icons": "^4.9.1"
|
|
42
42
|
},
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@backstage/cli": "^0.22.8
|
|
50
|
-
"@backstage/test-utils": "^1.4.0
|
|
49
|
+
"@backstage/cli": "^0.22.8",
|
|
50
|
+
"@backstage/test-utils": "^1.4.0",
|
|
51
51
|
"@testing-library/jest-dom": "^5.10.1",
|
|
52
52
|
"@testing-library/react": "^12.1.3",
|
|
53
53
|
"@types/node": "^16.11.26",
|