@backstage/backend-app-api 0.5.0-next.2 → 0.5.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.

Potentially problematic release.


This version of @backstage/backend-app-api might be problematic. Click here for more details.

package/CHANGELOG.md CHANGED
@@ -1,5 +1,42 @@
1
1
  # @backstage/backend-app-api
2
2
 
3
+ ## 0.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - b9c57a4f857e: **BREAKING**: Renamed `configServiceFactory` to `rootConfigServiceFactory`.
8
+ - 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:
9
+
10
+ ```ts
11
+ const backend = createBackend({ services: [myCustomServiceFactory] });
12
+ ```
13
+
14
+ To instead pass the service factory via `backend.add(...)`:
15
+
16
+ ```ts
17
+ const backend = createBackend();
18
+ backend.add(customRootLoggerServiceFactory);
19
+ ```
20
+
21
+ ### Patch Changes
22
+
23
+ - e65c4896f755: Do not throw in backend.stop, if start failed
24
+ - c7aa4ff1793c: Allow modules to register extension points.
25
+ - 57a10c6c69cc: Add validation to make sure that extension points do not cross plugin boundaries.
26
+ - cc9256a33bcc: Added new experimental `featureDiscoveryServiceFactory`, available as an `/alpha` export.
27
+ - Updated dependencies
28
+ - @backstage/backend-common@0.19.2
29
+ - @backstage/config-loader@1.4.0
30
+ - @backstage/backend-plugin-api@0.6.0
31
+ - @backstage/cli-node@0.1.3
32
+ - @backstage/plugin-auth-node@0.2.17
33
+ - @backstage/backend-tasks@0.5.5
34
+ - @backstage/plugin-permission-node@0.7.11
35
+ - @backstage/cli-common@0.1.12
36
+ - @backstage/config@1.0.8
37
+ - @backstage/errors@1.2.1
38
+ - @backstage/types@1.1.0
39
+
3
40
  ## 0.5.0-next.2
4
41
 
5
42
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-app-api",
3
- "version": "0.5.0-next.2",
3
+ "version": "0.5.0",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }