@backstage/core-plugin-api 1.12.3-next.1 → 1.12.3
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 +11 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @backstage/core-plugin-api
|
|
2
2
|
|
|
3
|
+
## 1.12.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 53b6549: Plugins in the new frontend system now have a `pluginId` field rather than `id` to better align with naming conventions used throughout the frontend and backend systems. The old field is still present but marked as deprecated. All internal code has been updated to prefer `pluginId` while maintaining backward compatibility by falling back to `id` when needed.
|
|
8
|
+
- a7e0d50: Updated `react-router-dom` peer dependency to `^6.30.2` and explicitly disabled v7 future flags to suppress deprecation warnings.
|
|
9
|
+
- 69d880e: Bump to latest zod to ensure it has the latest features
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/frontend-plugin-api@0.14.0
|
|
12
|
+
- @backstage/version-bridge@1.0.12
|
|
13
|
+
|
|
3
14
|
## 1.12.3-next.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/core-plugin-api",
|
|
3
|
-
"version": "1.12.3
|
|
3
|
+
"version": "1.12.3",
|
|
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.6",
|
|
61
|
-
"@backstage/errors": "1.2.7",
|
|
62
|
-
"@backstage/frontend-plugin-api": "0.14.0
|
|
63
|
-
"@backstage/types": "1.2.2",
|
|
64
|
-
"@backstage/version-bridge": "1.0.12
|
|
60
|
+
"@backstage/config": "^1.3.6",
|
|
61
|
+
"@backstage/errors": "^1.2.7",
|
|
62
|
+
"@backstage/frontend-plugin-api": "^0.14.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"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@backstage/cli": "0.35.4
|
|
70
|
-
"@backstage/core-app-api": "1.19.5
|
|
71
|
-
"@backstage/test-utils": "1.7.15
|
|
69
|
+
"@backstage/cli": "^0.35.4",
|
|
70
|
+
"@backstage/core-app-api": "^1.19.5",
|
|
71
|
+
"@backstage/test-utils": "^1.7.15",
|
|
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",
|