@backstage/frontend-defaults 0.2.1-next.1 → 0.2.1
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 +19 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @backstage/frontend-defaults
|
|
2
2
|
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.
|
|
8
|
+
|
|
9
|
+
<https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html>
|
|
10
|
+
|
|
11
|
+
- 3bee3c3: The new package `frontend-dynamic-features-loader` provides a frontend feature loader that dynamically
|
|
12
|
+
loads frontend features based on the new frontend system and exposed as module federation remotes.
|
|
13
|
+
This new frontend feature loader works hand-in-hand with a new server of frontend plugin module federation
|
|
14
|
+
remotes, which is added as part of backend dynamic feature service in package `@backstage/backend-dynamic-feature-service`.
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/frontend-plugin-api@0.10.1
|
|
17
|
+
- @backstage/frontend-app-api@0.11.1
|
|
18
|
+
- @backstage/plugin-app@0.1.8
|
|
19
|
+
- @backstage/config@1.3.2
|
|
20
|
+
- @backstage/errors@1.2.7
|
|
21
|
+
|
|
3
22
|
## 0.2.1-next.1
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/frontend-defaults",
|
|
3
|
-
"version": "0.2.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "web-library"
|
|
6
6
|
},
|
|
@@ -31,17 +31,17 @@
|
|
|
31
31
|
"test": "backstage-cli package test"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@backstage/config": "1.3.2",
|
|
35
|
-
"@backstage/errors": "1.2.7",
|
|
36
|
-
"@backstage/frontend-app-api": "0.11.1
|
|
37
|
-
"@backstage/frontend-plugin-api": "0.10.1
|
|
38
|
-
"@backstage/plugin-app": "0.1.8
|
|
34
|
+
"@backstage/config": "^1.3.2",
|
|
35
|
+
"@backstage/errors": "^1.2.7",
|
|
36
|
+
"@backstage/frontend-app-api": "^0.11.1",
|
|
37
|
+
"@backstage/frontend-plugin-api": "^0.10.1",
|
|
38
|
+
"@backstage/plugin-app": "^0.1.8",
|
|
39
39
|
"@react-hookz/web": "^24.0.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@backstage/cli": "0.32.0
|
|
43
|
-
"@backstage/core-plugin-api": "1.10.6
|
|
44
|
-
"@backstage/test-utils": "1.7.7
|
|
42
|
+
"@backstage/cli": "^0.32.0",
|
|
43
|
+
"@backstage/core-plugin-api": "^1.10.6",
|
|
44
|
+
"@backstage/test-utils": "^1.7.7",
|
|
45
45
|
"@testing-library/jest-dom": "^6.0.0",
|
|
46
46
|
"@testing-library/react": "^16.0.0",
|
|
47
47
|
"@types/react": "^18.0.0",
|