@backstage/backend-app-api 0.4.3 → 0.4.4-next.1
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.
Potentially problematic release.
This version of @backstage/backend-app-api might be problematic. Click here for more details.
- package/CHANGELOG.md +35 -0
- package/dist/index.cjs.js +321 -114
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +32 -3
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @backstage/backend-app-api
|
|
2
2
|
|
|
3
|
+
## 0.4.4-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3bb4158a8aa4: Switched startup strategy to initialize all plugins in parallel, as well as hook into the new startup lifecycle hooks.
|
|
8
|
+
- 2c9f67e6f166: Introduced built-in middleware into the default `HttpService` implementation that throws a `ServiceNotAvailable` error when plugins aren't able to serve request. Also introduced a request stalling mechanism that pauses incoming request until plugins have been fully initialized.
|
|
9
|
+
- c4e8fefd9f13: Added handling of `ServiceUnavailableError` to error handling middleware.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/backend-common@0.19.0-next.1
|
|
12
|
+
- @backstage/errors@1.2.0-next.0
|
|
13
|
+
- @backstage/backend-plugin-api@0.5.3-next.1
|
|
14
|
+
- @backstage/backend-tasks@0.5.3-next.1
|
|
15
|
+
- @backstage/plugin-auth-node@0.2.15-next.1
|
|
16
|
+
- @backstage/plugin-permission-node@0.7.9-next.1
|
|
17
|
+
- @backstage/config-loader@1.3.1-next.1
|
|
18
|
+
- @backstage/cli-common@0.1.12
|
|
19
|
+
- @backstage/config@1.0.7
|
|
20
|
+
- @backstage/types@1.0.2
|
|
21
|
+
|
|
22
|
+
## 0.4.4-next.0
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @backstage/config-loader@1.3.1-next.0
|
|
28
|
+
- @backstage/backend-common@0.18.6-next.0
|
|
29
|
+
- @backstage/config@1.0.7
|
|
30
|
+
- @backstage/backend-plugin-api@0.5.3-next.0
|
|
31
|
+
- @backstage/backend-tasks@0.5.3-next.0
|
|
32
|
+
- @backstage/cli-common@0.1.12
|
|
33
|
+
- @backstage/errors@1.1.5
|
|
34
|
+
- @backstage/types@1.0.2
|
|
35
|
+
- @backstage/plugin-auth-node@0.2.15-next.0
|
|
36
|
+
- @backstage/plugin-permission-node@0.7.9-next.0
|
|
37
|
+
|
|
3
38
|
## 0.4.3
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|