@backstage/frontend-plugin-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 +18 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/frontend-plugin-api
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 68fc9dc60e: Added `RouteRef`, `SubRouteRef`, `ExternalRouteRef`, and related types. All exports from this package that previously relied on the types with the same name from `@backstage/core-plugin-api` now use the new types instead. To convert and existing legacy route ref to be compatible with the APIs from this package, use the `convertLegacyRouteRef` utility from `@backstage/core-plugin-api/alpha`.
|
|
8
|
+
- 77f009b35d: Extensions now return their output from the factory function rather than calling `bind(...)`.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 6c2b872153: Add official support for React 18.
|
|
13
|
+
- 733bd95746: Add new `AppTreeApi`.
|
|
14
|
+
- 6af88a05ff: Improve the extension boundary component and create a default extension suspense component.
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/core-components@0.13.8
|
|
17
|
+
- @backstage/core-plugin-api@1.8.0
|
|
18
|
+
- @backstage/version-bridge@1.0.7
|
|
19
|
+
- @backstage/types@1.1.1
|
|
20
|
+
|
|
3
21
|
## 0.3.0-next.2
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/frontend-plugin-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,9 +23,9 @@
|
|
|
23
23
|
"postpack": "backstage-cli package postpack"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@backstage/cli": "^0.24.0
|
|
27
|
-
"@backstage/frontend-app-api": "^0.3.0
|
|
28
|
-
"@backstage/test-utils": "^1.4.5
|
|
26
|
+
"@backstage/cli": "^0.24.0",
|
|
27
|
+
"@backstage/frontend-app-api": "^0.3.0",
|
|
28
|
+
"@backstage/test-utils": "^1.4.5",
|
|
29
29
|
"@testing-library/jest-dom": "^6.0.0",
|
|
30
30
|
"@testing-library/react": "^14.0.0",
|
|
31
31
|
"history": "^5.3.0"
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@backstage/core-components": "^0.13.8
|
|
42
|
-
"@backstage/core-plugin-api": "^1.8.0
|
|
41
|
+
"@backstage/core-components": "^0.13.8",
|
|
42
|
+
"@backstage/core-plugin-api": "^1.8.0",
|
|
43
43
|
"@backstage/types": "^1.1.1",
|
|
44
|
-
"@backstage/version-bridge": "^1.0.7
|
|
44
|
+
"@backstage/version-bridge": "^1.0.7",
|
|
45
45
|
"@material-ui/core": "^4.12.4",
|
|
46
46
|
"@types/react": "^16.13.1 || ^17.0.0",
|
|
47
47
|
"lodash": "^4.17.21",
|