@backstage/frontend-plugin-api 0.6.0-next.2 → 0.6.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # @backstage/frontend-plugin-api
2
2
 
3
+ ## 0.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - e586f79: **BREAKING**: Replace default plugin extension and plugin ids to be `app` instead of `root`.
8
+
9
+ ### Patch Changes
10
+
11
+ - 7eae3e0: Added initial `IconsApi` definition.
12
+ - f919be9: Added a utility API for VMware Cloud auth; the API ref is available in the
13
+ `@backstage/core-plugin-api` and `@backstage/frontend-plugin-api` packages, the
14
+ implementation is in `@backstage/core-app-api` and a factory has been added to
15
+ `@backstage/app-defaults`.
16
+ - 8fe56a8: Widen `@types/react` dependency range to include version 18.
17
+ - bc621aa: Added `RouteResolutionsApi` as a replacement for the routing context.
18
+ - 1e61ad3: App component extensions are no longer wrapped in an `ExtensionBoundary`, allowing them to inherit the outer context instead.
19
+ - 46b63de: Allow external route refs in the new system to have a `defaultTarget` pointing to a route that it'll resolve to by default if no explicit bindings were made by the adopter.
20
+ - Updated dependencies
21
+ - @backstage/core-components@0.14.0
22
+ - @backstage/core-plugin-api@1.9.0
23
+ - @backstage/types@1.1.1
24
+ - @backstage/version-bridge@1.0.7
25
+
26
+ ## 0.6.0-next.3
27
+
28
+ ### Patch Changes
29
+
30
+ - Updated dependencies
31
+ - @backstage/core-components@0.14.0-next.2
32
+ - @backstage/core-plugin-api@1.9.0-next.1
33
+ - @backstage/types@1.1.1
34
+ - @backstage/version-bridge@1.0.7
35
+
3
36
  ## 0.6.0-next.2
4
37
 
5
38
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/frontend-plugin-api",
3
- "version": "0.6.0-next.2",
3
+ "version": "0.6.0",
4
4
  "main": "dist/index.esm.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -28,8 +28,8 @@
28
28
  "postpack": "backstage-cli package postpack"
29
29
  },
30
30
  "dependencies": {
31
- "@backstage/core-components": "^0.14.0-next.1",
32
- "@backstage/core-plugin-api": "^1.9.0-next.1",
31
+ "@backstage/core-components": "^0.14.0",
32
+ "@backstage/core-plugin-api": "^1.9.0",
33
33
  "@backstage/types": "^1.1.1",
34
34
  "@backstage/version-bridge": "^1.0.7",
35
35
  "@material-ui/core": "^4.12.4",
@@ -43,10 +43,10 @@
43
43
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@backstage/cli": "^0.25.2-next.2",
47
- "@backstage/frontend-app-api": "^0.6.0-next.2",
48
- "@backstage/frontend-test-utils": "^0.1.2-next.2",
49
- "@backstage/test-utils": "^1.5.0-next.2",
46
+ "@backstage/cli": "^0.25.2",
47
+ "@backstage/frontend-app-api": "^0.6.0",
48
+ "@backstage/frontend-test-utils": "^0.1.2",
49
+ "@backstage/test-utils": "^1.5.0",
50
50
  "@testing-library/jest-dom": "^6.0.0",
51
51
  "@testing-library/react": "^14.0.0",
52
52
  "history": "^5.3.0"