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
+-
++
+```