Version Packages (next)

This commit is contained in:
github-actions[bot]
2025-04-29 14:27:15 +00:00
parent 22d40d0136
commit 125d09682e
353 changed files with 5290 additions and 183 deletions
+42
View File
@@ -1,5 +1,47 @@
# @backstage/backend-app-api
## 1.2.3-next.1
### 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-next.1
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
## 1.2.3-next.0
### Patch Changes