Skip to content

Bump xunit.v3.extensibility.core from 4.0.0-pre.81 to 4.0.0 - #17400

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/xunit.v3.extensibility.core-4.0.0
Open

Bump xunit.v3.extensibility.core from 4.0.0-pre.81 to 4.0.0#17400
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/xunit.v3.extensibility.core-4.0.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 24, 2026

Copy link
Copy Markdown
Contributor

Updated xunit.v3.extensibility.core from 4.0.0-pre.81 to 4.0.0.

Release notes

Sourced from xunit.v3.extensibility.core's releases.

No release notes found for this version range.

Commits viewable in compare view.

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

---
updated-dependencies:
- dependency-name: xunit.v3.extensibility.core
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Aug 24, 2026
@github-actions

Copy link
Copy Markdown
Contributor

🔴 Build Failure Analysis

Both build legs fail (Linux/Debug and Windows/Release) with the same root cause:

Error

CS0535: 'SkippedFactTestCase' does not implement interface member
'ISelfExecutingXunitTestCase.Run(ExplicitOption, IMessageBus, object?[],
ExceptionAggregator, CancellationTokenSource, ParallelMode, ExecutionScheduler, FixtureMappingManager)'

File: src/Microsoft.DotNet.XUnitExtensions.Shared/SkippedFactTestCase.cs, line 20
Project: Microsoft.DotNet.XUnitV3Extensions

Root Cause

xunit.v3.extensibility.core 4.0.0 (stable) changed the ISelfExecutingXunitTestCase interface relative to the pre-release 4.0.0-pre.81. Three new parameters were added to Run(...):

Old (pre.81) New (4.0.0)
Run(ExplicitOption, IMessageBus, object[], ExceptionAggregator, CancellationTokenSource) Run(ExplicitOption, IMessageBus, object?[], ExceptionAggregator, CancellationTokenSource, **ParallelMode**, **ExecutionScheduler**, **FixtureMappingManager**)

XunitRunnerHelper.RunXunitTestCase also now requires these extra parameters.

Required Fix in SkippedFactTestCase.cs

Two changes under #if USES_XUNIT_3:

1. Update the method signature (line ~53):

// Before
public async ValueTask<RunSummary> Run(ExplicitOption explicitOption, IMessageBus messageBus, object[] constructorArguments, ExceptionAggregator aggregator, CancellationTokenSource cancellationTokenSource)

// After
public async ValueTask<RunSummary> Run(ExplicitOption explicitOption, IMessageBus messageBus, object?[] constructorArguments, ExceptionAggregator aggregator, CancellationTokenSource cancellationTokenSource, ParallelMode parallelMode, ExecutionScheduler scheduler, FixtureMappingManager methodFixtureMappings)

2. Update the XunitRunnerHelper.RunXunitTestCase call (line ~58):

// Before
var result = await XunitRunnerHelper.RunXunitTestCase(this, skipMessageBus, cancellationTokenSource, aggregator, explicitOption, constructorArguments);

// After
var result = await XunitRunnerHelper.RunXunitTestCase(this, skipMessageBus, cancellationTokenSource, parallelMode, scheduler, aggregator, explicitOption, constructorArguments, methodFixtureMappings);

The new parameter order for RunXunitTestCase was confirmed from the xunit source at tag 4.0.0.

🤖 Automated content by GitHub Copilot. Generated by the Build Failure Analysis workflow.{ai_credits_suffix} · [◷]( · )

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Automated content by GitHub Copilot. Generated by the Build Failure Analysis workflow.{ai_credits_suffix} ·

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants