1b7c691a3b
Signed-off-by: Antonio Musolino <antoniomusolino007@gmail.com>
546 B
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[]>;
}