@backstage/frontend-app-api 0.3.0-next.2 → 0.3.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 +30 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @backstage/frontend-app-api
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 68fc9dc60e: Added the ability to configure bound routes through `app.routes.bindings`. The routing system used by `createApp` has been replaced by one that only supports route refs of the new format from `@backstage/frontend-plugin-api`. The requirement for route refs to have the same ID as their associated extension has been removed.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- e28d379e32: Refactor internal extension instance system into an app graph.
|
|
12
|
+
- fdc348d5d3: The options parameter of `createApp` is now optional.
|
|
13
|
+
- 6c2b872153: Add official support for React 18.
|
|
14
|
+
- dc613f9bcf: Updated `app.extensions` configuration schema.
|
|
15
|
+
- 733bd95746: Implement new `AppTreeApi`
|
|
16
|
+
- 685a4c8901: Installed features are now deduplicated both by reference and ID when available. Features passed to `createApp` now override both discovered and loaded features.
|
|
17
|
+
- fa28d4e6df: No longer throw error on invalid input if the child is disabled.
|
|
18
|
+
- bb98953cb9: Register default implementation for the `Translation API` on the new `createApp`.
|
|
19
|
+
- fe6d09953d: Fix for app node output IDs not being serialized correctly.
|
|
20
|
+
- 77f009b35d: Internal updates to match changes in the experimental `@backstage/frontend-plugin-api`.
|
|
21
|
+
- 4d6fa921db: Internal refactor to rename the app graph to app tree
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/core-components@0.13.8
|
|
24
|
+
- @backstage/frontend-plugin-api@0.3.0
|
|
25
|
+
- @backstage/plugin-graphiql@0.3.0
|
|
26
|
+
- @backstage/core-plugin-api@1.8.0
|
|
27
|
+
- @backstage/version-bridge@1.0.7
|
|
28
|
+
- @backstage/core-app-api@1.11.1
|
|
29
|
+
- @backstage/theme@0.4.4
|
|
30
|
+
- @backstage/config@1.1.1
|
|
31
|
+
- @backstage/types@1.1.1
|
|
32
|
+
|
|
3
33
|
## 0.3.0-next.2
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/frontend-app-api",
|
|
3
|
-
"version": "0.3.0
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"postpack": "backstage-cli package postpack"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@backstage/cli": "^0.24.0
|
|
27
|
-
"@backstage/test-utils": "^1.4.5
|
|
26
|
+
"@backstage/cli": "^0.24.0",
|
|
27
|
+
"@backstage/test-utils": "^1.4.5",
|
|
28
28
|
"@testing-library/jest-dom": "^6.0.0",
|
|
29
29
|
"@testing-library/react": "^14.0.0"
|
|
30
30
|
},
|
|
@@ -35,14 +35,14 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@backstage/config": "^1.1.1",
|
|
38
|
-
"@backstage/core-app-api": "^1.11.1
|
|
39
|
-
"@backstage/core-components": "^0.13.8
|
|
40
|
-
"@backstage/core-plugin-api": "^1.8.0
|
|
41
|
-
"@backstage/frontend-plugin-api": "^0.3.0
|
|
42
|
-
"@backstage/plugin-graphiql": "^0.3.0
|
|
43
|
-
"@backstage/theme": "^0.4.4
|
|
38
|
+
"@backstage/core-app-api": "^1.11.1",
|
|
39
|
+
"@backstage/core-components": "^0.13.8",
|
|
40
|
+
"@backstage/core-plugin-api": "^1.8.0",
|
|
41
|
+
"@backstage/frontend-plugin-api": "^0.3.0",
|
|
42
|
+
"@backstage/plugin-graphiql": "^0.3.0",
|
|
43
|
+
"@backstage/theme": "^0.4.4",
|
|
44
44
|
"@backstage/types": "^1.1.1",
|
|
45
|
-
"@backstage/version-bridge": "^1.0.7
|
|
45
|
+
"@backstage/version-bridge": "^1.0.7",
|
|
46
46
|
"@material-ui/core": "^4.12.4",
|
|
47
47
|
"@material-ui/icons": "^4.11.3",
|
|
48
48
|
"@types/react": "^16.13.1 || ^17.0.0",
|