Version Packages
This commit is contained in:
@@ -1,5 +1,31 @@
|
||||
# @backstage/backend-test-utils
|
||||
|
||||
## 1.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- dffaf70: Switched out `mockServices.scheduler` to use a mocked implementation instead of the default scheduler implementation. This implementation runs any scheduled tasks immediately on startup, as long as they don't have an initial delay or a manual trigger. After the initial run, the tasks are never run again unless manually triggered.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 279e1f7: Updated the type definition of `mockErrorHandler` to ensure that it is used correctly.
|
||||
|
||||
```ts
|
||||
// This is wrong and will now result in a type error
|
||||
app.use(mockErrorHandler);
|
||||
|
||||
// This is the correct usage
|
||||
app.use(mockErrorHandler());
|
||||
```
|
||||
|
||||
- 3a7dad9: Updated `better-sqlite3` to v12
|
||||
- Updated dependencies
|
||||
- @backstage/backend-defaults@0.12.0
|
||||
- @backstage/backend-app-api@1.2.6
|
||||
- @backstage/plugin-auth-node@0.6.6
|
||||
- @backstage/backend-plugin-api@1.4.2
|
||||
- @backstage/plugin-events-node@0.4.14
|
||||
|
||||
## 1.7.1-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/backend-test-utils",
|
||||
"version": "1.7.1-next.0",
|
||||
"version": "1.8.0",
|
||||
"description": "Test helpers library for Backstage backends",
|
||||
"backstage": {
|
||||
"role": "node-library"
|
||||
|
||||
Reference in New Issue
Block a user