Merge branch 'master' of https://github.com/backstage/backstage into marley/7678-pull-request-custom-filters

This commit is contained in:
Marley Powell
2021-12-09 16:24:06 +00:00
619 changed files with 15679 additions and 3861 deletions
+12
View File
@@ -1,5 +1,17 @@
# @backstage/plugin-azure-devops-common
## 0.1.2
### Patch Changes
- a77526afcd: Added getting builds by definition name
## 0.1.1
### Patch Changes
- 0749dd0307: feat: Created pull request card component and initial pull request dashboard page.
## 0.1.0
### Minor Changes
+23
View File
@@ -14,6 +14,29 @@ export enum BuildResult {
Succeeded = 2,
}
// Warning: (ae-missing-release-tag) "BuildRun" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export type BuildRun = {
id?: number;
title: string;
link?: string;
status?: BuildStatus;
result?: BuildResult;
queueTime?: string;
startTime?: string;
finishTime?: string;
source: string;
uniqueName?: string;
};
// Warning: (ae-missing-release-tag) "BuildRunOptions" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export type BuildRunOptions = {
top?: number;
};
// Warning: (ae-missing-release-tag) "BuildStatus" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-azure-devops-common",
"version": "0.1.0",
"version": "0.1.2",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,7 +29,7 @@
"clean": "backstage-cli clean"
},
"devDependencies": {
"@backstage/cli": "^0.9.0"
"@backstage/cli": "^0.10.1"
},
"files": [
"dist"
+16
View File
@@ -254,3 +254,19 @@ export enum PullRequestVoteStatus {
WaitingForAuthor = -5,
Rejected = -10,
}
export type BuildRun = {
id?: number;
title: string;
link?: string;
status?: BuildStatus;
result?: BuildResult;
queueTime?: string;
startTime?: string;
finishTime?: string;
source: string;
uniqueName?: string;
};
export type BuildRunOptions = {
top?: number;
};