@backstage/backend-app-api 1.2.3-next.1 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +51 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,56 @@
|
|
|
1
1
|
# @backstage/backend-app-api
|
|
2
2
|
|
|
3
|
+
## 1.2.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 729a7d6: Added a configuration to permit backend plugin module failures on startup:
|
|
8
|
+
|
|
9
|
+
```yaml
|
|
10
|
+
backend:
|
|
11
|
+
...
|
|
12
|
+
startup:
|
|
13
|
+
plugins:
|
|
14
|
+
plugin-x:
|
|
15
|
+
modules:
|
|
16
|
+
module-y:
|
|
17
|
+
onPluginModuleBootFailure: continue
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
This configuration permits `plugin-x` with `module-y` to fail on startup. Omitting the
|
|
21
|
+
`onPluginModuleBootFailure` configuration matches the previous behavior, wherein any
|
|
22
|
+
individual plugin module failure is forwarded to the plugin and aborts backend startup.
|
|
23
|
+
|
|
24
|
+
The default can also be changed, so that continuing on failure is the default
|
|
25
|
+
unless otherwise specified:
|
|
26
|
+
|
|
27
|
+
```yaml
|
|
28
|
+
backend:
|
|
29
|
+
startup:
|
|
30
|
+
default:
|
|
31
|
+
onPluginModuleBootFailure: continue
|
|
32
|
+
plugins:
|
|
33
|
+
catalog:
|
|
34
|
+
modules:
|
|
35
|
+
github:
|
|
36
|
+
onPluginModuleBootFailure: abort
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
- 72d019d: Removed various typos
|
|
40
|
+
- Updated dependencies
|
|
41
|
+
- @backstage/backend-plugin-api@1.3.1
|
|
42
|
+
- @backstage/config@1.3.2
|
|
43
|
+
- @backstage/errors@1.2.7
|
|
44
|
+
|
|
45
|
+
## 1.2.3-next.2
|
|
46
|
+
|
|
47
|
+
### Patch Changes
|
|
48
|
+
|
|
49
|
+
- Updated dependencies
|
|
50
|
+
- @backstage/backend-plugin-api@1.3.1-next.2
|
|
51
|
+
- @backstage/config@1.3.2
|
|
52
|
+
- @backstage/errors@1.2.7
|
|
53
|
+
|
|
3
54
|
## 1.2.3-next.1
|
|
4
55
|
|
|
5
56
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-app-api",
|
|
3
|
-
"version": "1.2.3
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "Core API used by Backstage backend apps",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -50,14 +50,14 @@
|
|
|
50
50
|
"test": "backstage-cli package test"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@backstage/backend-plugin-api": "1.3.1
|
|
54
|
-
"@backstage/config": "1.3.2",
|
|
55
|
-
"@backstage/errors": "1.2.7"
|
|
53
|
+
"@backstage/backend-plugin-api": "^1.3.1",
|
|
54
|
+
"@backstage/config": "^1.3.2",
|
|
55
|
+
"@backstage/errors": "^1.2.7"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@backstage/backend-defaults": "0.10.0
|
|
59
|
-
"@backstage/backend-test-utils": "1.5.0
|
|
60
|
-
"@backstage/cli": "0.32.1
|
|
58
|
+
"@backstage/backend-defaults": "^0.10.0",
|
|
59
|
+
"@backstage/backend-test-utils": "^1.5.0",
|
|
60
|
+
"@backstage/cli": "^0.32.1"
|
|
61
61
|
},
|
|
62
62
|
"configSchema": "config.d.ts"
|
|
63
63
|
}
|