@backstage/plugin-kubernetes 0.5.5 → 0.5.7
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 +33 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes
|
|
2
2
|
|
|
3
|
+
## 0.5.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/core-components@0.8.8
|
|
9
|
+
- @backstage/plugin-catalog-react@0.6.14
|
|
10
|
+
|
|
11
|
+
## 0.5.7-next.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/core-components@0.8.8-next.0
|
|
17
|
+
- @backstage/plugin-catalog-react@0.6.14-next.0
|
|
18
|
+
|
|
19
|
+
## 0.5.6
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @backstage/core-components@0.8.7
|
|
25
|
+
- @backstage/plugin-catalog-react@0.6.13
|
|
26
|
+
|
|
27
|
+
## 0.5.6-next.0
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies
|
|
32
|
+
- @backstage/core-components@0.8.7-next.0
|
|
33
|
+
- @backstage/plugin-catalog-react@0.6.13-next.0
|
|
34
|
+
|
|
3
35
|
## 0.5.5
|
|
4
36
|
|
|
5
37
|
### Patch Changes
|
|
@@ -81,7 +113,7 @@
|
|
|
81
113
|
## Backwards incompatible changes
|
|
82
114
|
|
|
83
115
|
If your Kubernetes distribution does not have the [metrics server](https://github.com/kubernetes-sigs/metrics-server) installed,
|
|
84
|
-
you will need to set the `skipMetricsLookup` config flag to `
|
|
116
|
+
you will need to set the `skipMetricsLookup` config flag to `true`.
|
|
85
117
|
|
|
86
118
|
See the [configuration docs](https://backstage.io/docs/features/kubernetes/configuration) for more details.
|
|
87
119
|
|
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.5.
|
|
4
|
+
"version": "0.5.7",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@backstage/catalog-model": "^0.9.10",
|
|
35
35
|
"@backstage/config": "^0.1.13",
|
|
36
|
-
"@backstage/core-components": "^0.8.
|
|
36
|
+
"@backstage/core-components": "^0.8.8",
|
|
37
37
|
"@backstage/core-plugin-api": "^0.6.0",
|
|
38
|
-
"@backstage/plugin-catalog-react": "^0.6.
|
|
38
|
+
"@backstage/plugin-catalog-react": "^0.6.14",
|
|
39
39
|
"@backstage/plugin-kubernetes-common": "^0.2.2",
|
|
40
40
|
"@backstage/theme": "^0.2.14",
|
|
41
41
|
"@kubernetes/client-node": "^0.16.0",
|
|
@@ -53,10 +53,10 @@
|
|
|
53
53
|
"react": "^16.13.1 || ^17.0.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@backstage/cli": "^0.
|
|
57
|
-
"@backstage/core-app-api": "^0.5.
|
|
58
|
-
"@backstage/dev-utils": "^0.2.
|
|
59
|
-
"@backstage/test-utils": "^0.2.
|
|
56
|
+
"@backstage/cli": "^0.13.2",
|
|
57
|
+
"@backstage/core-app-api": "^0.5.2",
|
|
58
|
+
"@backstage/dev-utils": "^0.2.21",
|
|
59
|
+
"@backstage/test-utils": "^0.2.4",
|
|
60
60
|
"@testing-library/jest-dom": "^5.10.1",
|
|
61
61
|
"@testing-library/react": "^11.2.5",
|
|
62
62
|
"@testing-library/react-hooks": "^7.0.2",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"files": [
|
|
70
70
|
"dist"
|
|
71
71
|
],
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "4f4bc77a4152d372b10a4e8d97d92f00e23f3b56"
|
|
73
73
|
}
|