Files
backstage/.changeset/purple-cherries-fix.md
T
2022-07-06 15:39:58 +02:00

546 B

@backstage/plugin-sentry
@backstage/plugin-sentry
minor

Added the possibility to specify organization per component, now the annotation sentry.io/project-slug can have the format of [organization]/[project-slug] or just [project-slug].

BREAKING: The method fetchIssue changed the signature:

export interface SentryApi {
  fetchIssues(
-     project: string,
-     statsFor: string,
-     query?: string,
+     entity: Entity,
+     options: {
+       statsFor: string;
+       query?: string;
+     },
  ): Promise<SentryIssue[]>;
}