From e63e5a9452988f218596df2413096df7dd5f7586 Mon Sep 17 00:00:00 2001 From: blam Date: Mon, 7 Mar 2022 21:26:47 +0000 Subject: [PATCH] chore: added changeset Signed-off-by: blam --- .changeset/nine-frogs-yell.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .changeset/nine-frogs-yell.md diff --git a/.changeset/nine-frogs-yell.md b/.changeset/nine-frogs-yell.md new file mode 100644 index 0000000000..e34f00fec8 --- /dev/null +++ b/.changeset/nine-frogs-yell.md @@ -0,0 +1,11 @@ +--- +'@backstage/plugin-scaffolder': minor +--- + +Removed the following previously deprecated exports: + +- **BREAKING**: Removed the deprecated `TemplateList` component and the `TemplateListProps` type. Please use the `TemplateCard` to create your own list component instead to render these lists. + +- **BREAKING**: Removed the deprecated `setSecret` method, please use `setSecrets` instead. + +- **BREAKING**: Removed the deprecated `TemplateCardComponent` and `TaskPageComponent` props from the `ScaffolderPage` component. These are now provided using the `components` prop with the shape `{{ TemplateCardComponent: () => JSX.Element, TaskPageComponent: () => JSX.Element }}`