@backstage/frontend-defaults 0.4.0-next.1 → 0.4.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.
- package/CHANGELOG.md +29 -0
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @backstage/frontend-defaults
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 55b2ef6: **BREAKING**: The `API_FACTORY_CONFLICT` warning is now treated as an error and will prevent the app from starting.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 122d39c: Completely removed support for the deprecated `app.experimental.packages` configuration. Replace existing usage directly with `app.packages`.
|
|
12
|
+
- c38b74d: Dependency update for tests.
|
|
13
|
+
- 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.
|
|
14
|
+
- a7e0d50: Updated `react-router-dom` peer dependency to `^6.30.2` and explicitly disabled v7 future flags to suppress deprecation warnings.
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/frontend-app-api@0.15.0
|
|
17
|
+
- @backstage/core-components@0.18.7
|
|
18
|
+
- @backstage/frontend-plugin-api@0.14.0
|
|
19
|
+
- @backstage/plugin-app@0.4.0
|
|
20
|
+
|
|
21
|
+
## 0.4.0-next.2
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @backstage/frontend-plugin-api@0.14.0-next.2
|
|
28
|
+
- @backstage/frontend-app-api@0.15.0-next.2
|
|
29
|
+
- @backstage/core-components@0.18.7-next.2
|
|
30
|
+
- @backstage/plugin-app@0.4.0-next.2
|
|
31
|
+
|
|
3
32
|
## 0.4.0-next.1
|
|
4
33
|
|
|
5
34
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/frontend-defaults",
|
|
3
|
-
"version": "0.4.0
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "web-library"
|
|
6
6
|
},
|
|
@@ -31,31 +31,31 @@
|
|
|
31
31
|
"test": "backstage-cli package test"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@backstage/config": "1.3.6",
|
|
35
|
-
"@backstage/core-components": "0.18.7
|
|
36
|
-
"@backstage/errors": "1.2.7",
|
|
37
|
-
"@backstage/frontend-app-api": "0.15.0
|
|
38
|
-
"@backstage/frontend-plugin-api": "0.14.0
|
|
39
|
-
"@backstage/plugin-app": "0.4.0
|
|
34
|
+
"@backstage/config": "^1.3.6",
|
|
35
|
+
"@backstage/core-components": "^0.18.7",
|
|
36
|
+
"@backstage/errors": "^1.2.7",
|
|
37
|
+
"@backstage/frontend-app-api": "^0.15.0",
|
|
38
|
+
"@backstage/frontend-plugin-api": "^0.14.0",
|
|
39
|
+
"@backstage/plugin-app": "^0.4.0",
|
|
40
40
|
"@react-hookz/web": "^24.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@backstage/cli": "0.35.4
|
|
44
|
-
"@backstage/core-plugin-api": "1.12.3
|
|
45
|
-
"@backstage/plugin-app-react": "0.
|
|
46
|
-
"@backstage/test-utils": "1.7.15
|
|
43
|
+
"@backstage/cli": "^0.35.4",
|
|
44
|
+
"@backstage/core-plugin-api": "^1.12.3",
|
|
45
|
+
"@backstage/plugin-app-react": "^0.2.0",
|
|
46
|
+
"@backstage/test-utils": "^1.7.15",
|
|
47
47
|
"@testing-library/jest-dom": "^6.0.0",
|
|
48
48
|
"@testing-library/react": "^16.0.0",
|
|
49
49
|
"@types/react": "^18.0.0",
|
|
50
50
|
"react": "^18.0.2",
|
|
51
51
|
"react-dom": "^18.0.2",
|
|
52
|
-
"react-router-dom": "^6.
|
|
52
|
+
"react-router-dom": "^6.30.2"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
55
|
"@types/react": "^17.0.0 || ^18.0.0",
|
|
56
56
|
"react": "^17.0.0 || ^18.0.0",
|
|
57
57
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
58
|
-
"react-router-dom": "^6.
|
|
58
|
+
"react-router-dom": "^6.30.2"
|
|
59
59
|
},
|
|
60
60
|
"peerDependenciesMeta": {
|
|
61
61
|
"@types/react": {
|