From d8c8dbf4ef61a65452af2fd00640a94698cff5af Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Tue, 15 Aug 2023 17:01:38 +0200 Subject: [PATCH] Apply suggestions from code review Signed-off-by: Patrik Oldsberg --- .changeset/young-lies-attack.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.changeset/young-lies-attack.md b/.changeset/young-lies-attack.md index ebf6401d17..02a23e38e5 100644 --- a/.changeset/young-lies-attack.md +++ b/.changeset/young-lies-attack.md @@ -1,11 +1,11 @@ --- '@backstage/backend-plugin-api': patch -'@backstage/backend-test-utils': patch -'@backstage/backend-defaults': patch -'@backstage/backend-app-api': patch +'@backstage/backend-test-utils': minor +'@backstage/backend-defaults': minor +'@backstage/backend-app-api': minor --- -**BREAKING**: Removed options from `createBackend`. Service factories are now `BackendFeature`s and should be installed with `backend.add(...)` instead. The following should be migrated: +**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] });