Table of Contents

Analyzers 1.24.0 2025 August 15

Today, we're shipping three new releases:

  • xUnit.net Core Framework v3 3.0.1 (release notes)
  • xUnit.net Analyzers 1.24.0
  • xUnit.net Visual Studio adapter 3.1.4 (release notes)

It's been 1 month since the release of 1.23.0.

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 1.23.0 to 1.24.0.

General

  • We have removed batch fixer support (for real, this time 😬).

Usage Analyzers

Assertion Analyzers

  • We have updated xUnit2002 to not trigger when passing unsafe pointers to Assert.Null and Assert.NotNull (support was added in v3 3.0.1). We have also updated xUnit2024 to not trigger when using Assert.True or Assert.False to compare unsafe pointers against null (for v2 and versions of v3 prior to 3.0.1). xunit/xunit#3346

  • We have updated xUnit2023 and its associated fixer to support Assert.CollectionAsync.