@backstage/plugin-kubernetes 0.9.0-next.2 → 0.9.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 +50 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,55 @@
1
1
  # @backstage/plugin-kubernetes
2
2
 
3
+ ## 0.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 280ec10c18e: Added Pod logs components for Kubernetes plugin
8
+
9
+ **BREAKING**: `kubernetesProxyApi` for custom plugins built with components from the Kubernetes plugin apis, `kubernetesProxyApi` should be added to the plugin's API list.
10
+
11
+ ```
12
+ ...
13
+ export const kubernetesPlugin = createPlugin({
14
+ id: 'kubernetes',
15
+ apis: [
16
+ ...
17
+ createApiFactory({
18
+ api: kubernetesProxyApiRef,
19
+ deps: {
20
+ kubernetesApi: kubernetesApiRef,
21
+ },
22
+ factory: ({ kubernetesApi }) =>
23
+ new KubernetesProxyClient({
24
+ kubernetesApi,
25
+ }),
26
+ }),
27
+ ```
28
+
29
+ **BREAKING**: `KubernetesDrawer` is now called `KubernetesStructuredMetadataTableDrawer` so that we can do more than just show `StructuredMetadataTable`
30
+
31
+ `import { KubernetesDrawer } from "@backstage/plugin-kubernetes"`
32
+
33
+ should now be:
34
+
35
+ `import { KubernetesStructuredMetadataTableDrawer } from "@backstage/plugin-kubernetes"`
36
+
37
+ ### Patch Changes
38
+
39
+ - c7bad1005ba: The Kubernetes plugin now requests AKS access tokens from Azure when retrieving
40
+ objects from clusters configured with `authProvider: aks` and sets `auth.aks` in
41
+ its request bodies appropriately.
42
+ - a160e02c3d7: Omit managed fields in the Kubernetes resource YAML display.
43
+ - Updated dependencies
44
+ - @backstage/theme@0.3.0
45
+ - @backstage/plugin-catalog-react@1.6.0
46
+ - @backstage/core-components@0.13.1
47
+ - @backstage/plugin-kubernetes-common@0.6.3
48
+ - @backstage/catalog-model@1.3.0
49
+ - @backstage/config@1.0.7
50
+ - @backstage/core-plugin-api@1.5.1
51
+ - @backstage/errors@1.1.5
52
+
3
53
  ## 0.9.0-next.2
4
54
 
5
55
  ### 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.9.0-next.2",
4
+ "version": "0.9.0",
5
5
  "main": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -35,12 +35,12 @@
35
35
  "dependencies": {
36
36
  "@backstage/catalog-model": "^1.3.0",
37
37
  "@backstage/config": "^1.0.7",
38
- "@backstage/core-components": "^0.13.1-next.1",
38
+ "@backstage/core-components": "^0.13.1",
39
39
  "@backstage/core-plugin-api": "^1.5.1",
40
40
  "@backstage/errors": "^1.1.5",
41
- "@backstage/plugin-catalog-react": "^1.6.0-next.2",
42
- "@backstage/plugin-kubernetes-common": "^0.6.3-next.0",
43
- "@backstage/theme": "^0.3.0-next.0",
41
+ "@backstage/plugin-catalog-react": "^1.6.0",
42
+ "@backstage/plugin-kubernetes-common": "^0.6.3",
43
+ "@backstage/theme": "^0.3.0",
44
44
  "@kubernetes-models/apimachinery": "^1.1.0",
45
45
  "@kubernetes/client-node": "0.18.1",
46
46
  "@material-ui/core": "^4.12.2",
@@ -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.7-next.0",
64
- "@backstage/core-app-api": "^1.8.0-next.1",
65
- "@backstage/dev-utils": "^1.0.15-next.2",
66
- "@backstage/test-utils": "^1.3.1-next.2",
63
+ "@backstage/cli": "^0.22.7",
64
+ "@backstage/core-app-api": "^1.8.0",
65
+ "@backstage/dev-utils": "^1.0.15",
66
+ "@backstage/test-utils": "^1.3.1",
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",