@backstage/plugin-kubernetes-node 0.4.4-next.1 → 0.4.5-next.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 +18 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @backstage/plugin-kubernetes-node
2
2
 
3
+ ## 0.4.5-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@1.9.2-next.0
9
+
10
+ ## 0.4.4
11
+
12
+ ### Patch Changes
13
+
14
+ - ab1cdbb: Removed a handful of internal imports that referenced the package by its own name. Value imports were switched to relative paths, and type-only imports to `import type`. These self-referential imports could trigger circular initialization errors in bundled ESM and when the package was loaded via `jest.requireActual` — most visibly `Cannot access '_AppRootElementBlueprintesm' before initialization` from `@backstage/frontend-plugin-api`. There are no user-facing API changes.
15
+ - 0c5e41f: Removed unused dependencies that had no imports in source code.
16
+ - Updated dependencies
17
+ - @backstage/catalog-model@1.9.0
18
+ - @backstage/backend-plugin-api@1.9.1
19
+ - @backstage/plugin-kubernetes-common@0.9.12
20
+
3
21
  ## 0.4.4-next.1
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-kubernetes-node",
3
- "version": "0.4.4-next.1",
3
+ "version": "0.4.5-next.0",
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": "backstage-cli package test"
39
39
  },
40
40
  "dependencies": {
41
- "@backstage/backend-plugin-api": "1.9.1-next.0",
42
- "@backstage/catalog-model": "1.8.1-next.1",
43
- "@backstage/plugin-kubernetes-common": "0.9.12-next.1",
41
+ "@backstage/backend-plugin-api": "1.9.2-next.0",
42
+ "@backstage/catalog-model": "1.9.0",
43
+ "@backstage/plugin-kubernetes-common": "0.9.12",
44
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.0-next.0",
51
- "@backstage/backend-defaults": "0.17.1-next.1",
52
- "@backstage/backend-test-utils": "1.11.3-next.1",
53
- "@backstage/cli": "0.36.2-next.1",
54
- "@backstage/plugin-kubernetes-backend": "0.21.4-next.0",
50
+ "@backstage/backend-app-api": "1.7.1-next.0",
51
+ "@backstage/backend-defaults": "0.17.2-next.0",
52
+ "@backstage/backend-test-utils": "1.11.4-next.0",
53
+ "@backstage/cli": "0.36.3-next.0",
54
+ "@backstage/plugin-kubernetes-backend": "0.21.5-next.0",
55
55
  "msw": "^1.3.1",
56
56
  "supertest": "^7.0.0"
57
57
  },