@backstage/frontend-plugin-api 0.6.0-next.3 → 0.6.1-next.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 +24 -24
package/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # @backstage/frontend-plugin-api
2
2
 
3
+ ## 0.6.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/core-components@0.14.1-next.0
9
+ - @backstage/core-plugin-api@1.9.1-next.0
10
+ - @backstage/types@1.1.1
11
+ - @backstage/version-bridge@1.0.7
12
+
13
+ ## 0.6.0
14
+
15
+ ### Minor Changes
16
+
17
+ - e586f79: **BREAKING**: Replace default plugin extension and plugin ids to be `app` instead of `root`.
18
+
19
+ ### Patch Changes
20
+
21
+ - 7eae3e0: Added initial `IconsApi` definition.
22
+ - f919be9: Added a utility API for VMware Cloud auth; the API ref is available in the
23
+ `@backstage/core-plugin-api` and `@backstage/frontend-plugin-api` packages, the
24
+ implementation is in `@backstage/core-app-api` and a factory has been added to
25
+ `@backstage/app-defaults`.
26
+ - 8fe56a8: Widen `@types/react` dependency range to include version 18.
27
+ - bc621aa: Added `RouteResolutionsApi` as a replacement for the routing context.
28
+ - 1e61ad3: App component extensions are no longer wrapped in an `ExtensionBoundary`, allowing them to inherit the outer context instead.
29
+ - 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.
30
+ - Updated dependencies
31
+ - @backstage/core-components@0.14.0
32
+ - @backstage/core-plugin-api@1.9.0
33
+ - @backstage/types@1.1.1
34
+ - @backstage/version-bridge@1.0.7
35
+
3
36
  ## 0.6.0-next.3
4
37
 
5
38
  ### Patch Changes
package/package.json CHANGED
@@ -1,35 +1,38 @@
1
1
  {
2
2
  "name": "@backstage/frontend-plugin-api",
3
- "version": "0.6.0-next.3",
4
- "main": "dist/index.esm.js",
5
- "types": "dist/index.d.ts",
6
- "license": "Apache-2.0",
3
+ "version": "0.6.1-next.0",
4
+ "backstage": {
5
+ "role": "web-library"
6
+ },
7
7
  "publishConfig": {
8
8
  "access": "public",
9
9
  "main": "dist/index.esm.js",
10
10
  "types": "dist/index.d.ts"
11
11
  },
12
- "backstage": {
13
- "role": "web-library"
14
- },
15
12
  "repository": {
16
13
  "type": "git",
17
14
  "url": "https://github.com/backstage/backstage",
18
15
  "directory": "packages/frontend-plugin-api"
19
16
  },
17
+ "license": "Apache-2.0",
20
18
  "sideEffects": false,
19
+ "main": "dist/index.esm.js",
20
+ "types": "dist/index.d.ts",
21
+ "files": [
22
+ "dist"
23
+ ],
21
24
  "scripts": {
22
- "start": "backstage-cli package start",
23
25
  "build": "backstage-cli package build",
24
- "lint": "backstage-cli package lint",
25
- "test": "backstage-cli package test",
26
26
  "clean": "backstage-cli package clean",
27
+ "lint": "backstage-cli package lint",
27
28
  "prepack": "backstage-cli package prepack",
28
- "postpack": "backstage-cli package postpack"
29
+ "postpack": "backstage-cli package postpack",
30
+ "start": "backstage-cli package start",
31
+ "test": "backstage-cli package test"
29
32
  },
30
33
  "dependencies": {
31
- "@backstage/core-components": "^0.14.0-next.2",
32
- "@backstage/core-plugin-api": "^1.9.0-next.1",
34
+ "@backstage/core-components": "^0.14.1-next.0",
35
+ "@backstage/core-plugin-api": "^1.9.1-next.0",
33
36
  "@backstage/types": "^1.1.1",
34
37
  "@backstage/version-bridge": "^1.0.7",
35
38
  "@material-ui/core": "^4.12.4",
@@ -38,21 +41,18 @@
38
41
  "zod": "^3.22.4",
39
42
  "zod-to-json-schema": "^3.21.4"
40
43
  },
41
- "peerDependencies": {
42
- "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
43
- "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
44
- },
45
44
  "devDependencies": {
46
- "@backstage/cli": "^0.25.2-next.3",
47
- "@backstage/frontend-app-api": "^0.6.0-next.3",
48
- "@backstage/frontend-test-utils": "^0.1.2-next.3",
49
- "@backstage/test-utils": "^1.5.0-next.3",
45
+ "@backstage/cli": "^0.25.3-next.0",
46
+ "@backstage/frontend-app-api": "^0.6.1-next.0",
47
+ "@backstage/frontend-test-utils": "^0.1.3-next.0",
48
+ "@backstage/test-utils": "^1.5.1-next.0",
50
49
  "@testing-library/jest-dom": "^6.0.0",
51
50
  "@testing-library/react": "^14.0.0",
52
51
  "history": "^5.3.0"
53
52
  },
54
- "files": [
55
- "dist"
56
- ],
53
+ "peerDependencies": {
54
+ "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
55
+ "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
56
+ },
57
57
  "module": "./dist/index.esm.js"
58
58
  }