Today, we’re shipping three new releases:
It’s been 6 weeks since the release of 1.14.0 RTM.
As always, we’d like to thank all the users who contributed to the success of xUnit.net through usage, feedback, and code contributions. 🎉
These release notes are a comprehensive list of changes from 1.14.0 to 1.15.0.
Support for v3 Core Framework test projects has been upgraded to support 0.2.0 and later. Because of the sweeping name & namespace changes that occurred with 0.2.0, you may find false positives when using the analyzers with projects that are still targeting 0.1.1. It’s strongly recommended that you upgrade to v3 Core Framework 0.2.0 as soon as possible.
We fixed an issue with the way the analyzer NuGet package was being made that was causing a CompilerServer failure for some users (which increased build times in addition to the reported non-fatal error). xunit/xunit#2943
We have created xUnit2029 to suggest that users can convert code like this
Assert.Empty(collection.Where(item => /* ... */));
to this form, which provides better output when the test fails:
Assert.DoesNotContain(collection, item => /* ... */);
IXunitSerializable
.