@backstage/plugin-home 0.4.20-next.3 → 0.4.20
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 +20 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-home
|
|
2
2
|
|
|
3
|
+
## 0.4.20
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ab230a433f: Export template logos `TemplateBackstageLogo` and `TemplateBackstageLogoIcon` from package.
|
|
8
|
+
- 24254fd433: build(deps): bump `@testing-library/user-event` from 13.5.0 to 14.0.0
|
|
9
|
+
- ac323de4ad: - Adds new `HomePageStackOverflowQuestions` component which renders a list of stack overflow questions on your homepage.
|
|
10
|
+
|
|
11
|
+
- Exports `ComponentRenderer` type.
|
|
12
|
+
|
|
13
|
+
- 230ad0826f: Bump to using `@types/node` v16
|
|
14
|
+
- 9b58775849: Updated the dependency on `@backstage/config` to `^1.0.0`.
|
|
15
|
+
- 99063c39ae: Minor API report cleanup
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/plugin-catalog-react@1.0.1
|
|
18
|
+
- @backstage/catalog-model@1.0.1
|
|
19
|
+
- @backstage/core-components@0.9.3
|
|
20
|
+
- @backstage/core-plugin-api@1.0.1
|
|
21
|
+
- @backstage/plugin-stack-overflow@0.1.0
|
|
22
|
+
|
|
3
23
|
## 0.4.20-next.3
|
|
4
24
|
|
|
5
25
|
### 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.4.20
|
|
4
|
+
"version": "0.4.20",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"clean": "backstage-cli package clean"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@backstage/catalog-model": "^1.0.1
|
|
37
|
+
"@backstage/catalog-model": "^1.0.1",
|
|
38
38
|
"@backstage/config": "^1.0.0",
|
|
39
|
-
"@backstage/core-components": "^0.9.3
|
|
40
|
-
"@backstage/core-plugin-api": "^1.0.1
|
|
41
|
-
"@backstage/plugin-catalog-react": "^1.0.1
|
|
42
|
-
"@backstage/plugin-stack-overflow": "^0.1.0
|
|
39
|
+
"@backstage/core-components": "^0.9.3",
|
|
40
|
+
"@backstage/core-plugin-api": "^1.0.1",
|
|
41
|
+
"@backstage/plugin-catalog-react": "^1.0.1",
|
|
42
|
+
"@backstage/plugin-stack-overflow": "^0.1.0",
|
|
43
43
|
"@backstage/theme": "^0.2.15",
|
|
44
44
|
"@material-ui/core": "^4.12.2",
|
|
45
45
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -53,10 +53,10 @@
|
|
|
53
53
|
"react": "^16.13.1 || ^17.0.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@backstage/cli": "^0.17.0
|
|
57
|
-
"@backstage/core-app-api": "^1.0.1
|
|
58
|
-
"@backstage/dev-utils": "^1.0.1
|
|
59
|
-
"@backstage/test-utils": "^1.0.1
|
|
56
|
+
"@backstage/cli": "^0.17.0",
|
|
57
|
+
"@backstage/core-app-api": "^1.0.1",
|
|
58
|
+
"@backstage/dev-utils": "^1.0.1",
|
|
59
|
+
"@backstage/test-utils": "^1.0.1",
|
|
60
60
|
"@testing-library/jest-dom": "^5.10.1",
|
|
61
61
|
"@testing-library/react": "^12.1.3",
|
|
62
62
|
"@testing-library/user-event": "^14.0.0",
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"files": [
|
|
69
69
|
"dist"
|
|
70
70
|
],
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "e0e44c433319711c2fb8b175db411a621f7aaec2"
|
|
72
72
|
}
|