chore: split out the changeset into two seperate ones

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-06-01 10:42:47 +02:00
parent 59f07a8eaf
commit 582003a059
2 changed files with 10 additions and 4 deletions
+7
View File
@@ -0,0 +1,7 @@
---
'@backstage/plugin-scaffolder-backend': minor
---
- Added an optional `list` method on the `TaskBroker` and `TaskStore` interface to list tasks by an optional `userEntityRef`
- Implemented a `list` method on the `DatabaseTaskStore` class to list tasks by an optional `userEntityRef`
- Added a route under `/v2/tasks` to list tasks by a `userEntityRef` using the `createdBy` query parameter
+3 -4
View File
@@ -1,8 +1,7 @@
---
'@backstage/plugin-scaffolder': minor
'@backstage/plugin-scaffolder-backend': minor
---
- Add `listTasks` option to get tasks optionally filtered by `createdBy`
- Added a new page under `/create/tasks` to show those tasks, optionally grouped by the current signed in user.
- Added a new page under `/create/tasks` to show tasks that have been run by the Scaffolder.
- Ability to filter these tasks by the signed in user, and all tasks.
- Added optional method to the `ScaffolderApi` interface called `listTasks` to get tasks with an required `filterByOwnership` parameter.