Skip to content

chore: Bump the tunit group with 2 updates#728

Merged
vbreuss merged 1 commit intomainfrom
dependabot/nuget/tunit-3f18c53746
Aug 18, 2025
Merged

chore: Bump the tunit group with 2 updates#728
vbreuss merged 1 commit intomainfrom
dependabot/nuget/tunit-3f18c53746

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Aug 18, 2025

Updated TUnit from 0.25.21 to 0.56.35.

Release notes

Sourced from TUnit's releases.

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.56.35).
</details>

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

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

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

## 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
* Fix PropertyInjection emitting invalid source code by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2767
### 👒 Dependencies
* chore(deps): update tunit to 0.50.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2517


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/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:

```csharp
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.56.35).
</details>

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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 merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions


</details>

Bumps TUnit from 0.25.21 to 0.56.35
Bumps TUnit.Assertions from 0.25.21 to 0.56.35

---
updated-dependencies:
- dependency-name: TUnit
  dependency-version: 0.56.35
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tunit
- dependency-name: TUnit.Assertions
  dependency-version: 0.56.35
  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 Aug 18, 2025
@github-actions
Copy link
Copy Markdown
Contributor

Test Results

    14 files   - 24      14 suites   - 24   3m 2s ⏱️ -22s
14 355 tests  - 25  14 353 ✅  - 25  2 💤 ±0  0 ❌ ±0 
39 756 runs   - 72  39 754 ✅  - 72  2 💤 ±0  0 ❌ ±0 

Results for commit a80e0ca. ± Comparison against base commit fe5c680.

This pull request removes 1552 and adds 1527 tests. Note that renamed tests count towards both.
aweXpect.Core.Tests.Core.Exceptions.FailExceptionTests ‑ Message_ShouldBeSet(message: "message88f69274-1809-475f-b95c-aca01ad9c157")
aweXpect.Core.Tests.Core.Exceptions.FailExceptionTests ‑ Message_ShouldBeSet(message: "messageab1e0c8a-2af5-4e20-b112-877cd90c90a5")
aweXpect.Core.Tests.Core.Exceptions.FailExceptionTests ‑ Message_ShouldBeSet(message: "messaged9e6355c-1a7a-4f3a-ab42-9414ac1c2a83")
aweXpect.Core.Tests.Core.Exceptions.SkipExceptionTests ‑ Message_ShouldBeSet(message: "message67cd8f3d-4386-4e63-ac08-b90372170b80")
aweXpect.Core.Tests.Core.Exceptions.SkipExceptionTests ‑ Message_ShouldBeSet(message: "messagea36ecfb2-0ad3-4d9f-9c1e-7e9c1ac8bcc0")
aweXpect.Core.Tests.Core.Exceptions.SkipExceptionTests ‑ Message_ShouldBeSet(message: "messagecd51d0ca-1720-4207-b3df-57bd8c4d35aa")
aweXpect.Core.Tests.Equivalency.EquivalencyOptionsExtensionsTests ‑ Generic_For_IgnoringMember_ShouldSetOptionForType(memberToIgnore: "memberToIgnore26f0e364-3e1f-42c8-8e59-edf21249ba98")
aweXpect.Core.Tests.Equivalency.EquivalencyOptionsExtensionsTests ‑ Generic_For_IgnoringMember_ShouldSetOptionForType(memberToIgnore: "memberToIgnore30dab1cc-9557-4e41-8cd3-b30270034b7b")
aweXpect.Core.Tests.Equivalency.EquivalencyOptionsExtensionsTests ‑ Generic_For_IgnoringMember_ShouldSetOptionForType(memberToIgnore: "memberToIgnore8264cebb-7c67-4324-af4d-72359babc0c5")
aweXpect.Core.Tests.FailTests ‑ Test_ShouldThrowException(reason: "reason34fd24c7-936e-4c87-8ada-7a912a89b4e1")
…
aweXpect.Core.Tests.Core.Exceptions.FailExceptionTests ‑ Message_ShouldBeSet(message: "message55164de2-726a-414c-87c6-2ea20bea8045")
aweXpect.Core.Tests.Core.Exceptions.FailExceptionTests ‑ Message_ShouldBeSet(message: "message7b37c406-2fcc-4c64-a34c-16f2833fad2e")
aweXpect.Core.Tests.Core.Exceptions.FailExceptionTests ‑ Message_ShouldBeSet(message: "messagececf25aa-dd72-4910-b2b3-71f32a682507")
aweXpect.Core.Tests.Core.Exceptions.SkipExceptionTests ‑ Message_ShouldBeSet(message: "message1f8f8bb8-aefa-459a-8378-95a58bd1751b")
aweXpect.Core.Tests.Core.Exceptions.SkipExceptionTests ‑ Message_ShouldBeSet(message: "message428e6ea8-ab9c-4fd8-bd70-8dec4cca0e9f")
aweXpect.Core.Tests.Core.Exceptions.SkipExceptionTests ‑ Message_ShouldBeSet(message: "message9217e6ae-3625-48b5-bbf7-e0c32627d1f4")
aweXpect.Core.Tests.Equivalency.EquivalencyOptionsExtensionsTests ‑ Generic_For_IgnoringMember_ShouldSetOptionForType(memberToIgnore: "memberToIgnoreb1cf8e5d-0b4f-4e43-ad67-39b7b2a7e827")
aweXpect.Core.Tests.Equivalency.EquivalencyOptionsExtensionsTests ‑ Generic_For_IgnoringMember_ShouldSetOptionForType(memberToIgnore: "memberToIgnorec1313cab-56fd-45b7-a9c2-c48fcfdd3a01")
aweXpect.Core.Tests.Equivalency.EquivalencyOptionsExtensionsTests ‑ Generic_For_IgnoringMember_ShouldSetOptionForType(memberToIgnore: "memberToIgnorec45c0154-0855-40c6-bc1b-b19930303682")
aweXpect.Core.Tests.FailTests ‑ Test_ShouldThrowException(reason: "reason4cd6fd50-4c61-4242-8794-4026748b40c3")
…

@github-actions
Copy link
Copy Markdown
Contributor

🚀 Benchmark Results

Details

BenchmarkDotNet v0.14.0, Ubuntu 24.04.2 LTS (Noble Numbat)
AMD EPYC 7763, 1 CPU, 4 logical and 2 physical cores
.NET SDK 8.0.413
[Host] : .NET 8.0.19 (8.0.1925.36514), X64 RyuJIT AVX2

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

Method Mean Error StdDev Gen0 Gen1 Allocated
Bool_aweXpect 212.1 ns 4.95 ns 4.63 ns 0.0281 - 472 B
Bool_FluentAssertions 269.6 ns 7.65 ns 7.15 ns 0.0567 - 952 B
Bool_TUnit 895.8 ns 12.06 ns 10.69 ns 0.1431 - 2408 B
Equivalency_aweXpect 297,004.8 ns 1,999.95 ns 1,772.91 ns 16.6016 0.4883 284940 B
Equivalency_FluentAssertions 2,380,779.2 ns 47,030.47 ns 41,691.29 ns 273.4375 46.8750 4584416 B
Equivalency_TUnit 729,736.2 ns 6,164.18 ns 5,765.97 ns 51.7578 2.9297 880545 B
Int_GreaterThan_aweXpect 242.7 ns 5.30 ns 4.96 ns 0.0467 - 784 B
Int_GreaterThan_FluentAssertions 273.9 ns 11.49 ns 10.74 ns 0.0730 - 1224 B
Int_GreaterThan_TUnit 1,242.6 ns 23.82 ns 22.28 ns 0.1774 - 2984 B
ItemsCount_AtLeast_aweXpect 493.2 ns 18.88 ns 17.66 ns 0.0849 - 1432 B
ItemsCount_AtLeast_FluentAssertions 561.6 ns 15.68 ns 14.67 ns 0.1192 - 2008 B
ItemsCount_AtLeast_TUnit 22,833.6 ns 330.53 ns 309.18 ns 1.6174 - 27480 B
String_aweXpect 374.6 ns 5.29 ns 4.95 ns 0.0672 - 1128 B
String_FluentAssertions 532.8 ns 21.54 ns 20.15 ns 0.1287 - 2168 B
String_TUnit 1,339.4 ns 30.55 ns 28.58 ns 0.1831 - 3072 B
StringArray_aweXpect 1,522.3 ns 22.38 ns 20.93 ns 0.1640 - 2744 B
StringArray_FluentAssertions 1,389.8 ns 25.18 ns 22.33 ns 0.2480 - 4152 B
StringArray_TUnit 3,445.9 ns 33.14 ns 29.38 ns 0.3128 - 5296 B
StringArrayInAnyOrder_aweXpect 1,651.2 ns 13.39 ns 12.52 ns 0.1736 - 2920 B
StringArrayInAnyOrder_FluentAssertions 156,839.8 ns 1,389.45 ns 1,231.71 ns 3.4180 - 64324 B
StringArrayInAnyOrder_TUnit 4,013.2 ns 33.07 ns 29.31 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 vbreuss merged commit 4cbb9ea into main Aug 18, 2025
12 checks passed
@vbreuss vbreuss deleted the dependabot/nuget/tunit-3f18c53746 branch August 18, 2025 15:30
github-actions Bot added a commit that referenced this pull request Aug 18, 2025
github-actions Bot added a commit that referenced this pull request Aug 18, 2025
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Sep 2, 2025

This is addressed in release v2.22.0.

@github-actions github-actions Bot added the state: released The issue is released label Sep 2, 2025
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 state: released The issue is released

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant