@backstage/plugin-kubernetes-node 0.4.1-next.0 → 0.4.1-next.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,14 @@
1
1
  # @backstage/plugin-kubernetes-node
2
2
 
3
+ ## 0.4.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - ce3639c: Add PersistentVolume and PersistentVolumeClaims Rendering
8
+ - Updated dependencies
9
+ - @backstage/plugin-kubernetes-common@0.9.10-next.1
10
+ - @backstage/backend-plugin-api@1.7.0-next.1
11
+
3
12
  ## 0.4.1-next.0
4
13
 
5
14
  ### 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-next.1",
4
4
  "description": "Node.js library for the kubernetes plugin",
5
5
  "backstage": {
6
6
  "role": "node-library",
@@ -38,9 +38,9 @@
38
38
  "test": "backstage-cli package test"
39
39
  },
40
40
  "dependencies": {
41
- "@backstage/backend-plugin-api": "1.7.0-next.0",
41
+ "@backstage/backend-plugin-api": "1.7.0-next.1",
42
42
  "@backstage/catalog-model": "1.7.6",
43
- "@backstage/plugin-kubernetes-common": "0.9.10-next.0",
43
+ "@backstage/plugin-kubernetes-common": "0.9.10-next.1",
44
44
  "@backstage/types": "1.2.2",
45
45
  "@kubernetes/client-node": "1.4.0",
46
46
  "@types/express": "^4.17.6",
@@ -49,10 +49,10 @@
49
49
  },
50
50
  "devDependencies": {
51
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",
52
+ "@backstage/backend-defaults": "0.15.2-next.1",
53
+ "@backstage/backend-test-utils": "1.10.5-next.0",
54
+ "@backstage/cli": "0.35.4-next.1",
55
+ "@backstage/plugin-kubernetes-backend": "0.21.1-next.1",
56
56
  "msw": "^1.3.1",
57
57
  "supertest": "^7.0.0"
58
58
  },