You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+27-3Lines changed: 27 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,16 @@ All notable changes to **bUnit** will be documented in this file. The project ad
6
6
7
7
## [Unreleased]
8
8
9
+
A quick minor release that primiarily fixes a regression in 1.5.12.
10
+
11
+
### Fixed
12
+
13
+
-`ClickAsync` could lead to bubbling exceptions from `GetDispatchEventTasks` even though they should be handled. Reported by [@aguacongas](aguacongas). Fixed by [@linkdotnet](https://github.com/linkdotnet).
14
+
- Added more non bubbling events to bUnit so it behaves closer to the HTML specification. [@linkdotnet](https://github.com/linkdotnet).
15
+
9
16
## [1.5.12] - 2022-02-15
10
17
11
-
This first release of 2022 includes a one fix and four additions. A huge thank you to [Steven Giesel (@linkdotnet)](https://github.com/linkdotnet) and [Denis Ekart (@denisekart)](https://github.com/denisekart) for their contributions to this release.
18
+
This first release of 2022 includes one fix and four additions. A huge thank you to [Steven Giesel (@linkdotnet)](https://github.com/linkdotnet) and [Denis Ekart (@denisekart)](https://github.com/denisekart) for their contributions to this release.
12
19
13
20
Also a big shout out to **bUnit's sponsors** who helped make this release happen.
14
21
@@ -20,11 +27,12 @@ Also a big shout out to **bUnit's sponsors** who helped make this release happen
- Add `ComponentFactories` extensions method that makes it easy to register an instance of a replacement component. By [@egil](https://github.com/egil).
@@ -65,7 +89,7 @@ Big shout out to **bUnit's sponsors** who helped make this release happen.
Copy file name to clipboardExpand all lines: src/bunit.core/Rendering/TestRenderer.cs
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -82,12 +82,17 @@ public Task DispatchEventAsync(
82
82
}
83
83
catch(ArgumentExceptionex)when(string.Equals(ex.Message,$"There is no event handler associated with this event. EventId: '{eventHandlerId}'. (Parameter 'eventHandlerId')",StringComparison.Ordinal))
0 commit comments