@backstage/plugin-home 0.5.5-next.0 → 0.5.5
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 +23 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @backstage/plugin-home
|
|
2
2
|
|
|
3
|
+
## 0.5.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a559ff68de7e: Now, user can provide a language (optional) as input to receive a greeting in that specific language. Example: `<WelcomeTitle language={['English', 'Spanish']} />`
|
|
8
|
+
- 6743d3917a52: Make sure the widget name is never empty in the `AddWidgetDialog`. If the title was set to "", the entry would contain an empty string. Use the name as a fallback
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/plugin-home-react@0.1.2
|
|
11
|
+
- @backstage/core-components@0.13.4
|
|
12
|
+
- @backstage/plugin-catalog-react@1.8.1
|
|
13
|
+
- @backstage/core-plugin-api@1.5.3
|
|
14
|
+
- @backstage/catalog-model@1.4.1
|
|
15
|
+
- @backstage/config@1.0.8
|
|
16
|
+
- @backstage/theme@0.4.1
|
|
17
|
+
|
|
18
|
+
## 0.5.5-next.1
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/plugin-catalog-react@1.8.1-next.1
|
|
24
|
+
- @backstage/plugin-home-react@0.1.2-next.0
|
|
25
|
+
|
|
3
26
|
## 0.5.5-next.0
|
|
4
27
|
|
|
5
28
|
### 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.5
|
|
4
|
+
"version": "0.5.5",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@backstage/catalog-model": "^1.4.1",
|
|
37
37
|
"@backstage/config": "^1.0.8",
|
|
38
|
-
"@backstage/core-components": "^0.13.4
|
|
38
|
+
"@backstage/core-components": "^0.13.4",
|
|
39
39
|
"@backstage/core-plugin-api": "^1.5.3",
|
|
40
|
-
"@backstage/plugin-catalog-react": "^1.8.1
|
|
41
|
-
"@backstage/plugin-home-react": "^0.1.2
|
|
40
|
+
"@backstage/plugin-catalog-react": "^1.8.1",
|
|
41
|
+
"@backstage/plugin-home-react": "^0.1.2",
|
|
42
42
|
"@backstage/theme": "^0.4.1",
|
|
43
43
|
"@material-ui/core": "^4.12.2",
|
|
44
44
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -60,10 +60,10 @@
|
|
|
60
60
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@backstage/cli": "^0.22.10
|
|
64
|
-
"@backstage/core-app-api": "^1.9.1
|
|
65
|
-
"@backstage/dev-utils": "^1.0.18
|
|
66
|
-
"@backstage/test-utils": "^1.4.2
|
|
63
|
+
"@backstage/cli": "^0.22.10",
|
|
64
|
+
"@backstage/core-app-api": "^1.9.1",
|
|
65
|
+
"@backstage/dev-utils": "^1.0.18",
|
|
66
|
+
"@backstage/test-utils": "^1.4.2",
|
|
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",
|