From c6080eb0b067386ccd46c1140c1057dba7be019f Mon Sep 17 00:00:00 2001 From: Johan Persson Date: Mon, 2 Mar 2026 16:17:57 +0100 Subject: [PATCH] chore: update changeset. Signed-off-by: Johan Persson --- .changeset/social-worlds-report.md | 5 +++++ .changeset/thirty-kiwis-trade.md | 18 ++++++++++++++---- 2 files changed, 19 insertions(+), 4 deletions(-) create mode 100644 .changeset/social-worlds-report.md diff --git a/.changeset/social-worlds-report.md b/.changeset/social-worlds-report.md new file mode 100644 index 0000000000..58acda40a8 --- /dev/null +++ b/.changeset/social-worlds-report.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-catalog-react': minor +--- + +Added `EntityInfoCard` component to `@backstage/plugin-catalog-react` as a BUI-based card wrapper for entity page cards. diff --git a/.changeset/thirty-kiwis-trade.md b/.changeset/thirty-kiwis-trade.md index b2cdc5fb01..73fc21724b 100644 --- a/.changeset/thirty-kiwis-trade.md +++ b/.changeset/thirty-kiwis-trade.md @@ -1,7 +1,17 @@ --- -'@backstage/plugin-catalog-react': minor -'@backstage/plugin-catalog': patch -'@backstage/plugin-org': patch +'@backstage/plugin-catalog': major +'@backstage/plugin-org': major --- -Added `EntityInfoCard` component to `@backstage/plugin-catalog-react` as a BUI-based card wrapper for entity page cards. Migrated `EntityAboutCard`, `EntityLinksCard`, `EntityLabelsCard`, `GroupProfileCard`, and `UserProfileCard` from MUI/InfoCard to use the new BUI card layout. Replaced MUI ImageList and Grid internals in LinksGridList and AboutContent with BUI Grid. Migrated EntityLabelsCard from core-components Table to BUI Table. Updated GroupProfileCard and UserProfileCard to use BUI Avatar in card titles. +Migrated `EntityAboutCard`, `EntityLinksCard`, `EntityLabelsCard`, `GroupProfileCard`, and `UserProfileCard` from MUI/InfoCard to use the new BUI card layout and BUI components where possible. + +**BREAKING**: Removed `variant` prop from EntityAboutCard, EntityUserProfileCard, EntityGroupProfileCard, EntityLabelsCard, EntityLinksCard + +**Migration:** + +Simply delete the obsolete `variant` prop, e.g: + +```diff +- ++ +```