From 65e0322e0dafef501d7028188c6d4fe9615b12bf Mon Sep 17 00:00:00 2001 From: blam Date: Wed, 16 Feb 2022 10:19:17 +0100 Subject: [PATCH 1/2] chore: remove the deprecated provider config Signed-off-by: blam --- plugins/scaffolder-backend/config.d.ts | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/plugins/scaffolder-backend/config.d.ts b/plugins/scaffolder-backend/config.d.ts index aa4ecf8053..7883284165 100644 --- a/plugins/scaffolder-backend/config.d.ts +++ b/plugins/scaffolder-backend/config.d.ts @@ -28,30 +28,5 @@ export interface Config { * The commit message used when new components are created. */ defaultCommitMessage?: string; - /** - * @deprecated Replaced by parameters for the publish:github action - */ - github?: { - [key: string]: string; - }; - /** - * @deprecated Use the Gitlab integration instead - */ - gitlab?: { - api: { [key: string]: string }; - }; - /** - * @deprecated Use the Azure integration instead - */ - azure?: { - baseUrl: string; - api: { [key: string]: string }; - }; - /** - * @deprecated Use the Bitbucket integration instead - */ - bitbucket?: { - api: { [key: string]: string }; - }; }; } From 7d3471db944f74030c883505dbfd04244ccc6215 Mon Sep 17 00:00:00 2001 From: blam Date: Wed, 16 Feb 2022 10:24:46 +0100 Subject: [PATCH 2/2] chore: added changeset Signed-off-by: blam --- .changeset/warm-lizards-sin.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changeset/warm-lizards-sin.md diff --git a/.changeset/warm-lizards-sin.md b/.changeset/warm-lizards-sin.md new file mode 100644 index 0000000000..1e2aa1f857 --- /dev/null +++ b/.changeset/warm-lizards-sin.md @@ -0,0 +1,6 @@ +--- +'@backstage/plugin-scaffolder-backend': minor +--- + +Remove the previously deprecated `scaffolder.provider` config for all providers. +This config is no longer used anywhere, and adopters should use [`integrations` config](https://backstage.io/docs/integrations) instead.