Core Framework v2 2.6.5 2024 January 4
Today, we're shipping two new releases:
- xUnit.net Core Framework v2
2.6.5 - xUnit.net Analyzers 1.9.0 (release notes)
It's been 2 weeks since the release of 2.6.4.
As always, we'd like to thank all the users who contributed to the success of xUnit.net through usage, feedback, and code. 🎉
Release Notes
These release notes are a comprehensive list of changes from 2.6.4 to 2.6.5.
Core Framework
- We have converted the
TheoryDatabase class toIReadOnlyCollection<object[]>instead of justIEnumerable<object[]>, which means you can now index the items and get an item count. Additionally, we've added two constructors toTheoryData<T>(one takingIEnumerable<T>and one takingparams T[]) and anAddRangemethod so that it can more easily be used with array-style initializers. xunit/xunit#2854