diff --git a/.changeset/young-lies-attack.md b/.changeset/young-lies-attack.md new file mode 100644 index 0000000000..0e9fc21e22 --- /dev/null +++ b/.changeset/young-lies-attack.md @@ -0,0 +1,21 @@ +--- +'@backstage/backend-plugin-api': patch +'@backstage/backend-test-utils': patch +'@backstage/backend-defaults': patch +'@backstage/backend-app-api': patch +--- + +Removed options from `createBackend`. + +The `createBackend` method doesn't accept any options anymore as in the following: + +```ts +const backend = createBackend({ services: [myCustomServiceFactory] }); +``` + +In order to pass custom service factories use the `add` method: + +```ts +const backend = createBackend(); +backend.add(customRootLoggerServiceFactory); +```