@backstage/frontend-plugin-api 0.17.3-next.1 → 0.17.3

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 +14 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @backstage/frontend-plugin-api
2
2
 
3
+ ## 0.17.3
4
+
5
+ ### Patch Changes
6
+
7
+ - a5b2811: Adds `useBreadcrumbEntries` hook, `BreadcrumbEntry` component, and `BreadcrumbsRegistryProvider` for managing breadcrumb trails across the component tree for plugins using new frontend system. Completes wiring so that new frontend system plugin `Pages` and `SubPages` get automatic-population of `PluginHeader` breadcrumbs.
8
+
9
+ - The app plugin's `PageLayout` registers a root breadcrumb for each plugin page and passes the breadcrumb trail to `PluginHeader`
10
+ - `PageBlueprint` automatically wraps each sub-page route element with `BreadcrumbEntry`, so sub-pages contribute to the PluginHeader breadcrumb trail without extra wiring.
11
+ - Plugin authors who need breadcrumbs for internal routes within a sub-page can wrap their route content with `BreadcrumbEntry` manually.
12
+ - `plugin-scaffolder` internal routes have been wrapped as an example
13
+
14
+ - Updated dependencies
15
+ - @backstage/filter-predicates@0.1.4
16
+
3
17
  ## 0.17.3-next.1
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/frontend-plugin-api",
3
- "version": "0.17.3-next.1",
3
+ "version": "0.17.3",
4
4
  "backstage": {
5
5
  "role": "web-library"
6
6
  },
@@ -52,20 +52,20 @@
52
52
  "test": "backstage-cli package test"
53
53
  },
54
54
  "dependencies": {
55
- "@backstage/config": "1.3.8",
56
- "@backstage/errors": "1.3.1",
57
- "@backstage/filter-predicates": "0.1.4-next.0",
58
- "@backstage/types": "1.2.2",
59
- "@backstage/version-bridge": "1.0.12",
55
+ "@backstage/config": "^1.3.8",
56
+ "@backstage/errors": "^1.3.1",
57
+ "@backstage/filter-predicates": "^0.1.4",
58
+ "@backstage/types": "^1.2.2",
59
+ "@backstage/version-bridge": "^1.0.12",
60
60
  "@standard-schema/spec": "^1.1.0",
61
61
  "zod": "^4.0.0",
62
62
  "zod-to-json-schema": "^3.25.1"
63
63
  },
64
64
  "devDependencies": {
65
- "@backstage/cli": "0.36.4-next.1",
66
- "@backstage/frontend-app-api": "0.16.6-next.1",
67
- "@backstage/frontend-test-utils": "0.6.2-next.0",
68
- "@backstage/test-utils": "1.7.20-next.0",
65
+ "@backstage/cli": "^0.36.4",
66
+ "@backstage/frontend-app-api": "^0.16.6",
67
+ "@backstage/frontend-test-utils": "^0.6.2",
68
+ "@backstage/test-utils": "^1.7.20",
69
69
  "@testing-library/jest-dom": "^6.0.0",
70
70
  "@testing-library/react": "^16.0.0",
71
71
  "@types/react": "^18.0.0",