update changeset, add api report

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2022-03-04 11:08:08 +01:00
committed by Fredrik Adelöw
parent 36c2ada275
commit ae6b614d84
2 changed files with 2 additions and 1 deletions
+2
View File
@@ -5,3 +5,5 @@
**BREAKING**: Removed the `target` property from `EntityRelation`. This field has been replaced by `targetRef`.
This means that `target: { name: 'team-a', kind: 'group', namespace: 'default' }` is now replaced with `targetRef: 'group:default/team-a'` in entity relations.
The entities API endpoint still return the old `target` field for to ease transitions, however the future removal of this field will be considered non breaking.
-1
View File
@@ -192,7 +192,6 @@ export type EntityPolicy = {
// @public
export type EntityRelation = {
type: string;
target: CompoundEntityRef;
targetRef: string;
};