@backstage/backend-app-api 1.2.3-next.2 → 1.2.4-next.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +49 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,54 @@
1
1
  # @backstage/backend-app-api
2
2
 
3
+ ## 1.2.4-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@1.4.0-next.0
9
+
10
+ ## 1.2.3
11
+
12
+ ### Patch Changes
13
+
14
+ - 729a7d6: Added a configuration to permit backend plugin module failures on startup:
15
+
16
+ ```yaml
17
+ backend:
18
+ ...
19
+ startup:
20
+ plugins:
21
+ plugin-x:
22
+ modules:
23
+ module-y:
24
+ onPluginModuleBootFailure: continue
25
+ ```
26
+
27
+ This configuration permits `plugin-x` with `module-y` to fail on startup. Omitting the
28
+ `onPluginModuleBootFailure` configuration matches the previous behavior, wherein any
29
+ individual plugin module failure is forwarded to the plugin and aborts backend startup.
30
+
31
+ The default can also be changed, so that continuing on failure is the default
32
+ unless otherwise specified:
33
+
34
+ ```yaml
35
+ backend:
36
+ startup:
37
+ default:
38
+ onPluginModuleBootFailure: continue
39
+ plugins:
40
+ catalog:
41
+ modules:
42
+ github:
43
+ onPluginModuleBootFailure: abort
44
+ ```
45
+
46
+ - 72d019d: Removed various typos
47
+ - Updated dependencies
48
+ - @backstage/backend-plugin-api@1.3.1
49
+ - @backstage/config@1.3.2
50
+ - @backstage/errors@1.2.7
51
+
3
52
  ## 1.2.3-next.2
4
53
 
5
54
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-app-api",
3
- "version": "1.2.3-next.2",
3
+ "version": "1.2.4-next.0",
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-next.2",
53
+ "@backstage/backend-plugin-api": "1.4.0-next.0",
54
54
  "@backstage/config": "1.3.2",
55
55
  "@backstage/errors": "1.2.7"
56
56
  },
57
57
  "devDependencies": {
58
- "@backstage/backend-defaults": "0.10.0-next.3",
59
- "@backstage/backend-test-utils": "1.5.0-next.3",
60
- "@backstage/cli": "0.32.1-next.3"
58
+ "@backstage/backend-defaults": "0.10.1-next.0",
59
+ "@backstage/backend-test-utils": "1.6.0-next.0",
60
+ "@backstage/cli": "0.32.1"
61
61
  },
62
62
  "configSchema": "config.d.ts"
63
63
  }