@backstage/plugin-kubernetes-node 0.4.1-next.0 → 0.4.1

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,24 @@
1
1
  # @backstage/plugin-kubernetes-node
2
2
 
3
+ ## 0.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 7455dae: Use node prefix on native imports
8
+ - ce3639c: Add PersistentVolume and PersistentVolumeClaims Rendering
9
+ - Updated dependencies
10
+ - @backstage/backend-plugin-api@1.7.0
11
+ - @backstage/plugin-kubernetes-common@0.9.10
12
+
13
+ ## 0.4.1-next.1
14
+
15
+ ### Patch Changes
16
+
17
+ - ce3639c: Add PersistentVolume and PersistentVolumeClaims Rendering
18
+ - Updated dependencies
19
+ - @backstage/plugin-kubernetes-common@0.9.10-next.1
20
+ - @backstage/backend-plugin-api@1.7.0-next.1
21
+
3
22
  ## 0.4.1-next.0
4
23
 
5
24
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -278,7 +278,7 @@ interface AuthenticationStrategy {
278
278
  *
279
279
  * @public
280
280
  */
281
- type KubernetesObjectTypes = 'pods' | 'services' | 'configmaps' | 'deployments' | 'limitranges' | 'resourcequotas' | 'replicasets' | 'horizontalpodautoscalers' | 'jobs' | 'cronjobs' | 'ingresses' | 'customresources' | 'statefulsets' | 'daemonsets' | 'secrets';
281
+ type KubernetesObjectTypes = 'pods' | 'services' | 'configmaps' | 'deployments' | 'limitranges' | 'resourcequotas' | 'replicasets' | 'horizontalpodautoscalers' | 'jobs' | 'cronjobs' | 'ingresses' | 'customresources' | 'statefulsets' | 'daemonsets' | 'secrets' | 'persistentvolumes' | 'persistentvolumeclaims';
282
282
  /**
283
283
  *
284
284
  * @public
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-kubernetes-node",
3
- "version": "0.4.1-next.0",
3
+ "version": "0.4.1",
4
4
  "description": "Node.js library for the kubernetes plugin",
5
5
  "backstage": {
6
6
  "role": "node-library",
@@ -38,21 +38,21 @@
38
38
  "test": "backstage-cli package test"
39
39
  },
40
40
  "dependencies": {
41
- "@backstage/backend-plugin-api": "1.7.0-next.0",
42
- "@backstage/catalog-model": "1.7.6",
43
- "@backstage/plugin-kubernetes-common": "0.9.10-next.0",
44
- "@backstage/types": "1.2.2",
41
+ "@backstage/backend-plugin-api": "^1.7.0",
42
+ "@backstage/catalog-model": "^1.7.6",
43
+ "@backstage/plugin-kubernetes-common": "^0.9.10",
44
+ "@backstage/types": "^1.2.2",
45
45
  "@kubernetes/client-node": "1.4.0",
46
46
  "@types/express": "^4.17.6",
47
47
  "node-fetch": "^2.7.0",
48
48
  "winston": "^3.2.1"
49
49
  },
50
50
  "devDependencies": {
51
- "@backstage/backend-app-api": "1.5.0-next.0",
52
- "@backstage/backend-defaults": "0.15.1-next.0",
53
- "@backstage/backend-test-utils": "1.10.4-next.0",
54
- "@backstage/cli": "0.35.3-next.0",
55
- "@backstage/plugin-kubernetes-backend": "0.21.1-next.0",
51
+ "@backstage/backend-app-api": "^1.5.0",
52
+ "@backstage/backend-defaults": "^0.15.2",
53
+ "@backstage/backend-test-utils": "^1.11.0",
54
+ "@backstage/cli": "^0.35.4",
55
+ "@backstage/plugin-kubernetes-backend": "^0.21.1",
56
56
  "msw": "^1.3.1",
57
57
  "supertest": "^7.0.0"
58
58
  },