@backstage/plugin-kubernetes-common 0.4.0-next.2 → 0.4.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 +13 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @backstage/plugin-kubernetes-common
2
2
 
3
+ ## 0.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0791af993f: Refactor `KubernetesObjectsProvider` with new methods, `KubernetesServiceLocator` now takes an `Entity` instead of `serviceId`
8
+
9
+ ### Patch Changes
10
+
11
+ - 60e5f9fe68: Fixed the lack of `limitranges` as part of the Default Objects to fetch from the kubernetes api
12
+ - eadb3a8d2e: Updated dependency `@kubernetes/client-node` to `^0.17.0`.
13
+ - Updated dependencies
14
+ - @backstage/catalog-model@1.1.0
15
+
3
16
  ## 0.4.0-next.2
4
17
 
5
18
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-kubernetes-common",
3
3
  "description": "Common functionalities for kubernetes, to be shared between kubernetes and kubernetes-backend plugin",
4
- "version": "0.4.0-next.2",
4
+ "version": "0.4.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -38,17 +38,17 @@
38
38
  "url": "https://github.com/backstage/backstage/issues"
39
39
  },
40
40
  "dependencies": {
41
- "@backstage/catalog-model": "^1.1.0-next.3",
41
+ "@backstage/catalog-model": "^1.1.0",
42
42
  "@kubernetes/client-node": "^0.17.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@backstage/cli": "^0.18.0-next.3"
45
+ "@backstage/cli": "^0.18.0"
46
46
  },
47
47
  "jest": {
48
48
  "roots": [
49
49
  ".."
50
50
  ]
51
51
  },
52
- "gitHead": "291b3a07233061266d9f3ce431345bf19fa4bbd5",
52
+ "gitHead": "999878d8f1ae30f6a15925816af2016cb9d717a1",
53
53
  "module": "dist/index.esm.js"
54
54
  }