Skip to content

Commit 604c96f

Browse files
committed
Updated CHANGELOG.md for 1.8.15 release
1 parent 1f807f0 commit 604c96f

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

CHANGELOG.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,27 @@ All notable changes to **bUnit** will be documented in this file. The project ad
66

77
## [Unreleased]
88

9+
## [1.8.15] - 2022-05-19
10+
911
### Added
10-
- Added test helpers that make it much easier to pass files to the `InputFile` component. Learn more [in the documentation](https://bunit.dev/docs/test-doubles/input-file). By [@egil](https://github.com/egil) and [@linkdotnet](https://github.com/linkdotnet).
12+
13+
- Added test helpers that make it much easier to pass files to the `InputFile` component. Learn more [in the documentation](https://bunit.dev/docs/test-doubles/input-file). By [@egil](https://github.com/egil) and [@linkdotnet](https://github.com/linkdotnet).
1114

1215
### Changed
1316

14-
- `Htmlizer` uses `StringBuilder` instead of `List<string>` to reduce allocations and improve render speed. By [@linkdotnet](https://github.com/linkdotnet).
17+
- `Htmlizer` uses `StringBuilder` instead of `List<string>` to reduce allocations and improve render speed. By [@linkdotnet](https://github.com/linkdotnet).
1518

1619
### Fixes
1720

18-
- `TestServiceProvider` now implements `IAsyncDisposable`. This means `TestContext.Dispose()` now calls the async disposable method as well as the non-async version on the service provider. It does however not block or await the task returned, since that can lead to deadlocks.
19-
20-
To await the disposal of async services registered in the `TestContext.Services` container, do the following:
21+
- `TestServiceProvider` now implements `IAsyncDisposable`. This means `TestContext.Dispose()` now calls the async disposable method as well as the non-async version on the service provider. It does however not block or await the task returned, since that can lead to deadlocks.
2122

22-
1. Create a new type that derives from `TestContext` and which implement `IAsyncDisposable`.
23-
2. In the `DisposeAsync()` method, call `Services.DisposeAsync()`.
24-
3. Override the `Dispose` and have it only call `Services.Dispose()`.
23+
To await the disposal of async services registered in the `TestContext.Services` container, do the following:
2524

26-
Reported by [@vedion](https://github.com/vedion) and fixed by [@egil](https://github.com/egil).
25+
1. Create a new type that derives from `TestContext` and which implement `IAsyncDisposable`.
26+
2. In the `DisposeAsync()` method, call `Services.DisposeAsync()`.
27+
3. Override the `Dispose` and have it only call `Services.Dispose()`.
28+
29+
Reported by [@vedion](https://github.com/vedion) and fixed by [@egil](https://github.com/egil).
2730

2831
## [1.7.7] - 2022-04-29
2932

@@ -1159,7 +1162,9 @@ The latest version of the library is availble on NuGet:
11591162
- **Wrong casing on keyboard event dispatch helpers.**
11601163
The helper methods for the keyboard events was not probably cased, so that has been updated. E.g. from `Keypress(...)` to `KeyPress(...)`.
11611164

1162-
[Unreleased]: https://github.com/bUnit-dev/bUnit/compare/v1.7.7...HEAD
1165+
[Unreleased]: https://github.com/bUnit-dev/bUnit/compare/v1.8.15...HEAD
1166+
1167+
[1.8.15]: https://github.com/bUnit-dev/bUnit/compare/v1.7.7...v1.8.15
11631168
11641169
[1.7.7]: https://github.com/bUnit-dev/bUnit/compare/v1.6.4...v1.7.7
11651170

0 commit comments

Comments
 (0)