@backstage/plugin-kubernetes 0.8.0-next.3 → 0.8.0
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 +24 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes
|
|
2
2
|
|
|
3
|
+
## 0.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 754be7c5106: refactor kubernetes error detection to make way for proposed solutions
|
|
8
|
+
|
|
9
|
+
**BREAKING**: `DetectedError` now appears once per Kubernetes resource per error instead of for all resources which have that error, `namespace` and `name` fields are now in `sourceRef` object `message` is now a `string` instead of a `string[]`. `ErrorDetectableKind` has been removed.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
|
|
14
|
+
- e7fb0117485: fixes a bug where an empty authorization header was provided to the proxy endpoint when a cluster had a server-side auth provider
|
|
15
|
+
- c159ab64a60: `KubernetesBackendClient` now requires a `kubernetesAuthProvidersApi` value to be provided. `KubernetesApi` interface now has a proxy method requirement.
|
|
16
|
+
- e0c6e8b9c3c: Update peer dependencies
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @backstage/core-components@0.13.0
|
|
19
|
+
- @backstage/plugin-catalog-react@1.5.0
|
|
20
|
+
- @backstage/theme@0.2.19
|
|
21
|
+
- @backstage/core-plugin-api@1.5.1
|
|
22
|
+
- @backstage/catalog-model@1.3.0
|
|
23
|
+
- @backstage/plugin-kubernetes-common@0.6.2
|
|
24
|
+
- @backstage/config@1.0.7
|
|
25
|
+
- @backstage/errors@1.1.5
|
|
26
|
+
|
|
3
27
|
## 0.8.0-next.3
|
|
4
28
|
|
|
5
29
|
### Minor 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.8.0
|
|
4
|
+
"version": "0.8.0",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"clean": "backstage-cli package clean"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/catalog-model": "^1.3.0
|
|
36
|
+
"@backstage/catalog-model": "^1.3.0",
|
|
37
37
|
"@backstage/config": "^1.0.7",
|
|
38
|
-
"@backstage/core-components": "^0.13.0
|
|
39
|
-
"@backstage/core-plugin-api": "^1.5.1
|
|
38
|
+
"@backstage/core-components": "^0.13.0",
|
|
39
|
+
"@backstage/core-plugin-api": "^1.5.1",
|
|
40
40
|
"@backstage/errors": "^1.1.5",
|
|
41
|
-
"@backstage/plugin-catalog-react": "^1.5.0
|
|
42
|
-
"@backstage/plugin-kubernetes-common": "^0.6.2
|
|
43
|
-
"@backstage/theme": "^0.2.19
|
|
41
|
+
"@backstage/plugin-catalog-react": "^1.5.0",
|
|
42
|
+
"@backstage/plugin-kubernetes-common": "^0.6.2",
|
|
43
|
+
"@backstage/theme": "^0.2.19",
|
|
44
44
|
"@kubernetes/client-node": "0.18.1",
|
|
45
45
|
"@material-ui/core": "^4.12.2",
|
|
46
46
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -59,10 +59,10 @@
|
|
|
59
59
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@backstage/cli": "^0.22.6
|
|
63
|
-
"@backstage/core-app-api": "^1.7.0
|
|
64
|
-
"@backstage/dev-utils": "^1.0.14
|
|
65
|
-
"@backstage/test-utils": "^1.3.0
|
|
62
|
+
"@backstage/cli": "^0.22.6",
|
|
63
|
+
"@backstage/core-app-api": "^1.7.0",
|
|
64
|
+
"@backstage/dev-utils": "^1.0.14",
|
|
65
|
+
"@backstage/test-utils": "^1.3.0",
|
|
66
66
|
"@testing-library/dom": "^8.0.0",
|
|
67
67
|
"@testing-library/jest-dom": "^5.10.1",
|
|
68
68
|
"@testing-library/react": "^12.1.3",
|