Skip to content

chore: Bump the tunit group with 2 updates#785

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/tunit-b7af1a17f4
Closed

chore: Bump the tunit group with 2 updates#785
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/tunit-b7af1a17f4

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Sep 15, 2025

Updated TUnit from 0.25.21 to 0.57.65.

Release notes

Sourced from TUnit's releases.

0.57.65

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.57.63...v0.57.65

0.57.63

What's Changed

🏕 Changes

👒 Dependencies

New Contributors

Full Changelog: thomhurst/TUnit@v0.57.24...v0.57.63

0.57.24

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.57.1...v0.57.24

0.57.1

What's Changed

🏕 Changes

Full Changelog: thomhurst/TUnit@v0.57.0...v0.57.1

0.57.0

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.56.50...v0.57.0

0.56.50

What's Changed

🏕 Changes

👒 Dependencies

New Contributors

Full Changelog: thomhurst/TUnit@v0.56.44...v0.56.50

0.56.44

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.56.35...v0.56.44

0.56.35

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.56.5...v0.56.35

0.56.5

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.55.23...v0.56.5

0.55.23

What's Changed

🏕 Changes

Full Changelog: thomhurst/TUnit@v0.55.21...v0.55.23

0.55.21

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.55.6...v0.55.21

0.55.6

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.55.0...v0.55.6

0.55.0

What's Changed

🏕 Changes

👒 Dependencies

New Contributors

Full Changelog: thomhurst/TUnit@v0.53.0...v0.55.0

0.53.0

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.52.64...v0.53.0

0.52.64

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.52.60...v0.52.64

0.52.60

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.52.56...v0.52.60

0.52.56

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.52.51...v0.52.56

0.52.51

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.52.49...v0.52.51

0.52.49

What's Changed

🏕 Changes

Full Changelog: thomhurst/TUnit@v0.52.47...v0.52.49

0.52.47

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.52.30...v0.52.47

0.52.30

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.52.25...v0.52.30

0.52.25

What's Changed

🏕 Changes

Full Changelog: thomhurst/TUnit@v0.52.24...v0.52.25

0.52.24

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.52.22...v0.52.24

0.52.22

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.52.8...v0.52.22

0.52.8

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.52.0...v0.52.8

0.52.0

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.50.0...v0.52.0

0.50.0

Apologies for the delay. This PR has taken a lot longer than anticipated.

It involves a lot of refactoring and rewriting of some core logic. So if I've knocked anything out, apologies, and raise an issue with a reproduceable example please!

There are a bunch of breaking changes in this release, so apologies in advance!
These include:

  • Needing to amend signatures for custom data source attributes
  • The SourceGenerated[Type]Information types have been renamed to [Type]Metadata.

This change does include some new features for any advanced users.

  • Improved automatic object lifecycle tracking.

  • A new Priority attribute, to prioritise running certain tests first. This can be combined with --fail-fast to terminate test runs quicker on failures.

  • One is Asynchronous data sources! I'd advise to be careful with these, as they could dramatically slow down discovery. But you can now use asynchronous APIs to generate data sources for your tests.

  • And the one I'm excited about most, is nested property injection (with initialization). This can allow for some advanced test orchestration with relatively simple code, and TUnit will handle all the advanced bits for you like initialization and object lifetimes!

Here's some pseudo-code:

public class InMemorySql : IAsyncInitializer, IAsyncDisposable
{
    public async Task InitializeAsync()
    {
        await Container.StartAsync();
    }

    public async ValueTask DisposeAsync()
    {
        await Container.DisposeAsync();
    }
}

public class InMemoryRedis : IAsyncInitializer, IAsyncDisposable
{
    public async Task InitializeAsync()
    {
        await Container.StartAsync();
    }

    public async ValueTask DisposeAsync()
    {
        await Container.DisposeAsync();
    }
}

public class InMemoryMessageBus : IAsyncInitializer, IAsyncDisposable
{
 ... (truncated)

Commits viewable in [compare view](https://github.com/thomhurst/TUnit/compare/v0.25.21...v0.57.65).
</details>

Updated [TUnit.Assertions](https://github.com/thomhurst/TUnit) from 0.25.21 to 0.57.65.

<details>
<summary>Release notes</summary>

_Sourced from [TUnit.Assertions's releases](https://github.com/thomhurst/TUnit/releases)._

## 0.57.65

<!-- Release notes generated using configuration in .github/release.yml at v0.57.65 -->

## What's Changed
### 🏕 Changes
* fix: filter unique classes to include only those with properties by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3086
### 👒 Dependencies
* chore(deps): update tunit to 0.57.63 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3083


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.57.63...v0.57.65

## 0.57.63

<!-- Release notes generated using configuration in .github/release.yml at v0.57.63 -->

## What's Changed
### 🏕 Changes
* Enhance engine modes documentation with Reflection mode details by @​AdmiralSnyder in https://github.com/thomhurst/TUnit/pull/3030
* Fix "Test instance is null" error for empty InstanceMethodDataSource by @​Copilot in https://github.com/thomhurst/TUnit/pull/2863
* Fix InheritsTests source location to show actual test method location by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3061
* docs: Update docs on how to call the TestContext Default logger by @​stigrune in https://github.com/thomhurst/TUnit/pull/3058
* Enable `IClassConstructor` instances to subscribe to test events by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3080
* Detect injected properties in base classes by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3081
### 👒 Dependencies
* chore(deps): update dependency verify to 30.9.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3016
* chore(deps): update tunit to 0.57.24 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3018
* chore(deps): update dependency verify.nunit to 30.10.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3020
* chore(deps): update dependency verify to 30.10.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3019
* chore(deps): update microsoft.testing to 1.8.4 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3028
* chore(deps): update mstest to 3.10.4 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3029
* chore(deps): update dependency microsoft.extensions.servicediscovery to 9.4.2 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3033
* chore(deps): update aspire to 9.4.2 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3032
* chore(deps): update actions/setup-dotnet action to v5 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3036
* chore(deps): update dependency polyfill to 8.8.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3037
* chore(deps): update dependency polyfill to 8.8.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3038
* chore(deps): update actions/setup-node action to v5 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3040
* chore(deps): update actions/stale action to v10 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3041
* chore(deps): update actions/github-script action to v8 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3043
* chore(deps): update dependency microsoft.playwright to 1.55.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3042
* chore(deps): update dependency verify.nunit to 30.11.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3050
* chore(deps): update dependency verify to 30.11.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3049
* chore(deps): update dependency microsoft.extensions.dependencyinjection to 9.0.9 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3065
* chore(deps): update dependency microsoft.templateengine.authoring.cli to v9.0.305 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3066
* chore(deps): update dependency microsoft.entityframeworkcore to 9.0.9 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3068
* chore(deps): update dependency microsoft.templateengine.authoring.templateverifier to 9.0.305 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3069
* chore(deps): update microsoft.aspnetcore to 9.0.9 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3071
* chore(deps): update dependency system.commandline to 2.0.0-rc.1.25451.107 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3070
* chore(deps): update dependency dotnet-sdk to v9.0.305 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3075
* chore(deps): update dependency microsoft.extensions.http.resilience to 9.9.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3076

## New Contributors
* @​AdmiralSnyder made their first contribution in https://github.com/thomhurst/TUnit/pull/3030
* @​stigrune made their first contribution in https://github.com/thomhurst/TUnit/pull/3058

**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.57.24...v0.57.63

## 0.57.24

<!-- Release notes generated using configuration in .github/release.yml at v0.57.24 -->

## What's Changed
### 🏕 Changes
* Fix IAsyncEnumerable detection in MethodDataSource source generator by @​Copilot in https://github.com/thomhurst/TUnit/pull/2991
* Ensure NotInParallel tests don't run alongside any others by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3015
### 👒 Dependencies
* chore(deps): update tunit to 0.57.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2982
* chore(deps): update tunit to 0.57.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2983
* chore(deps): update dependency polly to 8.6.3 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2988
* chore(deps): update microsoft.testing to 1.8.3 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2998
* chore(deps): update mstest to 3.10.3 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2999
* chore(deps): update dependency testcontainers.postgresql to 4.7.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3005
* chore(deps): update dependency testcontainers.redis to 4.7.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3006
* chore(deps): update dependency testcontainers.kafka to 4.7.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3004
* chore(deps): update dependency verify.nunit to 30.8.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3010
* chore(deps): update dependency verify to 30.8.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3009
* chore(deps): update dependency @​mdx-js/react to v3.1.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3011
* chore(deps): update dependency verify.nunit to 30.9.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3017


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.57.1...v0.57.24

## 0.57.1

<!-- Release notes generated using configuration in .github/release.yml at v0.57.1 -->

## What's Changed
### 🏕 Changes
* Add Browser platform support to OS enum and RunOn/ExcludeOn attributes with WebAssembly compatibility fixes by @​Copilot in https://github.com/thomhurst/TUnit/pull/2965


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.57.0...v0.57.1

## 0.57.0

<!-- Release notes generated using configuration in .github/release.yml at v0.57.0 -->

## What's Changed
### 🏕 Changes
* Fix analyzer to skip required keyword enforcement for Attribute class properties by @​Copilot in https://github.com/thomhurst/TUnit/pull/2981
* Fix open generic type generation causing compilation errors in assembly attributes by @​Copilot in https://github.com/thomhurst/TUnit/pull/2973
* Fix shared instance disposal using ObjectTracker reference counting at registration time by @​Copilot in https://github.com/thomhurst/TUnit/pull/2977
### 👒 Dependencies
* chore(deps): update tunit to 0.56.50 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2966


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.56.50...v0.57.0

## 0.56.50

<!-- Release notes generated using configuration in .github/release.yml at v0.56.50 -->

## What's Changed
### 🏕 Changes
* Fix explicit tests not being discovered by IDEs by @​Copilot in https://github.com/thomhurst/TUnit/pull/2947
* fix typos in docs by @​lxymahatma in https://github.com/thomhurst/TUnit/pull/2957
* Fix floating point arguments being parsed as multiple parameters due to culture-specific formatting by @​Copilot in https://github.com/thomhurst/TUnit/pull/2962
### 👒 Dependencies
* chore(deps): update tunit to 0.56.44 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2945

## New Contributors
* @​lxymahatma made their first contribution in https://github.com/thomhurst/TUnit/pull/2957

**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.56.44...v0.56.50

## 0.56.44

<!-- Release notes generated using configuration in .github/release.yml at v0.56.44 -->

## What's Changed
### 🏕 Changes
* Fix test discovery intermittent hanging issues in reflection mode by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2932
* Fix SkipTestException handling to properly mark tests as skipped by @​Copilot in https://github.com/thomhurst/TUnit/pull/2907
* Fix generic inheritance dependency matching for DependsOn attributes by @​Copilot in https://github.com/thomhurst/TUnit/pull/2899
* Fix disposal issue: ensure TestContext OnDispose events are triggered after test completion by @​Copilot in https://github.com/thomhurst/TUnit/pull/2925
* Fix deadlock in BufferedTextWriter caused by nested locking by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2944
* Fix first event receiver thread safety using GetOnlyDictionary + Task pattern by @​Copilot in https://github.com/thomhurst/TUnit/pull/2917
### 👒 Dependencies
* chore(deps): update tunit to 0.56.35 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2937
* chore(deps): update dependency dotnet-sdk to v9.0.304 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2940


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.56.35...v0.56.44

## 0.56.35

<!-- Release notes generated using configuration in .github/release.yml at v0.56.35 -->

## What's Changed
### 🏕 Changes
* Fix disposal leak in skipped tests when constructor has run by @​Copilot in https://github.com/thomhurst/TUnit/pull/2896
* Fix assembly names with dashes in Before(Assembly) hooks source generation by @​Copilot in https://github.com/thomhurst/TUnit/pull/2920
* Fix: Allow compiler-generated types with test methods in reflection mode by @​Copilot in https://github.com/thomhurst/TUnit/pull/2909
* Add test to verify correct hook execution order (BeforeEvery before Before) by @​Copilot in https://github.com/thomhurst/TUnit/pull/2718
* feat: enhance test filtering to handle explicit tests by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2766
* Fix documentation: Replace non-existent DataSourceGeneratorProperty with ClassDataSource<T> by @​Copilot in https://github.com/thomhurst/TUnit/pull/2929
* Fix dependency injection scope sharing between test executions by @​Copilot in https://github.com/thomhurst/TUnit/pull/2931
* Fix hooks not properly awaiting in generic classes by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2936
### 👒 Dependencies
* chore(deps): update dependency verify to 30.7.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2901
* chore(deps): update tunit to 0.56.5 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2913
* chore(deps): update dependency verify to 30.7.2 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2915
* chore(deps): update dependency verify.nunit to 30.7.2 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2914
* chore(deps): update dependency polyfill to 8.8.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2922
* chore(deps): update dependency polyfill to 8.8.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2921
* chore(deps): Bump brace-expansion from 1.1.11 to 1.1.12 in /docs by @​dependabot[bot] in https://github.com/thomhurst/TUnit/pull/2636
* chore(deps): update dependency xunit.v3.assert to 3.0.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2924
* chore(deps): update dependency xunit.runner.visualstudio to 3.1.4 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2923
* chore(deps): update dependency xunit.v3.extensibility.core to 3.0.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2926
* chore(deps): update dependency verify.nunit to 30.7.3 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2934
* chore(deps): update dependency verify to 30.7.3 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2933


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.56.5...v0.56.35

## 0.56.5

<!-- Release notes generated using configuration in .github/release.yml at v0.56.5 -->

## What's Changed
### 🏕 Changes
* Fix source generation for async tests inherited from external assemblies by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2895
* Add timeout functionality for hooks with 5-minute default timeout by @​Copilot in https://github.com/thomhurst/TUnit/pull/2891
* Fix critical hanging bug caused by duplicate static property initialization by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2903
* Worker pattern for maximum-parallel-limit by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2910
### 👒 Dependencies
* chore(deps): update tunit to 0.55.21 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2889
* chore(deps): update tunit to 0.55.23 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2892
* chore(deps): update microsoft.extensions by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2883
* chore(deps): update dependency verify.nunit to 30.7.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2902


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.55.23...v0.56.5

## 0.55.23

<!-- Release notes generated using configuration in .github/release.yml at v0.55.23 -->

## What's Changed
### 🏕 Changes
* Fix abstract class constructor processing in hook metadata generation by @​Copilot in https://github.com/thomhurst/TUnit/pull/2888
* Fix inherited test categories issue in source generation mode by @​Copilot in https://github.com/thomhurst/TUnit/pull/2881


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.55.21...v0.55.23

## 0.55.21

<!-- Release notes generated using configuration in .github/release.yml at v0.55.21 -->

## What's Changed
### 🏕 Changes
* Fix DisplayName parameter substitution for prefixed variable names by @​Copilot in https://github.com/thomhurst/TUnit/pull/2886
* Fix race condition in pure reference counting object disposal system by @​Copilot in https://github.com/thomhurst/TUnit/pull/2868
* Add analyzer warning for test method with tuple parameter and tuple data source mismatch by @​Copilot in https://github.com/thomhurst/TUnit/pull/2864
### 👒 Dependencies
* chore(deps): update tunit to 0.55.6 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2875
* chore(deps): update mstest to 3.10.2 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2877
* chore(deps): update microsoft.testing to 1.8.2 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2876
* chore(deps): update dependency system.commandline to 2.0.0-beta7.25380.108 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2879
* chore(deps): update dependency vogen to v8 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2878
* chore(deps): update aspire to 9.4.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2882


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.55.6...v0.55.21

## 0.55.6

<!-- Release notes generated using configuration in .github/release.yml at v0.55.6 -->

## What's Changed
### 🏕 Changes
* Improve test parallelism  by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2872
### 👒 Dependencies
* chore(deps): update tunit to 0.55.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2869
* chore(deps): update dependency enumerableasyncprocessor to 3.8.2 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2870


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.55.0...v0.55.6

## 0.55.0

<!-- Release notes generated using configuration in .github/release.yml at v0.55.0 -->

## What's Changed
### 🏕 Changes
* IAsyncEnumerable streaming throughout test lifecycle - Discovery > Build > Execute by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2821
* Upgrade to System.CommandLine 2.0.0-beta5 by @​slang25 in https://github.com/thomhurst/TUnit/pull/2629
* Use MSBuild version comparison functions instead of numerical comparisons by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2843
* Global After/AfterEvery hooks not executing by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2842
* TUnit Documentation Site Styling by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2852
* Fix VSCode test discovery: Add missing MSBuild properties for editor gutter integration by @​Copilot in https://github.com/thomhurst/TUnit/pull/2858
* Fix mobile view issues in documentation site by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2861
* Fix AotTypeResolver generation for non-generic types like System.Type by @​Copilot in https://github.com/thomhurst/TUnit/pull/2866
* More performance tweaks by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2839
### 👒 Dependencies
* chore(deps): update tunit to 0.53.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2837
* chore(deps): update dependency enumerableasyncprocessor to 3.1.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2838
* chore(deps): update dependency enumerableasyncprocessor to 3.3.3 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2840
* chore(deps): update modularpipelines to 2.46.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2841
* chore(deps): update dependency nunit.analyzers to 4.10.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2846
* chore(deps): update modularpipelines to 2.47.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2845
* chore(deps): update dependency nunit3testadapter to 5.1.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2848
* chore(deps): update dependency enumerableasyncprocessor to 3.5.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2850
* chore(deps): update dependency enumerableasyncprocessor to 3.6.3 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2851
* chore(deps): update dependency nunit to 4.4.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2849
* chore(deps): update modularpipelines to 2.47.8 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2853
* chore(deps): update actions/checkout action to v5 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2859

## New Contributors
* @​slang25 made their first contribution in https://github.com/thomhurst/TUnit/pull/2629

**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.53.0...v0.55.0

## 0.53.0

<!-- Release notes generated using configuration in .github/release.yml at v0.53.0 -->

## What's Changed
### 🏕 Changes
* Implement CommandLogging-based output suppression for ModularPipelines DotNet operations by @​Copilot in https://github.com/thomhurst/TUnit/pull/2832
* Simplify TestScheduler by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2825
### 👒 Dependencies
* chore(deps): update tunit to 0.52.64 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2830
* chore(deps): update dependency verify to 30.6.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2834
* chore(deps): update dependency verify.nunit to 30.6.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2835


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.52.64...v0.53.0

## 0.52.64

<!-- Release notes generated using configuration in .github/release.yml at v0.52.64 -->

## What's Changed
### 🏕 Changes
* Add support for ExpandValueTuple in SymbolDisplayFormat for Roslyn 4.7+ by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2827
### 👒 Dependencies
* chore(deps): update dependency node to v22 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2826
* chore(deps): update dependency enumerableasyncprocessor to 3.0.2 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2828
* chore(deps): update tunit to 0.52.60 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2829


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.52.60...v0.52.64

## 0.52.60

<!-- Release notes generated using configuration in .github/release.yml at v0.52.60 -->

## What's Changed
### 🏕 Changes
* Fix File Paths in the Source Generator by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2823
### 👒 Dependencies
* chore(deps): update tunit to 0.52.56 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2820
* chore(deps): update dependency enumerableasyncprocessor to v3 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2822
* chore(deps): update dependency enumerableasyncprocessor to 3.0.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2824


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.52.56...v0.52.60

## 0.52.56

<!-- Release notes generated using configuration in .github/release.yml at v0.52.56 -->

## What's Changed
### 🏕 Changes
* Fix data and properties being injected/initialised too eagerly  by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2818
### 👒 Dependencies
* chore(deps): update dependency verify to 30.6.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2815
* chore(deps): update dependency verify.nunit to 30.6.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2816
* chore(deps): update tunit to 0.52.51 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2817


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.52.51...v0.52.56

## 0.52.51

<!-- Release notes generated using configuration in .github/release.yml at v0.52.51 -->

## What's Changed
### 🏕 Changes
* Fix missing namespace issues in TestMetadataGenerator generated code by @​Copilot in https://github.com/thomhurst/TUnit/pull/2814
### 👒 Dependencies
* chore(deps): update tunit to 0.52.49 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2812


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.52.49...v0.52.51

## 0.52.49

<!-- Release notes generated using configuration in .github/release.yml at v0.52.49 -->

## What's Changed
### 🏕 Changes
* Fix source generated code indentation by properly handling CodeWriter initialization and multi-line object assignments by @​Copilot in https://github.com/thomhurst/TUnit/pull/2807
* feat: Add parallel initialization for injected properties at the same level by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2811


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.52.47...v0.52.49

## 0.52.47

<!-- Release notes generated using configuration in .github/release.yml at v0.52.47 -->

## What's Changed
### 🏕 Changes
* Allow DisplayNameAttribute on classes with parameter substitution support by @​Copilot in https://github.com/thomhurst/TUnit/pull/2705
* Make MappableResultAssertionBuilder constructors public for third-party extensibility by @​Copilot in https://github.com/thomhurst/TUnit/pull/2719
* Fix params array argument handling in source generator by @​Copilot in https://github.com/thomhurst/TUnit/pull/2789
* Tidy up analyzer releases: improve organization, documentation, and merge main branch by @​Copilot in https://github.com/thomhurst/TUnit/pull/2712
* Add support for TUNIT_DISABLE_GITHUB_REPORTER environment variable by @​Copilot in https://github.com/thomhurst/TUnit/pull/2716
* Fix TUnit0001 analyzer to use ITypedDataSourceAttribute interface detection by @​Copilot in https://github.com/thomhurst/TUnit/pull/2803
* Fix DependsOn tests to be skipped instead of failed when dependencies fail by @​Copilot in https://github.com/thomhurst/TUnit/pull/2706
* Fix missing --detailed-stacktrace option since v0.50.0 by @​Copilot in https://github.com/thomhurst/TUnit/pull/2808
### 👒 Dependencies
* chore(deps): update microsoft.testing to 1.8.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2690
* chore(deps): update tunit to 0.52.30 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2802


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.52.30...v0.52.47

## 0.52.30

<!-- Release notes generated using configuration in .github/release.yml at v0.52.30 -->

## What's Changed
### 🏕 Changes
* Fully qualify more types in source generated code to avoid namespace clashes by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2797
* Fix TestContext.Configuration by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2796
### 👒 Dependencies
* chore(deps): update tunit to 0.52.24 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2793
* chore(deps): update tunit to 0.52.25 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2795
* chore(deps): update dependency dotnet-sdk to v9.0.304 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2788


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.52.25...v0.52.30

## 0.52.25

<!-- Release notes generated using configuration in .github/release.yml at v0.52.25 -->

## What's Changed
### 🏕 Changes
* Fix NotInParallel Order property not being respected for class-level attributes by @​Copilot in https://github.com/thomhurst/TUnit/pull/2790


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.52.24...v0.52.25

## 0.52.24

<!-- Release notes generated using configuration in .github/release.yml at v0.52.24 -->

## What's Changed
### 🏕 Changes
* Adaptive Parallelism Algorithm by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2792
### 👒 Dependencies
* chore(deps): update tunit to 0.52.22 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2791


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.52.22...v0.52.24

## 0.52.22

<!-- Release notes generated using configuration in .github/release.yml at v0.52.22 -->

## What's Changed
### 🏕 Changes
* Enhance polyfill support for various target frameworks by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2781
* Performance Tweaks by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2787
### 👒 Dependencies
* chore(deps): update dependency verify to 30.5.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2714
* chore(deps): update dependency system.threading.channels to 9.0.8 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2713
* chore(deps): update dependency microsoft.extensions.dependencyinjection to 9.0.8 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2763
* chore(deps): update dependency microsoft.templateengine.authoring.templateverifier to 9.0.304 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2770
* chore(deps): update dependency microsoft.templateengine.authoring.cli to 9.0.304 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2769
* chore(deps): update dependency system.collections.immutable to 9.0.8 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2771
* chore(deps): update dependency system.text.json to 9.0.8 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2772
* chore(deps): update microsoft.aspnetcore to 9.0.8 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2773
* chore(deps): update mstest to 3.10.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2774
* chore(deps): update tunit to 0.52.8 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2775


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.52.8...v0.52.22

## 0.52.8

<!-- Release notes generated using configuration in .github/release.yml at v0.52.8 -->

## What's Changed
### 🏕 Changes
* Fix bug with nested property injection and data source caching by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2768
### 👒 Dependencies
* chore(deps): update dependency fsharp.core to 9.0.303 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2760
* chore(deps): update dependency dotnet-sdk to v9.0.304 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2721
* chore(deps): update dependency microsoft.bcl.asyncinterfaces to 9.0.8 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2761
* chore(deps): update dependency microsoft.entityframeworkcore to 9.0.8 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2762
* chore(deps): update dependency polyfill to 8.7.4 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2557


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.52.0...v0.52.8

## 0.52.0

<!-- Release notes generated using configuration in .github/release.yml at v0.52.0 -->

## What's Changed
### 🏕 Changes
* Documentation Updates by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2720
* Add Claude Code GitHub Workflow by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2725
* Fix AssemblyLoaderGenerator to only emit code for assemblies with physical locations by @​Copilot in https://github.com/thomhurst/TUnit/pull/2727
* Fix MatrixExclusion inheritance and enum comparison for custom exclusion attributes by @​Copilot in https://github.com/thomhurst/TUnit/pull/2707
* Fix .NET Framework compatibility: Replace CancelAsync() with Cancel() by @​Copilot in https://github.com/thomhurst/TUnit/pull/2730
* Fix cancellation cleanup: ensure After hooks execute when test run is cancelled by @​Copilot in https://github.com/thomhurst/TUnit/pull/2732
* Updated File Based Application documentation to include MSBuild Props instructions by @​licon4812 in https://github.com/thomhurst/TUnit/pull/2733
* feat: add DisableLogoCommandProvider by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2736
* Move Throws assertions to TUnit.Assertions.Extensions namespace for consistent implicit usings by @​Copilot in https://github.com/thomhurst/TUnit/pull/2724
* Guarantee before hooks execute bottom-up and after hooks execute top-down by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2742
* Avoid swallowing hook exceptions by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2743
* feat: improve error handling in setup methods for Browser, Context, and Page for TUnit.Playwright by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2746
* Fix skipped tests executing constructors by using placeholder instance by @​Copilot in https://github.com/thomhurst/TUnit/pull/2723
* Fix: Enable Polyfill package by default for netstandard2.0 in TUnit.Core by @​Copilot in https://github.com/thomhurst/TUnit/pull/2745
* Add a more complex test orchestration example in the Asp.Net template by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2748
* fix: Before(TestSession) ignores HookExecutor by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2751
* Make sure ALL types in source generated code are globally qualified to avoid namespace clashes by @​Copilot in https://github.com/thomhurst/TUnit/pull/2753
* Fix generic implicit operators compilation error in AotConverterGenerator by @​Copilot in https://github.com/thomhurst/TUnit/pull/2758
* Simplify Test and Dependency Scheduling by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2759
...

_Description has been truncated_

Dependabot will resolve any conflicts with this PR as lo...

_Description has been truncated_

Bumps TUnit from 0.25.21 to 0.57.65
Bumps TUnit.Assertions from 0.25.21 to 0.57.65

---
updated-dependencies:
- dependency-name: TUnit
  dependency-version: 0.57.65
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tunit
- dependency-name: TUnit.Assertions
  dependency-version: 0.57.65
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tunit
...

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 Sep 15, 2025
@github-actions
Copy link
Copy Markdown
Contributor

Test Results

    14 files   - 24      14 suites   - 24   6m 24s ⏱️ + 2m 34s
17 864 tests  - 27  17 862 ✅  - 27  2 💤 ±0  0 ❌ ±0 
50 256 runs   - 72  50 254 ✅  - 72  2 💤 ±0  0 ❌ ±0 

Results for commit 863b0bc. ± Comparison against base commit 904d8ac.

This pull request removes 1570 and adds 1543 tests. Note that renamed tests count towards both.
aweXpect.Core.Tests.Core.Exceptions.FailExceptionTests ‑ Message_ShouldBeSet(message: "message0e436b97-d007-438b-a2ab-3aa52f96f1d9")
aweXpect.Core.Tests.Core.Exceptions.FailExceptionTests ‑ Message_ShouldBeSet(message: "message106fac2a-274f-4ff1-93d1-d183749f0389")
aweXpect.Core.Tests.Core.Exceptions.FailExceptionTests ‑ Message_ShouldBeSet(message: "message5794f112-60a3-4ccc-ac17-d6ae118ab837")
aweXpect.Core.Tests.Core.Exceptions.SkipExceptionTests ‑ Message_ShouldBeSet(message: "message0829ea50-7afe-4c0a-9da4-606e3613bf7e")
aweXpect.Core.Tests.Core.Exceptions.SkipExceptionTests ‑ Message_ShouldBeSet(message: "message2c6902db-3c44-4ed7-8622-c9756f379bb0")
aweXpect.Core.Tests.Core.Exceptions.SkipExceptionTests ‑ Message_ShouldBeSet(message: "message36e7432d-18d4-4eeb-8517-962eb4d42a84")
aweXpect.Core.Tests.FailTests ‑ Test_ShouldThrowException(reason: "reason00e4c91b-f5a3-47ff-8f0c-e84ca618a5db")
aweXpect.Core.Tests.FailTests ‑ Test_ShouldThrowException(reason: "reasonb1c6d765-6af7-4639-b133-d74b4ca78fa7")
aweXpect.Core.Tests.FailTests ‑ Test_ShouldThrowException(reason: "reasonecabc43a-5e03-4da6-968b-41f4f1f72a0c")
aweXpect.Core.Tests.FailTests ‑ Unless_ShouldThrowException(condition: False, reason: "reason62341b8e-85a4-490d-a431-b277816b20a0")
…
aweXpect.Core.Tests.Core.Exceptions.FailExceptionTests ‑ Message_ShouldBeSet(message: "message3b750328-315d-49fe-91f3-52b4ca9084e6")
aweXpect.Core.Tests.Core.Exceptions.FailExceptionTests ‑ Message_ShouldBeSet(message: "message58d405e9-da2e-48c1-812e-f9036c730914")
aweXpect.Core.Tests.Core.Exceptions.FailExceptionTests ‑ Message_ShouldBeSet(message: "message7cc5e97e-b658-422d-bebb-ed115c5aea0a")
aweXpect.Core.Tests.Core.Exceptions.SkipExceptionTests ‑ Message_ShouldBeSet(message: "message328b839c-2c89-4840-99f0-deed92799fa4")
aweXpect.Core.Tests.Core.Exceptions.SkipExceptionTests ‑ Message_ShouldBeSet(message: "message4bb27711-34e2-4be4-a9cf-62ba71e77e96")
aweXpect.Core.Tests.Core.Exceptions.SkipExceptionTests ‑ Message_ShouldBeSet(message: "message9f110f3c-0c20-47bd-ba02-04f52d3205c8")
aweXpect.Core.Tests.FailTests ‑ Test_ShouldThrowException(reason: "reason05967f37-e2ab-47bb-babd-236054e730e1")
aweXpect.Core.Tests.FailTests ‑ Test_ShouldThrowException(reason: "reason55060643-6277-4ffa-b7a2-069faf7c7bad")
aweXpect.Core.Tests.FailTests ‑ Test_ShouldThrowException(reason: "reason8fee3617-bf3f-4896-9124-4c568ec5c866")
aweXpect.Core.Tests.FailTests ‑ Unless_ShouldThrowException(condition: False, reason: "reason051d6d87-a779-4064-9597-a5eeccb28e22")
…

@github-actions
Copy link
Copy Markdown
Contributor

🚀 Benchmark Results

Details

BenchmarkDotNet v0.14.0, Ubuntu 24.04.3 LTS (Noble Numbat)
AMD EPYC 7763, 1 CPU, 4 logical and 2 physical cores
.NET SDK 8.0.414
[Host] : .NET 8.0.20 (8.0.2025.41914), X64 RyuJIT AVX2

Job=InProcess Toolchain=InProcessEmitToolchain IterationCount=15
LaunchCount=1 WarmupCount=10

Method Mean Error StdDev Gen0 Gen1 Allocated
Bool_aweXpect 236.1 ns 2.50 ns 2.34 ns 0.0300 - 504 B
Bool_FluentAssertions 246.3 ns 2.43 ns 2.16 ns 0.0567 - 952 B
Bool_TUnit 883.5 ns 6.13 ns 5.73 ns 0.1431 - 2408 B
Equivalency_aweXpect 303,872.9 ns 1,464.62 ns 1,370.00 ns 20.0195 0.9766 335556 B
Equivalency_FluentAssertions 2,299,891.2 ns 16,437.30 ns 15,375.46 ns 273.4375 46.8750 4584416 B
Equivalency_TUnit 680,639.4 ns 4,153.07 ns 3,884.78 ns 51.7578 2.9297 880545 B
Int_GreaterThan_aweXpect 250.2 ns 3.10 ns 2.75 ns 0.0486 - 816 B
Int_GreaterThan_FluentAssertions 254.5 ns 3.22 ns 3.01 ns 0.0730 - 1224 B
Int_GreaterThan_TUnit 1,165.1 ns 7.21 ns 6.02 ns 0.1774 - 2984 B
ItemsCount_AtLeast_aweXpect 525.3 ns 5.75 ns 5.38 ns 0.0868 - 1464 B
ItemsCount_AtLeast_FluentAssertions 511.7 ns 5.62 ns 5.26 ns 0.1192 - 2008 B
ItemsCount_AtLeast_TUnit 14,733.0 ns 140.52 ns 124.57 ns 1.6327 - 27480 B
String_aweXpect 453.4 ns 3.44 ns 3.22 ns 0.0734 - 1232 B
String_FluentAssertions 458.1 ns 3.51 ns 3.11 ns 0.1292 - 2168 B
String_TUnit 1,244.6 ns 8.44 ns 7.90 ns 0.1831 - 3072 B
StringArray_aweXpect 1,850.9 ns 12.97 ns 12.13 ns 0.1717 - 2888 B
StringArray_FluentAssertions 1,361.5 ns 11.12 ns 10.40 ns 0.2480 - 4152 B
StringArray_TUnit 3,262.2 ns 24.28 ns 22.71 ns 0.3128 - 5296 B
StringArrayInAnyOrder_aweXpect 2,248.7 ns 13.66 ns 12.78 ns 0.1831 - 3080 B
StringArrayInAnyOrder_FluentAssertions 152,826.8 ns 927.67 ns 822.36 ns 3.4180 - 63787 B
StringArrayInAnyOrder_TUnit 3,998.0 ns 11.54 ns 9.64 ns 0.3815 - 6488 B

@github-actions
Copy link
Copy Markdown
Contributor

👽 Mutation Results

Mutation testing badge

aweXpect

Details
File Score Killed Survived Timeout No Coverage Ignored Compile Errors Total Detected Total Undetected Total Mutants

The final mutation score is NaN%

Coverage Thresholds: high:80 low:60 break:0

aweXpect.Core

Details
File Score Killed Survived Timeout No Coverage Ignored Compile Errors Total Detected Total Undetected Total Mutants

The final mutation score is NaN%

Coverage Thresholds: high:80 low:60 break:0

@vbreuss
Copy link
Copy Markdown
Member

vbreuss commented Sep 19, 2025

@dependabot rebase

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Sep 19, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Sep 19, 2025
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Sep 19, 2025

Oh no! Something went wrong on our end. Please try again later.

If the problem persists, please contact GitHub support for assistance 🙇

@dependabot dependabot Bot deleted the dependabot/nuget/tunit-b7af1a17f4 branch September 19, 2025 14:17
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.

1 participant