@backstage/backend-plugin-api 0.2.0 → 0.3.0-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.
- package/CHANGELOG.md +32 -0
- package/alpha/package.json +1 -1
- package/dist/index.alpha.d.ts +571 -98
- package/dist/index.beta.d.ts +571 -98
- package/dist/index.cjs.js +28 -124
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +571 -98
- package/package.json +7 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @backstage/backend-plugin-api
|
|
2
2
|
|
|
3
|
+
## 0.3.0-next.1
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 8e06f3cf00: Moved `loggerToWinstonLogger` to `@backstage/backend-common`.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- ecc6bfe4c9: Added `ServiceFactoryOrFunction` type, for use when either a `ServiceFactory` or `() => ServiceFactory` can be used.
|
|
12
|
+
- 02b119ff93: Added a new `rootHttpRouterServiceRef` and `RootHttpRouterService` interface.
|
|
13
|
+
- 5437fe488f: Migrated types related to `TokenManagerService`, `CacheService` and `DatabaseService` into backend-plugin-api.
|
|
14
|
+
- 16054afdec: Documented `coreServices` an all of its members.
|
|
15
|
+
- 62b04bb865: Updates all `create*` methods to simplify their type definitions and ensure they all have configuration interfaces.
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/backend-tasks@0.4.1-next.1
|
|
18
|
+
- @backstage/config@1.0.6-next.0
|
|
19
|
+
- @backstage/types@1.0.2
|
|
20
|
+
- @backstage/plugin-permission-common@0.7.3-next.0
|
|
21
|
+
|
|
22
|
+
## 0.2.1-next.0
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- 6cfd4d7073: Added `RootLifecycleService` and `rootLifecycleServiceRef`, as well as added a `labels` option to the existing `LifecycleServiceShutdownHook`.
|
|
27
|
+
- 5e2cebe9a3: Migrate `UrlReader` into this package to gradually remove the dependency on backend-common.
|
|
28
|
+
- 6f02d23b01: Moved `PluginEndpointDiscovery` type from backend-common to backend-plugin-api.
|
|
29
|
+
- Updated dependencies
|
|
30
|
+
- @backstage/backend-common@0.18.0-next.0
|
|
31
|
+
- @backstage/config@1.0.6-next.0
|
|
32
|
+
- @backstage/backend-tasks@0.4.1-next.0
|
|
33
|
+
- @backstage/plugin-permission-common@0.7.3-next.0
|
|
34
|
+
|
|
3
35
|
## 0.2.0
|
|
4
36
|
|
|
5
37
|
### Minor Changes
|