Version Packages

This commit is contained in:
github-actions[bot]
2025-06-17 12:45:56 +00:00
parent 5775552ff9
commit 58558ef2c1
468 changed files with 5707 additions and 1492 deletions
+43
View File
@@ -1,5 +1,48 @@
# @backstage/backend-plugin-api
## 1.4.0
### Minor Changes
- 664c07a: Added `actionsRegistry` and `actions` experimental services to `/alpha` to allow registration of distributed actions from plugins, and the ability to invoke these actions. You can use these services by including them like the following:
```ts
import {
actionsRegistryServiceRef,
actionsServiceRef,
} from '@backstage/backend-plugin-api/alpha';
createBackendPlugin({
pluginId: 'test-plugin',
register({ registerInit }) {
registerInit({
deps: {
actions: actionsServiceRef,
actionsRegistry: actionsRegistryServiceRef,
},
async init({ actions, actionsRegistry }) {
actionsRegistry.register({
...,
});
await actions.invoke(...);
},
});
},
});
```
### Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.4
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-permission-common@0.9.0
- @backstage/plugin-permission-node@0.10.1
## 1.4.0-next.1
### Patch Changes