@backstage/plugin-home 0.5.3-next.3 → 0.5.3
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 +17 -0
- package/package.json +12 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @backstage/plugin-home
|
|
2
2
|
|
|
3
|
+
## 0.5.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d1cfb4e4c4cd: Update set up documentation to export homepage as element instead of React component.
|
|
8
|
+
- 2e4940e1a8f8: Allow more customization for the CustomHomepageGrid
|
|
9
|
+
- 2ff94da135a4: bump `rjsf` dependencies to 5.7.3
|
|
10
|
+
- 41e8037a8a6d: Extract new plugin-home-react package and deprecate createCardExtension in plugin-home
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/core-plugin-api@1.5.2
|
|
13
|
+
- @backstage/core-components@0.13.2
|
|
14
|
+
- @backstage/theme@0.4.0
|
|
15
|
+
- @backstage/plugin-catalog-react@1.7.0
|
|
16
|
+
- @backstage/catalog-model@1.4.0
|
|
17
|
+
- @backstage/plugin-home-react@0.1.0
|
|
18
|
+
- @backstage/config@1.0.8
|
|
19
|
+
|
|
3
20
|
## 0.5.3-next.3
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-home",
|
|
3
3
|
"description": "A Backstage plugin that helps you build a home page",
|
|
4
|
-
"version": "0.5.3
|
|
4
|
+
"version": "0.5.3",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
"clean": "backstage-cli package clean"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/catalog-model": "^1.4.0
|
|
37
|
-
"@backstage/config": "^1.0.
|
|
38
|
-
"@backstage/core-components": "^0.13.2
|
|
39
|
-
"@backstage/core-plugin-api": "^1.5.2
|
|
40
|
-
"@backstage/plugin-catalog-react": "^1.7.0
|
|
41
|
-
"@backstage/plugin-home-react": "^0.1.0
|
|
42
|
-
"@backstage/theme": "^0.4.0
|
|
36
|
+
"@backstage/catalog-model": "^1.4.0",
|
|
37
|
+
"@backstage/config": "^1.0.8",
|
|
38
|
+
"@backstage/core-components": "^0.13.2",
|
|
39
|
+
"@backstage/core-plugin-api": "^1.5.2",
|
|
40
|
+
"@backstage/plugin-catalog-react": "^1.7.0",
|
|
41
|
+
"@backstage/plugin-home-react": "^0.1.0",
|
|
42
|
+
"@backstage/theme": "^0.4.0",
|
|
43
43
|
"@material-ui/core": "^4.12.2",
|
|
44
44
|
"@material-ui/icons": "^4.9.1",
|
|
45
45
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -60,17 +60,16 @@
|
|
|
60
60
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@backstage/cli": "^0.22.8
|
|
64
|
-
"@backstage/core-app-api": "^1.8.1
|
|
65
|
-
"@backstage/dev-utils": "^1.0.16
|
|
66
|
-
"@backstage/test-utils": "^1.4.0
|
|
63
|
+
"@backstage/cli": "^0.22.8",
|
|
64
|
+
"@backstage/core-app-api": "^1.8.1",
|
|
65
|
+
"@backstage/dev-utils": "^1.0.16",
|
|
66
|
+
"@backstage/test-utils": "^1.4.0",
|
|
67
67
|
"@testing-library/dom": "^8.0.0",
|
|
68
68
|
"@testing-library/jest-dom": "^5.10.1",
|
|
69
69
|
"@testing-library/react": "^12.1.3",
|
|
70
70
|
"@testing-library/user-event": "^14.0.0",
|
|
71
71
|
"@types/node": "^16.11.26",
|
|
72
72
|
"@types/react-grid-layout": "^1.3.2",
|
|
73
|
-
"cross-fetch": "^3.1.5",
|
|
74
73
|
"msw": "^1.0.0"
|
|
75
74
|
},
|
|
76
75
|
"files": [
|