Version Packages

This commit is contained in:
github-actions[bot]
2026-04-14 14:57:31 +00:00
parent 9f24941b49
commit 93e643d142
603 changed files with 5867 additions and 1607 deletions
+33
View File
@@ -1,5 +1,38 @@
# @backstage/plugin-app
## 0.4.3
### Patch Changes
- effa7bf: Migrated `AppLanguageApi` extension to use the new `configSchema` option.
- e5baa20: Added support for configuring URL redirects on the `app/routes` extension. Redirects can be configured through `app-config` as an array of `{from, to}` path pairs, which will cause navigation to the `from` path to be redirected to the `to` path.
For example:
```yaml
app:
extensions:
- app/routes:
config:
redirects:
- from: /old-path
to: /new-path
```
- 9244b70: The default auth implementation now checks for a `logoutUrl` in the logout response body. If the auth provider returns one (e.g. Auth0 federated logout), the browser is redirected to that URL to clear the provider's session cookies. This is backward compatible — providers that return an empty response are unaffected.
- e4804ab: Updated the default `DialogApi` implementation to support the new `open` method. The dialog display layer no longer renders any dialog chrome — callers provide their own dialog component. The deprecated `show` and `showModal` methods now use `open` internally with a Material UI dialog wrapper for backward compatibility.
- d66a3ec: Updated the `PageLayout` swap to pass a clickable `titleLink` on the `PluginHeader`, resolved from the plugin's root route ref.
- Updated dependencies
- @backstage/ui@0.14.0
- @backstage/theme@0.7.3
- @backstage/frontend-plugin-api@0.16.0
- @backstage/core-components@0.18.9
- @backstage/filter-predicates@0.1.2
- @backstage/plugin-permission-react@0.5.0
- @backstage/core-plugin-api@1.12.5
- @backstage/integration-react@1.2.17
- @backstage/plugin-app-react@0.2.2
## 0.4.3-next.2
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-app",
"version": "0.4.3-next.2",
"version": "0.4.3",
"backstage": {
"role": "frontend-plugin",
"pluginId": "app",