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
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,11 @@
2
2
3
3
All notable changes to **bUnit** will be documented in this file. The project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
4
4
5
+
<!-- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) -->
6
+
5
7
## [UNRELEASED BETA 11]
6
8
7
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
9
+
The following section list all changes in beta-11.
8
10
9
11
### Added
10
12
List of new features.
@@ -43,17 +45,17 @@ List of soon-to-be removed features.
43
45
### Removed
44
46
List of now removed features.
45
47
48
+
- The async event dispatcher helper methods have been removed (e.g. `ClickAsync()`), as they do not provide any benefit. If you have an event that triggers async operations in the component under test, instead use `cut.WaitForState()` or `cut.WaitForAssertion()` to await the expected state in the component.
49
+
46
50
### Fixed
47
51
List of any bug fixes.
48
52
49
53
- Using the ComponentParameterCollectionBuilder's `Add(p => p.Param, value)` method to add a unnamed cascading value didn't create an unnnamed cascading value parameter. By [@egil](https://github.com/egil) in [#203](https://github.com/egil/bUnit/pull/203). Credits to [Ben Sampica (@benjaminsampica)](https://github.com/benjaminsampica) for reporting and helping investigate this issue.
50
-
51
-
### Security
52
-
List of fixed security vulnerabilities.
54
+
- Triggered events now bubble correctly up the DOM tree and triggers other events of the same type. This is a **potentially breaking change,** since this changes the behaviour of event triggering and thus you might see tests start breaking as a result hereof. By [@egil](https://github.com/egil) in [#119](https://github.com/egil/bUnit/issues/119).
53
55
54
56
## [1.0.0-beta 10] - 2020-09-15
55
57
56
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
58
+
The following section list all changes in beta-10.
0 commit comments