Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 22, 2025

Updated TUnit from 0.25.21 to 0.61.13.

Release notes

Sourced from TUnit's releases.

0.61.13

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.61.6...v0.61.13

0.61.6

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.61.2...v0.61.6

0.61.2

What's Changed

🏕 Changes

Full Changelog: thomhurst/TUnit@v0.60.15...v0.61.2

0.60.15

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.60.1...v0.60.15

0.60.1

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.59.0...v0.60.1

0.59.0

What's Changed

🏕 Changes

👒 Dependencies

Full Changelog: thomhurst/TUnit@v0.58.3...v0.59.0

0.58.3

What's Changed

🏕 Changes

👒 Dependencies

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

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

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

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

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

## 0.61.13

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

## What's Changed
### 🏕 Changes
* fix: improve file writing logic with retry mechanism for locked files by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3160
* fix: False positive Missing TimeoutAttribute cancellation token param… by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3162
* fix: disable warnings in auto-generated code by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3163
* fix: add WithMessageNotContaining assertion for exception messages by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3165
* feat: add parsing assertions for various types with format provider support by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3164
### 👒 Dependencies
* chore(deps): update tunit to 0.61.6 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3161


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.61.6...v0.61.13

## 0.61.6

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

## What's Changed
### 🏕 Changes
* feat: add support for special floating-point values (NaN, Infinity) by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3158
* fix: ensure After(Test) hooks execute before test instance disposal by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3159
### 👒 Dependencies
* chore(deps): update tunit to 0.61.2 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3149


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.61.2...v0.61.6

## 0.61.2

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

## What's Changed
### 🏕 Changes
* Retrieve TestContext's by ID by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3152
* Add support for nested tuples in data source handling and tests by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3150
* Convert collection expressions to array initializers for property assignments in FullyQualifiedWithGlobalPrefixRewriter by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3151
* Enhance data source handling to support class-level ArgumentsAttribut… by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3153
* Add support for ignoring specific types in equivalency assertions by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3154


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.60.15...v0.61.2

## 0.60.15

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

## What's Changed
### 🏕 Changes
* Use Array.Empty in source generated code to reduce allocations by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3139
* Perf Tweaks by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3140
* Collapsible GitHub Summary Output by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3141
* Fix GitHub reporter test state handling by including ErrorTestNodeStateProperty in status checks by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3142
* Fix reflection-based hook discovery by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3143
* Enhance property injection to support inherited data source attributes by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3144
* Fix disposal behaviour by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3147
* Fix decimal parsing and allow string representation by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3145
* Skip conversion operators for non-public types in AotConverterGenerator by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3148
* Fix params arrays by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3146
### 👒 Dependencies
* chore(deps): update tunit to 0.60.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3135


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.60.1...v0.60.15

## 0.60.1

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

## What's Changed
### 🏕 Changes
* Prevent test classes triggerring IFirstInXEventReceiver multiple times by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3131
* Correctly extract Test FilePath and LineNumber in Reflection mode by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3132
### 👒 Dependencies
* chore(deps): update tunit to 0.59.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3133


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.59.0...v0.60.1

## 0.59.0

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

## What's Changed
### 🏕 Changes
* Support keyed not in parallel tests within parallel groups by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3130
### 👒 Dependencies
* chore(deps): update tunit to 0.58.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3120
* chore(deps): update tunit to 0.58.3 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3122
* chore(deps): update dependency polyfill to 8.9.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3126
* chore(deps): update dependency polyfill to 8.9.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3125
* chore(deps): update dependency verify.nunit to 30.17.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3128
* chore(deps): update dependency verify to 30.17.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3127
* chore(deps): update dependency verify.tunit to 30.17.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3129


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.58.3...v0.59.0

## 0.58.3

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

## What's Changed
### 🏕 Changes
* Source Generator for Assertion creation from existing boolean returning methods by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3096
* Restructure the test runner for better code coherency by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3093
* Fix SharedType.PerTestSession not being respected with inheritance by @​Copilot in https://github.com/thomhurst/TUnit/pull/3082
### 👒 Dependencies
* chore(deps): update tunit to 0.57.65 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3088
* chore(deps): update dependency verify.nunit to 30.12.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3092
* chore(deps): update dependency verify.nunit to 30.13.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3097
* chore(deps): update dependency verify to 30.13.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3091
* chore(deps): update dependency verify.tunit to 30.13.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3098
* chore(deps): update dependency benchmarkdotnet.annotations to 0.15.3 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3108
* chore(deps): update dependency benchmarkdotnet to 0.15.3 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3107
* chore(deps): update dependency vogen to 8.0.2 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3109
* chore(deps): update dependency verify to 30.14.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3111
* chore(deps): update dependency verify.nunit to 30.15.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3112
* chore(deps): update dependency verify to 30.15.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3113
* chore(deps): update dependency verify.tunit to 30.15.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3114
* chore(deps): update dependency verify.nunit to 30.16.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3116
* chore(deps): update dependency verify to 30.16.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3115
* chore(deps): update dependency verify.tunit to 30.16.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/3117


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

## 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...

_Description has been truncated_

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

_Description has been truncated_

Bumps TUnit from 0.25.21 to 0.61.13
Bumps TUnit.Assertions from 0.25.21 to 0.61.13

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Sep 22, 2025
@github-actions
Copy link
Contributor

Test Results

    14 files   - 24      14 suites   - 24   5m 59s ⏱️ + 2m 8s
17 959 tests  - 23  17 957 ✅  - 23  2 💤 ±0  0 ❌ ±0 
50 514 runs   - 72  50 512 ✅  - 72  2 💤 ±0  0 ❌ ±0 

Results for commit 40f27c3. ± Comparison against base commit 9fca980.

@github-actions
Copy link
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 217.0 ns 1.39 ns 1.30 ns 0.0300 - 504 B
Bool_FluentAssertions 252.2 ns 2.07 ns 1.94 ns 0.0567 - 952 B
Bool_TUnit 929.2 ns 6.01 ns 5.02 ns 0.1431 - 2408 B
Equivalency_aweXpect 305,331.0 ns 1,389.71 ns 1,299.94 ns 20.0195 0.9766 335556 B
Equivalency_FluentAssertions 2,241,295.8 ns 12,589.18 ns 11,159.98 ns 273.4375 46.8750 4584416 B
Equivalency_TUnit 722,809.1 ns 6,258.20 ns 5,547.73 ns 55.6641 2.9297 935697 B
Int_GreaterThan_aweXpect 244.4 ns 2.32 ns 1.94 ns 0.0486 - 816 B
Int_GreaterThan_FluentAssertions 288.3 ns 5.25 ns 4.91 ns 0.0730 - 1224 B
Int_GreaterThan_TUnit 1,165.5 ns 7.73 ns 6.45 ns 0.1774 - 2984 B
ItemsCount_AtLeast_aweXpect 510.0 ns 12.34 ns 11.54 ns 0.0868 - 1464 B
ItemsCount_AtLeast_FluentAssertions 502.6 ns 8.48 ns 7.93 ns 0.1192 - 2008 B
ItemsCount_AtLeast_TUnit 15,425.4 ns 204.16 ns 170.49 ns 1.6174 - 27480 B
String_aweXpect 485.9 ns 7.24 ns 6.77 ns 0.0734 - 1232 B
String_FluentAssertions 463.7 ns 1.52 ns 1.27 ns 0.1292 - 2168 B
String_TUnit 1,242.3 ns 4.00 ns 3.55 ns 0.1831 - 3072 B
StringArray_aweXpect 1,937.1 ns 13.84 ns 12.95 ns 0.1717 - 2888 B
StringArray_FluentAssertions 1,382.8 ns 9.94 ns 8.81 ns 0.2480 - 4152 B
StringArray_TUnit 3,379.7 ns 31.72 ns 29.67 ns 0.3166 - 5344 B
StringArrayInAnyOrder_aweXpect 2,545.7 ns 23.11 ns 21.62 ns 0.1831 - 3080 B
StringArrayInAnyOrder_FluentAssertions 153,408.5 ns 529.40 ns 495.20 ns 3.4180 - 64323 B
StringArrayInAnyOrder_TUnit 3,923.2 ns 57.00 ns 53.32 ns 0.3815 - 6496 B

@github-actions
Copy link
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

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 29, 2025

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

@dependabot dependabot bot closed this Sep 29, 2025
@dependabot dependabot bot deleted the dependabot/nuget/tunit-38c90c371e branch September 29, 2025 07:25
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