1.8 KiB
1.8 KiB
@backstage/plugin-azure-devops-common
0.1.3
Patch Changes
-
daf32e2c9b: Created some initial filters that can be used to create pull request columns:- All
- AssignedToUser
- AssignedToCurrentUser
- AssignedToTeam
- AssignedToTeams
- AssignedToCurrentUsersTeams
- CreatedByUser
- CreatedByCurrentUser
- CreatedByTeam
- CreatedByTeams
- CreatedByCurrentUsersTeams
Example custom column creation:
const COLUMN_CONFIGS: PullRequestColumnConfig[] = [ { title: 'Created by me', filters: [{ type: FilterType.CreatedByCurrentUser }], }, { title: 'Created by Backstage Core', filters: [ { type: FilterType.CreatedByTeam, teamName: 'Backstage Core', }, ], }, { title: 'Assigned to my teams', filters: [{ type: FilterType.AssignedToCurrentUsersTeams }], }, { title: 'Other PRs', filters: [{ type: FilterType.All }], simplified: true, }, ]; <Route path="/azure-pull-requests" element={ <AzurePullRequestsPage projectName="{PROJECT_NAME}" defaultColumnConfigs={COLUMN_CONFIGS} /> } />;
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
2b5ccd2964: Improved Date handling for the Azure DevOps set of plugins by using strings and letting the frontend handle the conversion to DateTime
0.0.2
Patch Changes
b85acc8c35: refactor(@backstage/plugin-azure-devops): Consume types from@backstage/plugin-azure-devops-common. Stop re-exporting types from@backstage/plugin-azure-devops-backend. Added new types to@backstage/plugin-azure-devops-common.