@backstage/plugin-kubernetes-node 0.4.8-next.2 → 0.4.8

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 +11 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @backstage/plugin-kubernetes-node
2
2
 
3
+ ## 0.4.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 5268d63: Migrated tests from MSW v1 to MSW v2.
8
+ - d9a57de: Add `KubernetesWatcher` interface for streaming Kubernetes resource changes via an async iterator. The watcher is separated from `KubernetesFetcher` because watching is a long-lived streaming connection that only works with server-side auth providers. Watch supports all event types (ADDED, MODIFIED, DELETED, BOOKMARK, ERROR) with errors yielded as data rather than thrown.
9
+ - Updated dependencies
10
+ - @backstage/catalog-model@1.10.1
11
+ - @backstage/plugin-kubernetes-common@0.9.13
12
+ - @backstage/backend-plugin-api@1.10.1
13
+
3
14
  ## 0.4.8-next.2
4
15
 
5
16
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-kubernetes-node",
3
- "version": "0.4.8-next.2",
3
+ "version": "0.4.8",
4
4
  "description": "Node.js library for the kubernetes plugin",
5
5
  "backstage": {
6
6
  "role": "node-library",
@@ -38,20 +38,20 @@
38
38
  "test": "NODE_OPTIONS=--experimental-vm-modules backstage-cli package test"
39
39
  },
40
40
  "dependencies": {
41
- "@backstage/backend-plugin-api": "1.10.1-next.1",
42
- "@backstage/catalog-model": "1.10.0",
43
- "@backstage/plugin-kubernetes-common": "0.9.13-next.1",
44
- "@backstage/types": "1.2.2",
41
+ "@backstage/backend-plugin-api": "^1.10.1",
42
+ "@backstage/catalog-model": "^1.10.1",
43
+ "@backstage/plugin-kubernetes-common": "^0.9.13",
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
  },
49
49
  "devDependencies": {
50
- "@backstage/backend-app-api": "1.7.4-next.1",
51
- "@backstage/backend-defaults": "0.17.9-next.1",
52
- "@backstage/backend-test-utils": "1.11.7-next.1",
53
- "@backstage/cli": "0.36.6-next.1",
54
- "@backstage/plugin-kubernetes-backend": "0.21.11-next.2",
50
+ "@backstage/backend-app-api": "^1.7.4",
51
+ "@backstage/backend-defaults": "^0.18.0",
52
+ "@backstage/backend-test-utils": "^1.11.7",
53
+ "@backstage/cli": "^0.36.6",
54
+ "@backstage/plugin-kubernetes-backend": "^0.21.11",
55
55
  "msw": "^2.0.0",
56
56
  "supertest": "^7.0.0"
57
57
  },