@backstage/plugin-kubernetes-common 0.9.4 → 0.9.5

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 CHANGED
@@ -1,5 +1,27 @@
1
1
  # @backstage/plugin-kubernetes-common
2
2
 
3
+ ## 0.9.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 216c6b2: Updated dependency `@kubernetes/client-node` to `1.1.2`.
8
+ - 72d019d: Removed various typos
9
+ - Updated dependencies
10
+ - @backstage/catalog-model@1.7.4
11
+ - @backstage/plugin-permission-common@0.9.0
12
+ - @backstage/types@1.2.1
13
+
14
+ ## 0.9.5-next.0
15
+
16
+ ### Patch Changes
17
+
18
+ - 216c6b2: Updated dependency `@kubernetes/client-node` to `1.1.2`.
19
+ - 72d019d: Removed various typos
20
+ - Updated dependencies
21
+ - @backstage/plugin-permission-common@0.9.0-next.0
22
+ - @backstage/catalog-model@1.7.3
23
+ - @backstage/types@1.2.1
24
+
3
25
  ## 0.9.4
4
26
 
5
27
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -37,7 +37,7 @@ interface ClusterAttributes {
37
37
  */
38
38
  name: string;
39
39
  /**
40
- * Human-readable name for the cluster, to be dispayed in UIs.
40
+ * Human-readable name for the cluster, to be displayed in UIs.
41
41
  */
42
42
  title?: string;
43
43
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-kubernetes-common",
3
- "version": "0.9.4",
3
+ "version": "0.9.5",
4
4
  "description": "Common functionalities for kubernetes, to be shared between kubernetes and kubernetes-backend plugin",
5
5
  "backstage": {
6
6
  "role": "common-library",
@@ -52,16 +52,23 @@
52
52
  ]
53
53
  },
54
54
  "dependencies": {
55
- "@backstage/catalog-model": "^1.7.3",
56
- "@backstage/plugin-permission-common": "^0.8.4",
55
+ "@backstage/catalog-model": "^1.7.4",
56
+ "@backstage/plugin-permission-common": "^0.9.0",
57
57
  "@backstage/types": "^1.2.1",
58
- "@kubernetes/client-node": "1.0.0-rc7",
58
+ "@kubernetes/client-node": "1.1.2",
59
59
  "kubernetes-models": "^4.3.1",
60
60
  "lodash": "^4.17.21",
61
61
  "luxon": "^3.0.0"
62
62
  },
63
63
  "devDependencies": {
64
- "@backstage/cli": "^0.31.0"
64
+ "@backstage/cli": "^0.32.1"
65
+ },
66
+ "typesVersions": {
67
+ "*": {
68
+ "package.json": [
69
+ "package.json"
70
+ ]
71
+ }
65
72
  },
66
73
  "module": "dist/index.esm.js"
67
74
  }