Version Packages

This commit is contained in:
github-actions[bot]
2025-05-20 08:25:02 +00:00
parent affc953b1b
commit 389d265b60
512 changed files with 5856 additions and 1596 deletions
+42
View File
@@ -1,5 +1,47 @@
# @backstage/backend-app-api
## 1.2.3
### Patch Changes
- 729a7d6: Added a configuration to permit backend plugin module failures on startup:
```yaml
backend:
...
startup:
plugins:
plugin-x:
modules:
module-y:
onPluginModuleBootFailure: continue
```
This configuration permits `plugin-x` with `module-y` to fail on startup. Omitting the
`onPluginModuleBootFailure` configuration matches the previous behavior, wherein any
individual plugin module failure is forwarded to the plugin and aborts backend startup.
The default can also be changed, so that continuing on failure is the default
unless otherwise specified:
```yaml
backend:
startup:
default:
onPluginModuleBootFailure: continue
plugins:
catalog:
modules:
github:
onPluginModuleBootFailure: abort
```
- 72d019d: Removed various typos
- Updated dependencies
- @backstage/backend-plugin-api@1.3.1
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
## 1.2.3-next.2
### Patch Changes