Version Packages (next)

This commit is contained in:
github-actions[bot]
2025-08-12 15:33:11 +00:00
parent 7d441f9313
commit 571280f19c
55 changed files with 932 additions and 27 deletions
+28
View File
@@ -1,5 +1,33 @@
# @backstage/plugin-app
## 0.2.0-next.2
### Minor Changes
- fda1bbc: **BREAKING**: The `componentsApi` implementation has been removed from the plugin and replaced with the new `SwappableComponentsApi` instead.
If you were overriding the `componentsApi` implementation, you can now use the new `SwappableComponentsApi` instead.
```ts
// old
appPlugin.getExtension('api:app/components').override(...)
// new
appPlugin.getExtension('api:app/swappable-components').override(...)
```
### Patch Changes
- 91cbdf4: Log a warning when `SwappableComponent` extensions are installed outside of using the `app` plugin
- fda1bbc: Default implementations of core components are now provided by this package.
A backwards compatible `componentsApi` implementation is also provided from this package which uses the `SwappableComponentsApi` as the implementation. This backwards compatible wrapper will be removed in the future.
- 9831f4e: Adjusted the dialog API types to have more sensible defaults
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.2
- @backstage/core-components@0.17.5-next.2
## 0.2.0-next.1
### Minor Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-app",
"version": "0.2.0-next.1",
"version": "0.2.0-next.2",
"backstage": {
"role": "frontend-plugin",
"pluginId": "app",