diff --git a/.changeset/swift-lobsters-learn.md b/.changeset/swift-lobsters-learn.md index e5adfde478..afdc4e1146 100644 --- a/.changeset/swift-lobsters-learn.md +++ b/.changeset/swift-lobsters-learn.md @@ -3,4 +3,6 @@ '@backstage/plugin-catalog-backend': patch --- -Added support for the "members" field of the Group entity, allowing specification of direct members from the Group side of the relationship. Added support to the BuiltinKindsEntityProcessor to generate the appropriate relationships. +Added support for the "members" field of the Group entity, allowing specification of +direct members from the Group side of the relationship. Added support to the +`BuiltinKindsEntityProcessor` to generate the appropriate relationships. diff --git a/packages/catalog-model/src/kinds/GroupEntityV1alpha1.test.ts b/packages/catalog-model/src/kinds/GroupEntityV1alpha1.test.ts index aa8011e977..6e59637c67 100644 --- a/packages/catalog-model/src/kinds/GroupEntityV1alpha1.test.ts +++ b/packages/catalog-model/src/kinds/GroupEntityV1alpha1.test.ts @@ -39,6 +39,7 @@ describe('GroupV1alpha1Validator', () => { }, parent: 'group-a', children: ['child-a', 'child-b'], + members: ['jdoe'], }, }; });