@backstage/plugin-kubernetes 0.8.0-next.3 → 0.8.1-next.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # @backstage/plugin-kubernetes
2
2
 
3
+ ## 0.8.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-catalog-react@1.6.0-next.0
9
+ - @backstage/core-components@0.13.0
10
+ - @backstage/core-plugin-api@1.5.1
11
+ - @backstage/catalog-model@1.3.0
12
+ - @backstage/config@1.0.7
13
+ - @backstage/errors@1.1.5
14
+ - @backstage/theme@0.2.19
15
+ - @backstage/plugin-kubernetes-common@0.6.2
16
+
17
+ ## 0.8.0
18
+
19
+ ### Minor Changes
20
+
21
+ - 754be7c5106: refactor kubernetes error detection to make way for proposed solutions
22
+
23
+ **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.
24
+
25
+ ### Patch Changes
26
+
27
+ - 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
28
+ - e7fb0117485: fixes a bug where an empty authorization header was provided to the proxy endpoint when a cluster had a server-side auth provider
29
+ - c159ab64a60: `KubernetesBackendClient` now requires a `kubernetesAuthProvidersApi` value to be provided. `KubernetesApi` interface now has a proxy method requirement.
30
+ - e0c6e8b9c3c: Update peer dependencies
31
+ - Updated dependencies
32
+ - @backstage/core-components@0.13.0
33
+ - @backstage/plugin-catalog-react@1.5.0
34
+ - @backstage/theme@0.2.19
35
+ - @backstage/core-plugin-api@1.5.1
36
+ - @backstage/catalog-model@1.3.0
37
+ - @backstage/plugin-kubernetes-common@0.6.2
38
+ - @backstage/config@1.0.7
39
+ - @backstage/errors@1.1.5
40
+
3
41
  ## 0.8.0-next.3
4
42
 
5
43
  ### 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-next.3",
4
+ "version": "0.8.1-next.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-next.0",
36
+ "@backstage/catalog-model": "^1.3.0",
37
37
  "@backstage/config": "^1.0.7",
38
- "@backstage/core-components": "^0.13.0-next.3",
39
- "@backstage/core-plugin-api": "^1.5.1-next.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-next.3",
42
- "@backstage/plugin-kubernetes-common": "^0.6.2-next.2",
43
- "@backstage/theme": "^0.2.19-next.0",
41
+ "@backstage/plugin-catalog-react": "^1.6.0-next.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-next.3",
63
- "@backstage/core-app-api": "^1.7.0-next.3",
64
- "@backstage/dev-utils": "^1.0.14-next.3",
65
- "@backstage/test-utils": "^1.3.0-next.3",
62
+ "@backstage/cli": "^0.22.7-next.0",
63
+ "@backstage/core-app-api": "^1.7.1-next.0",
64
+ "@backstage/dev-utils": "^1.0.15-next.0",
65
+ "@backstage/test-utils": "^1.3.1-next.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",