@backstage/backend-app-api 0.5.0-next.2 → 0.5.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 +54 -0
- package/alpha/package.json +1 -1
- package/dist/index.cjs.js +528 -312
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,59 @@
|
|
|
1
1
|
# @backstage/backend-app-api
|
|
2
2
|
|
|
3
|
+
## 0.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-common@0.19.3
|
|
9
|
+
- @backstage/backend-tasks@0.5.6
|
|
10
|
+
- @backstage/plugin-auth-node@0.2.18
|
|
11
|
+
- @backstage/plugin-permission-node@0.7.12
|
|
12
|
+
- @backstage/backend-plugin-api@0.6.1
|
|
13
|
+
- @backstage/cli-common@0.1.12
|
|
14
|
+
- @backstage/cli-node@0.1.3
|
|
15
|
+
- @backstage/config@1.0.8
|
|
16
|
+
- @backstage/config-loader@1.4.0
|
|
17
|
+
- @backstage/errors@1.2.1
|
|
18
|
+
- @backstage/types@1.1.0
|
|
19
|
+
|
|
20
|
+
## 0.5.0
|
|
21
|
+
|
|
22
|
+
### Minor Changes
|
|
23
|
+
|
|
24
|
+
- b9c57a4f857e: **BREAKING**: Renamed `configServiceFactory` to `rootConfigServiceFactory`.
|
|
25
|
+
- a6d7983f349c: **BREAKING**: Removed the `services` option from `createBackend`. Service factories are now `BackendFeature`s and should be installed with `backend.add(...)` instead. The following should be migrated:
|
|
26
|
+
|
|
27
|
+
```ts
|
|
28
|
+
const backend = createBackend({ services: [myCustomServiceFactory] });
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
To instead pass the service factory via `backend.add(...)`:
|
|
32
|
+
|
|
33
|
+
```ts
|
|
34
|
+
const backend = createBackend();
|
|
35
|
+
backend.add(customRootLoggerServiceFactory);
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### Patch Changes
|
|
39
|
+
|
|
40
|
+
- e65c4896f755: Do not throw in backend.stop, if start failed
|
|
41
|
+
- c7aa4ff1793c: Allow modules to register extension points.
|
|
42
|
+
- 57a10c6c69cc: Add validation to make sure that extension points do not cross plugin boundaries.
|
|
43
|
+
- cc9256a33bcc: Added new experimental `featureDiscoveryServiceFactory`, available as an `/alpha` export.
|
|
44
|
+
- Updated dependencies
|
|
45
|
+
- @backstage/backend-common@0.19.2
|
|
46
|
+
- @backstage/config-loader@1.4.0
|
|
47
|
+
- @backstage/backend-plugin-api@0.6.0
|
|
48
|
+
- @backstage/cli-node@0.1.3
|
|
49
|
+
- @backstage/plugin-auth-node@0.2.17
|
|
50
|
+
- @backstage/backend-tasks@0.5.5
|
|
51
|
+
- @backstage/plugin-permission-node@0.7.11
|
|
52
|
+
- @backstage/cli-common@0.1.12
|
|
53
|
+
- @backstage/config@1.0.8
|
|
54
|
+
- @backstage/errors@1.2.1
|
|
55
|
+
- @backstage/types@1.1.0
|
|
56
|
+
|
|
3
57
|
## 0.5.0-next.2
|
|
4
58
|
|
|
5
59
|
### Patch Changes
|