Version Packages
This commit is contained in:
@@ -1,5 +1,59 @@
|
||||
# @backstage/plugin-org
|
||||
|
||||
## 0.7.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- d14b6e0: **BREAKING**: Migrated `MembersListCard`, `OwnershipCard`, and `CatalogGraphCard` to use BUI card primitives via `EntityInfoCard`.
|
||||
|
||||
- `OwnershipCard`: Removed `variant` and `maxScrollHeight` props. Card height and scrolling are now controlled by the parent container — the card fills its container and the body scrolls automatically when content overflows.
|
||||
- `CatalogGraphCard`: Removed `variant` prop.
|
||||
- `MembersListCard`: Translation keys `subtitle`, `paginationLabel`, `aggregateMembersToggle.directMembers`, `aggregateMembersToggle.aggregatedMembers`, and `aggregateMembersToggle.ariaLabel` have been removed. The `title` key now includes `{{groupName}}`. New keys added: `cardLabel`, `noSearchResult`, `aggregateMembersToggle.label`.
|
||||
- `OwnershipCard`: Translation keys `aggregateRelationsToggle.directRelations`, `aggregateRelationsToggle.aggregatedRelations`, and `aggregateRelationsToggle.ariaLabel` have been removed. New key added: `aggregateRelationsToggle.label`.
|
||||
- Removed `MemberComponentClassKey` export, and `root` and `cardContent` from `MembersListCardClassKey`, `card` from `OwnershipCardClassKey`, and `card` from `CatalogGraphCardClassKey`.
|
||||
|
||||
**Migration:**
|
||||
|
||||
```diff
|
||||
- <EntityOwnershipCard variant="gridItem" />
|
||||
+ <EntityOwnershipCard />
|
||||
```
|
||||
|
||||
```diff
|
||||
- <EntityCatalogGraphCard variant="gridItem" height={400} />
|
||||
+ <EntityCatalogGraphCard height={400} />
|
||||
```
|
||||
|
||||
- 5fc35bb: 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. Removed `gridSizes` prop from `AboutField`.
|
||||
|
||||
**Migration:**
|
||||
|
||||
Simply delete the obsolete `variant` and `gridSizes` props, e.g:
|
||||
|
||||
```diff
|
||||
- <EntityAboutCard variant="gridItem" />
|
||||
+ <EntityAboutCard />
|
||||
```
|
||||
|
||||
```diff
|
||||
- <AboutField label="Owner" gridSizes={{ xs: 12, sm: 6, lg: 4 }} />
|
||||
+ <AboutField label="Owner" />
|
||||
```
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 538c985: Updated installation documentation to use feature discovery as the default.
|
||||
- 0be2541: Promoted the plugin's translation ref to the stable package entry point. It was previously only available through the alpha entry point.
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-catalog-react@2.1.0
|
||||
- @backstage/ui@0.13.0
|
||||
- @backstage/core-plugin-api@1.12.4
|
||||
- @backstage/core-components@0.18.8
|
||||
- @backstage/frontend-plugin-api@0.15.0
|
||||
- @backstage/catalog-model@1.7.7
|
||||
|
||||
## 0.7.0-next.2
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/plugin-org",
|
||||
"version": "0.7.0-next.2",
|
||||
"version": "0.7.0",
|
||||
"description": "A Backstage plugin that helps you create entity pages for your organization",
|
||||
"backstage": {
|
||||
"role": "frontend-plugin",
|
||||
|
||||
Reference in New Issue
Block a user