Version Packages

This commit is contained in:
github-actions[bot]
2025-05-20 08:25:02 +00:00
parent affc953b1b
commit 389d265b60
512 changed files with 5856 additions and 1596 deletions
+36
View File
@@ -1,5 +1,41 @@
# @backstage/plugin-org
## 0.6.39
### Patch Changes
- fb58f20: Internal update to use the new `pluginId` option of `createFrontendPlugin`.
- 02e8af1: Enhance user profile card configuration:
- Added a new optional `maxRelations` numerical configuration that controls over how many user groups are shown directly on the profile card:
- If the setting is omitted, all relations will be shown.
- If `maxRelations` is set to `0`, the list of user groups is not displayed.
- If `maxRelations` is set to a positive number, up to that many groups are displayed.
- If the user belongs to more groups than the specified limit, a clickable link appears that opens a dialog showing all associated user groups.
- A complementary boolean configuration, `hideIcons`, was added to optionally hide the visual icons associated with each group in the displayed list.
- Usage example:
```yaml
# Example in app-config.yaml
app:
extensions:
- entity-card:org/user-profile:
config:
maxRelations: 5 # (optional) Show up to 5 groups on the card
hideIcons: true # (optional) Hide the group icons
```
- 08ba448: display entity-ref in GroupProfileCard so groups can easily determine their Group ID
- 18e84c9: Fixed missing spec.profile field on MyGroupsSidebarItem.tsx so the group spec.profile.displayName is shown on the sidebar"
- 72d019d: Removed various typos
- Updated dependencies
- @backstage/frontend-plugin-api@0.10.2
- @backstage/core-components@0.17.2
- @backstage/catalog-model@1.7.4
- @backstage/core-compat-api@0.4.2
- @backstage/plugin-catalog-react@1.18.0
- @backstage/core-plugin-api@1.10.7
- @backstage/plugin-catalog-common@1.1.4
## 0.6.39-next.3
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-org",
"version": "0.6.39-next.3",
"version": "0.6.39",
"description": "A Backstage plugin that helps you create entity pages for your organization",
"backstage": {
"role": "frontend-plugin",