Version Packages

This commit is contained in:
github-actions[bot]
2023-08-15 17:12:48 +00:00
parent 004768a3cc
commit aaf5cb2ca1
515 changed files with 6245 additions and 1533 deletions
+33
View File
@@ -1,5 +1,38 @@
# @backstage/backend-plugin-api
## 0.6.0
### Minor Changes
- c49785f00cab: **BREAKING**: It is no longer possible to declare options as being required with `createServiceFactory`.
- 629cbd194a87: **BREAKING**: Renamed `coreServices.config` to `coreServices.rootConfig`.
- 51987dbdaf87: **BREAKING**: Removed the ability to define options for plugins and modules. Existing options should be migrated to instead use either static configuration or extension points.
- d008aefef808: **BREAKING**: Removing shared environments concept from the new experimental backend system.
### Patch Changes
- c7aa4ff1793c: Allow modules to register extension points.
- cc9256a33bcc: Added new experimental `featureDiscoveryServiceRef`, available as an `/alpha` export.
- 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:
```ts
const backend = createBackend({ services: [myCustomServiceFactory] });
```
To instead pass the service factory via `backend.add(...)`:
```ts
const backend = createBackend();
backend.add(customRootLoggerServiceFactory);
```
- Updated dependencies
- @backstage/plugin-auth-node@0.2.17
- @backstage/backend-tasks@0.5.5
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/plugin-permission-common@0.7.7
## 0.6.0-next.2
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/backend-plugin-api",
"description": "Core API used by Backstage backend plugins",
"version": "0.6.0-next.2",
"version": "0.6.0",
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {