Aded API Report and changeset

Signed-off-by: Andre Wanlin <awanlin@rapidrtc.com>
This commit is contained in:
Andre Wanlin
2021-11-11 10:02:29 -06:00
parent 6275236aab
commit 2b5ccd2964
2 changed files with 11 additions and 4 deletions
+7
View File
@@ -0,0 +1,7 @@
---
'@backstage/plugin-azure-devops': patch
'@backstage/plugin-azure-devops-backend': patch
'@backstage/plugin-azure-devops-common': patch
---
Improved Date handling for the Azure DevOps set of plugins by using strings and letting the frontend handle the conversion to DateTime
+4 -4
View File
@@ -36,7 +36,7 @@ export type PullRequest = {
title?: string;
uniqueName?: string;
createdBy?: string;
creationDate?: Date;
creationDate?: string;
sourceRefName?: string;
targetRefName?: string;
status?: PullRequestStatus;
@@ -72,9 +72,9 @@ export type RepoBuild = {
link?: string;
status?: BuildStatus;
result?: BuildResult;
queueTime?: Date;
startTime?: Date;
finishTime?: Date;
queueTime?: string;
startTime?: string;
finishTime?: string;
source: string;
uniqueName?: string;
};