# @backstage/plugin-azure-devops-common ## 0.2.2 ### Patch Changes - Fix for the previous release with missing type declarations. ## 0.2.1 ### Patch Changes - c77c5c7eb6: Added `backstage.role` to `package.json` ## 0.2.0 ### Minor Changes - a2ed2c2d69: - feat: Created PullRequestsDashboardProvider for resolving team and team member relations - feat: Created useUserTeamIds hook. - feat: Updated useFilterProcessor to provide teamIds for `AssignedToCurrentUsersTeams` and `CreatedByCurrentUsersTeams` filters. ## 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: ```tsx 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, }, ]; } />; ``` ## 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`.