@backstage/core-plugin-api 1.12.6-next.1 → 1.12.6

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 +10 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @backstage/core-plugin-api
2
2
 
3
+ ## 1.12.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 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.
8
+ - Updated dependencies
9
+ - @backstage/errors@1.3.1
10
+ - @backstage/frontend-plugin-api@0.17.0
11
+ - @backstage/config@1.3.8
12
+
3
13
  ## 1.12.6-next.1
4
14
 
5
15
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/core-plugin-api",
3
- "version": "1.12.6-next.1",
3
+ "version": "1.12.6",
4
4
  "description": "Core API used by Backstage plugins",
5
5
  "backstage": {
6
6
  "role": "web-library"
@@ -57,18 +57,18 @@
57
57
  "test": "backstage-cli package test"
58
58
  },
59
59
  "dependencies": {
60
- "@backstage/config": "1.3.8-next.0",
61
- "@backstage/errors": "1.3.1-next.0",
62
- "@backstage/frontend-plugin-api": "0.17.0-next.1",
63
- "@backstage/types": "1.2.2",
64
- "@backstage/version-bridge": "1.0.12",
60
+ "@backstage/config": "^1.3.8",
61
+ "@backstage/errors": "^1.3.1",
62
+ "@backstage/frontend-plugin-api": "^0.17.0",
63
+ "@backstage/types": "^1.2.2",
64
+ "@backstage/version-bridge": "^1.0.12",
65
65
  "history": "^5.0.0",
66
66
  "zod": "^3.25.76 || ^4.0.0"
67
67
  },
68
68
  "devDependencies": {
69
- "@backstage/cli": "0.36.2-next.1",
70
- "@backstage/core-app-api": "1.20.1-next.0",
71
- "@backstage/test-utils": "1.7.18-next.0",
69
+ "@backstage/cli": "^0.36.2",
70
+ "@backstage/core-app-api": "^1.20.1",
71
+ "@backstage/test-utils": "^1.7.18",
72
72
  "@testing-library/dom": "^10.0.0",
73
73
  "@testing-library/jest-dom": "^6.0.0",
74
74
  "@testing-library/react": "^16.0.0",