@backstage/plugin-kubernetes 0.6.6-next.2 → 0.6.6
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 +16 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes
|
|
2
2
|
|
|
3
|
+
## 0.6.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4328737af6: Add support to fetch data for Stateful Sets and display an accordion in the same way as with Deployments
|
|
8
|
+
- b9b8bbc7d9: show request/limit CPU and Memory on the UI
|
|
9
|
+
- 5553f09e80: ability to configure refresh interval on Kubernetes tab
|
|
10
|
+
- 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
|
|
11
|
+
- 81304e3e91: Fix for HPA matching when deploying same HPA in multiple namespaces
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/plugin-catalog-react@1.1.1
|
|
14
|
+
- @backstage/core-components@0.9.5
|
|
15
|
+
- @backstage/plugin-kubernetes-common@0.3.0
|
|
16
|
+
- @backstage/core-plugin-api@1.0.3
|
|
17
|
+
- @backstage/catalog-model@1.0.3
|
|
18
|
+
|
|
3
19
|
## 0.6.6-next.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-kubernetes",
|
|
3
3
|
"description": "A Backstage plugin that integrates towards Kubernetes",
|
|
4
|
-
"version": "0.6.6
|
|
4
|
+
"version": "0.6.6",
|
|
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.3
|
|
37
|
+
"@backstage/catalog-model": "^1.0.3",
|
|
38
38
|
"@backstage/config": "^1.0.1",
|
|
39
|
-
"@backstage/core-components": "^0.9.5
|
|
40
|
-
"@backstage/core-plugin-api": "^1.0.3
|
|
41
|
-
"@backstage/plugin-catalog-react": "^1.1.1
|
|
42
|
-
"@backstage/plugin-kubernetes-common": "^0.3.0
|
|
39
|
+
"@backstage/core-components": "^0.9.5",
|
|
40
|
+
"@backstage/core-plugin-api": "^1.0.3",
|
|
41
|
+
"@backstage/plugin-catalog-react": "^1.1.1",
|
|
42
|
+
"@backstage/plugin-kubernetes-common": "^0.3.0",
|
|
43
43
|
"@backstage/theme": "^0.2.15",
|
|
44
44
|
"@kubernetes/client-node": "^0.16.0",
|
|
45
45
|
"@material-ui/core": "^4.12.2",
|
|
@@ -57,10 +57,10 @@
|
|
|
57
57
|
"react": "^16.13.1 || ^17.0.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@backstage/cli": "^0.17.2
|
|
61
|
-
"@backstage/core-app-api": "^1.0.3
|
|
62
|
-
"@backstage/dev-utils": "^1.0.3
|
|
63
|
-
"@backstage/test-utils": "^1.1.1
|
|
60
|
+
"@backstage/cli": "^0.17.2",
|
|
61
|
+
"@backstage/core-app-api": "^1.0.3",
|
|
62
|
+
"@backstage/dev-utils": "^1.0.3",
|
|
63
|
+
"@backstage/test-utils": "^1.1.1",
|
|
64
64
|
"@testing-library/jest-dom": "^5.10.1",
|
|
65
65
|
"@testing-library/react": "^12.1.3",
|
|
66
66
|
"@testing-library/react-hooks": "^8.0.0",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"files": [
|
|
74
74
|
"dist"
|
|
75
75
|
],
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "e42cb3887e41f756c16380d757d93feda27f40ee"
|
|
77
77
|
}
|