Skip to content

Releases: bUnit-dev/bUnit

1.23.9

06 Sep 11:06
3142159
Compare
Choose a tag to compare

Fixed

  • If the renderer was not idle when calling SetParametersAndRender, the method could return before the parameters were set and the component under test had finished rendering. This was a regression that happened in v1.21.9. Reported by @Skintkingle in #1188. Fixed by @egil.

Added

  • net8.0 support
  • Increased timeout of WaitForAssertion to infinite when a debugger is attached. By @linkdotnet.

Fixed

  • AngleSharp IElement extension methods do not work with IRenderedFragment.Find. Reported by a2er. Fixed by @linkdotnet.

1.22.19

28 Jul 15:07
8761655
Compare
Choose a tag to compare

Added

  • Update bunit templates to support the target framework version of the project. By @linkdotnet.

Fixed

  • Calling MarkupMatches(RenderFragment) from a lambda passed to e.g. WaitForAssertion could lead to a deadlock in certain circumstances. Fixed by @linkdotnet. Reported by @uecasm in #1143.

  • Rendering complex component hierarchies could result in a stack overflow. Fixed by @egil.. Reported by @groogiam in #1064.

  • Remove capturing and dispatching markup updates to test frameworks synchronization context again. This could cause deadlocks and does not have any impact on test stability. Fixed by @egil. Reported by @biohazard999 in #1144.

1.21.9

02 Jul 16:07
cb0a4cb
Compare
Choose a tag to compare

Fixed

  • Allow using 3rd party IComponentActivator at the same time as component factories. By @egil. Reported by BenSchoen in #1129.

  • Calling IRenderedComponent.Render() or IRenderedComponent.SetParametersAndRender() did not batch up multiple synchronous re-renders after setting parameters. This is now changed such that the method causes the component to re-render with new parameters in the same way as if a parent component had passed new parameters to it. By @egil. Reported by @Jcparkyn in #1119.

1.20.8

21 May 10:54
7a69073
Compare
Choose a tag to compare

Added

  • Added static DefaultWaitTimeout property to TestContext to enable overriding the default timeout of "wait for" methods like WaitForAssertion from 1 second to something else. By @egil.

Fixed

  • TestRenderer throws ObjectDisposedException if any methods is accessed after it has been disposed. It will also prevent changes to the internal render tree after it has been disposed. By @egil.

1.19.14

26 Apr 17:49
dd0cee4
Compare
Choose a tag to compare

Fixed

  • Custom elements with attributes throw ArgumentException with MarkupMatches. Reported by @candritzky. Fixed by @linkdotnet.

Changed

  • Changed test renderer such that updates to rendered components markup happen in the same synchronization context as the test framework is using (if any), if any, to avoid memory race conditions. By @egil.

1.18.4

26 Feb 08:24
1704137
Compare
Choose a tag to compare

Fixed

  • Some characters where not properly escaped. Reported by @pwhe23. Fixed by @linkdotnet.
  • Clicking a submit button or submit input element inside a form, submits the form, if the submit button or submit input element does not have the @onclick:preventDefault attribute set. Reported by @linkdotnet. Fixed by @egil.

1.17.2

22 Feb 08:20
997a71a
Compare
Choose a tag to compare
  • Submit buttons and input fields now no longer cause a form submit when they have the @onclick:preventDefault attribute. By @JelleHissink.

1.16.2

07 Feb 21:53
33f9c2d
Compare
Choose a tag to compare
  • Changed semantic comparer to handle elements parsed outside their proper context, e.g. an <path> element parsed without being inside a <svg> element. The semantic comparer will now be able to treat those as regular elements and thus be able to compare correctly to other elements of the same type and with the same node name. By @egil.

1.15.5

04 Feb 16:55
1c969be
Compare
Choose a tag to compare
  • Upgrade AngleSharp.Diffing to 0.17.1

1.14.4

11 Jan 20:35
77da254
Compare
Choose a tag to compare

Added

  • Added IMemoryCache by default to the Services container. By @linkdotnet.

Fixed

  • Added support in FakeNavigationManager to handle umlauts.
  • Fixed a bug where attribute values did not get escaped. Reported by @brettwinters. Fixed by @linkdotnet.