Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 87 additions & 0 deletions docs/articles/vs-test-adapter/AdapterV4-Release-Notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,93 @@ uid: adapterreleasenotes

# Adapter Release Notes

## NUnit3 Test Adapter for Visual Studio and Dotnet - Version 6.2.0 - March 21, 2026

There are 8 issues fixed in this release.

This is primarily a bug-fix release, with one new feature added.

The enhancement is the introduction of filtering for the --list-tests option in dotnet test. All three related issues
concern this feature. It has now been implemented and works for both standard runs and MTP runs.

### Enhancements

* [1426](https://github.com/nunit/nunit3-vs-adapter/issues/1426) [MTP] --list-tests does not respect --filter, fixed in [PR 1427](https://github.com/nunit/nunit3-vs-adapter/pull/1427)
* [1227](https://github.com/nunit/nunit3-vs-adapter/issues/1227) Listing the discovered tests doesn't respect the filter, fixed in [PR 1427](https://github.com/nunit/nunit3-vs-adapter/pull/1427)
* [438](https://github.com/nunit/nunit3-vs-adapter/issues/438) vstest.console's `--TestCaseFilter` is ignored when listing tests, fixed in [PR 1427](https://github.com/nunit/nunit3-vs-adapter/pull/1427)

### Bug fixes

* [1400](https://github.com/nunit/nunit3-vs-adapter/issues/1400) NUnit3TestAdapter 6.1.0 copies unwanted version of Microsoft.Extensions.DependencyModel.dll into output, fixed in [PR 1401](https://github.com/nunit/nunit3-vs-adapter/pull/1401)
* [1398](https://github.com/nunit/nunit3-vs-adapter/issues/1398) NUnit3TestAdapter >= 6.0.1 requires pinning Microsoft.Extensions.DependencyModel when using Microsoft.Testing.Extensions.CodeCoverage, fixed in [PR 1401](https://github.com/nunit/nunit3-vs-adapter/pull/1401)
* [1396](https://github.com/nunit/nunit3-vs-adapter/issues/1396) ReSharper test runner fails with NUnit3TestAdapter 6.0.1, fixed in [PR 1401](https://github.com/nunit/nunit3-vs-adapter/pull/1401)
* [1361](https://github.com/nunit/nunit3-vs-adapter/issues/1361) `dotnet test` using MTP with NUnit3TestAdapter cannot be cancelled on the CLI, fixed in [PR 1412](https://github.com/nunit/nunit3-vs-adapter/pull/1412)

### Refactorings

* [1386](https://github.com/nunit/nunit3-vs-adapter/issues/1386) Get rid of assembly refs, use package refs, fixed in [PR 1401](https://github.com/nunit/nunit3-vs-adapter/pull/1401)

### Internal fixes

None

### Deprecated features

None

### The following issues are marked as breaking changes

None

### Acknowledgements

We want to express our heartfelt gratitude to everyone who has contributed to this release
by reporting bugs, suggesting enhancements, and providing valuable feedback.
Your efforts help make NUnit better for the entire community.

A special thank you to the following reporters for identifying issues:

<table>
<tr>
<td><a href="https://github.com/bradford-fisher">Bradford Fisher</a></td>
<td><a href="https://github.com/davidbarrowsatasos">David Barrows</a></td>
<td><a href="https://github.com/julealgon">Juliano Leal Goncalves</a></td>
<td><a href="https://github.com/Lexy2">Lexy</a></td>
</tr>
<tr>
<td><a href="https://github.com/BrightLight">Markus Hastreiter</a></td>
<td><a href="https://github.com/siegfriedpammer">Siegfried Pammer</a></td>
<td><a href="https://github.com/starosta33">starosta33</a></td>
<td><a href="https://github.com/OsirisTerje">Terje Sandstrom</a></td>
</tr>
</table>

and to the commenters who engaged in discussions and offered further insights:

<table>
<tr>
<td><a href="https://github.com/andrewimcclement">andrewimcclement</a></td>
<td><a href="https://github.com/bradford-fisher">Bradford Fisher</a></td>
<td><a href="https://github.com/CharliePoole">CharliePoole</a></td>
<td><a href="https://github.com/Youssef1313">Youssef Victor</a></td>
</tr>
<tr>
<td><a href="https://github.com/ds-ms2soft">Dave Sweeton</a></td>
<td><a href="https://github.com/davidbarrowsatasos">David Barrows</a></td>
<td><a href="https://github.com/julealgon">Juliano Leal Goncalves</a></td>
<td><a href="https://github.com/MaceWindu">MaceWindu</a></td>
</tr>
<tr>
<td><a href="https://github.com/manfred-brands">Manfred Brands</a></td>
<td><a href="https://github.com/siegfriedpammer">Siegfried Pammer</a></td>
<td><a href="https://github.com/stevenaw">Steven Weerdenburg</a></td>
<td><a href="https://github.com/OsirisTerje">Terje Sandstrom</a></td>
</tr>
<tr>
<td><a href="https://github.com/thomasdgx">thomasdgx</a></td>
</tr>
</table>

## NUnit3 Test Adapter for Visual Studio and Dotnet - Version 6.1.0 - January 7, 2026

This is a bug-fix release that addresses a series of issues related to assembly loading.
Expand Down
Loading