-
Notifications
You must be signed in to change notification settings - Fork 59
Bump xunit.v3 from 3.2.2 to 4.0.1 #564
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,7 +24,7 @@ | |
| <PackageVersion Include="Microsoft.Bcl.Memory" Version="10.0.12" /> | ||
| <PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.10.0" /> | ||
| <PackageVersion Include="Validation" Version="2.6.68" /> | ||
| <PackageVersion Include="xunit.v3" Version="3.2.2" /> | ||
| <PackageVersion Include="xunit.v3" Version="4.0.1" /> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. MTP v2 breaks VSTest CI runsHigh Severity
Additional Locations (1)Reviewed by Cursor Bugbot for commit 3b782c7. Configure here. |
||
| <PackageVersion Include="xunit.v3.runner.console" Version="3.0.0" /> | ||
| <PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" /> | ||
| </ItemGroup> | ||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This moves the test host to Microsoft.Testing.Platform v2 while both test projects still reference GitHubActionsTestLogger 2.4.1, which belongs to the MTP-v1 stack. The repository explicitly documents in
.github/dependabot.ymlthat logger 3.x is the MTP-v2-compatible generation and should be revisited when upgrading to xunit.v3 4.x; leaving the logger pinned and ignored can prevent it from loading when the integration workflows rundotnet test ... --logger GitHubActions. Update the logger to its compatible 3.x version and remove the stale Dependabot exclusion as part of this migration.Useful? React with 👍 / 👎.