chore: updating changeset text with actual changes

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-02-18 13:48:30 +01:00
parent 7f193ff019
commit 2886e2c448
2 changed files with 18 additions and 2 deletions
+15 -1
View File
@@ -2,4 +2,18 @@
'@backstage/plugin-scaffolder-backend': minor
---
breaking
- **BREAKING** - `DatabaseTaskStore()` constructor is now removed. Please use the `DatabaseTaskStore.create()` method instead.
- **BREAKING** - `TaskStore.createTask()` method now only takes one argument of type `TaskStoreCreateTaskOptions` which encapsulates the `spec` and `secrets`
```diff
- TaskStore.createTask(spec, secrets)
+ TaskStore.createTask({ spec, secrets})
```
- **BREAKING** - `TaskBroker.dispatch()` method now only takes one argument of type `TaskBrokerDispatchOptions` which encapsulates the `spec` and `secrets`
```diff
- TaskBroker.dispatch(spec, secrets)
+ TaskBroker.dispatch({ spec, secrets})
```
+3 -1
View File
@@ -2,4 +2,6 @@
'@backstage/plugin-scaffolder-backend': patch
---
smaller
- **DEPRECATED** - `Status` has been deprecated in favour of `TaskStatus`
- **DEPRECATED** - `CompletedTaskState` has been deprecated in favour of `TaskCompletionState`
- **DEPRECATED** - `DispatchResult` has been deprecated in favour of `TaskBrokerDispatchResult`