@backstage/plugin-home 0.4.31-next.2 → 0.4.31
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 +15 -0
- package/README.md +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @backstage/plugin-home
|
|
2
2
|
|
|
3
|
+
## 0.4.31
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c51efce2a0: Update docs to always use `yarn add --cwd` for app & backend
|
|
8
|
+
- 3d1d867d42: Fixed regression that caused the `WelcomeTitle` to not be the right size when passed to the `title` property of the `<Header>` component. A Storybook entry was also added for the `WelcomeTitle`
|
|
9
|
+
- c553a625d2: remove unused plugin-stack-overflow dependency
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/core-components@0.12.4
|
|
12
|
+
- @backstage/catalog-model@1.2.0
|
|
13
|
+
- @backstage/theme@0.2.17
|
|
14
|
+
- @backstage/core-plugin-api@1.4.0
|
|
15
|
+
- @backstage/plugin-catalog-react@1.3.0
|
|
16
|
+
- @backstage/config@1.0.6
|
|
17
|
+
|
|
3
18
|
## 0.4.31-next.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ For App Integrators, the system is designed to be composable to give total freed
|
|
|
9
9
|
If you have a standalone app (you didn't clone this repo), then do
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
# From
|
|
12
|
+
# From your Backstage root directory
|
|
13
13
|
yarn add --cwd packages/app @backstage/plugin-home
|
|
14
14
|
```
|
|
15
15
|
|
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.4.31
|
|
4
|
+
"version": "0.4.31",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"clean": "backstage-cli package clean"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/catalog-model": "^1.2.0
|
|
36
|
+
"@backstage/catalog-model": "^1.2.0",
|
|
37
37
|
"@backstage/config": "^1.0.6",
|
|
38
|
-
"@backstage/core-components": "^0.12.4
|
|
39
|
-
"@backstage/core-plugin-api": "^1.
|
|
40
|
-
"@backstage/plugin-catalog-react": "^1.3.0
|
|
41
|
-
"@backstage/theme": "^0.2.
|
|
38
|
+
"@backstage/core-components": "^0.12.4",
|
|
39
|
+
"@backstage/core-plugin-api": "^1.4.0",
|
|
40
|
+
"@backstage/plugin-catalog-react": "^1.3.0",
|
|
41
|
+
"@backstage/theme": "^0.2.17",
|
|
42
42
|
"@material-ui/core": "^4.12.2",
|
|
43
43
|
"@material-ui/icons": "^4.9.1",
|
|
44
44
|
"@material-ui/lab": "4.0.0-alpha.57",
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@backstage/cli": "^0.22.2
|
|
55
|
-
"@backstage/core-app-api": "^1.
|
|
56
|
-
"@backstage/dev-utils": "^1.0.12
|
|
57
|
-
"@backstage/test-utils": "^1.2.5
|
|
54
|
+
"@backstage/cli": "^0.22.2",
|
|
55
|
+
"@backstage/core-app-api": "^1.5.0",
|
|
56
|
+
"@backstage/dev-utils": "^1.0.12",
|
|
57
|
+
"@backstage/test-utils": "^1.2.5",
|
|
58
58
|
"@testing-library/jest-dom": "^5.10.1",
|
|
59
59
|
"@testing-library/react": "^12.1.3",
|
|
60
60
|
"@testing-library/user-event": "^14.0.0",
|