Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

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

Updated TUnit from 0.19.143 to 0.57.24.

Release notes

Sourced from TUnit's releases.

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)

## 0.25.21

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

## What's Changed
### 🏕 Changes
* New README! by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2530
* Fix Assert.Throws Type Check by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2540
### 👒 Dependencies
* chore(deps): update docusaurus to v3.8.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2526
* chore(deps): update dependency xunit.v3.assert to 2.0.3 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2528
* chore(deps): update dependency xunit.runner.visualstudio to 3.1.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2527
* chore(deps): update dependency xunit.v3.extensibility.core to 2.0.3 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2529
* chore(deps): update dependency cliwrap to 3.9.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2534
* chore(deps): update dependency benchmarkdotnet to 0.15.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2537


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.25.6...v0.25.21

## 0.25.6

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

## What's Changed
### 🏕 Changes
* Add file based csharp app example to docs by @​licon4812 in https://github.com/thomhurst/TUnit/pull/2519
* Improve ValueDelegateAssertion failure messages if an exception was thrown in the delegate by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2522
### 👒 Dependencies
* chore(deps): update dependency dotnet-sdk to v9.0.300 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2516
* chore(deps): update dependency vogen to 7.0.4 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2518
* chore(deps): update dependency testcontainers.redis to 4.5.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2521
* chore(deps): update dependency testcontainers.postgresql to 4.5.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2520


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.25.0...v0.25.6

## 0.25.0

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

## What's Changed
### Breaking Changes 🛠
* Refactored Context objects so they can access their parent (Test > Class > Assembly > Session) by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2505
### 🏕 Changes
* docs: Further XML Summaries for `TUnit.Core/Attributes` by @​samtrion in https://github.com/thomhurst/TUnit/pull/2509
* docs: XML Summaries for `TUnit.Core/Interfaces` by @​samtrion in https://github.com/thomhurst/TUnit/pull/2510
* feature: Added `ExcludeOnAttribute` and `RunOnAttribute` by @​samtrion in https://github.com/thomhurst/TUnit/pull/2512
### 👒 Dependencies
* chore(deps): update tunit to 0.24.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2498
* chore(deps): update dependency microsoft.net.test.sdk to 17.14.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2511
* chore(deps): update dependency verify.nunit to 30.3.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2513
* chore(deps): update dependency verify.tunit to 30.3.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2514


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.24.0...v0.25.0

## 0.24.0

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

## What's Changed
### 🏕 Changes
* Allow injecting ClassDataSource properties into other ClassDataSource objects by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2497
### 👒 Dependencies
* chore(deps): update tunit to 0.23.5 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2494
* chore(deps): update dependency verify.nunit to 30.3.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2495
* chore(deps): update dependency verify.tunit to 30.3.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2496


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.23.5...v0.24.0

## 0.23.5

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

## What's Changed
### 🏕 Changes
* Fix NRE on XUnitMigrationAnalyzer and Simplify Analyzer project files by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2493
### 👒 Dependencies
* chore(deps): update tunit to 0.23.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2487
* chore(deps): update dependency verify.nunit to 30.2.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2491
* chore(deps): update dependency verify.tunit to 30.2.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2492


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.23.0...v0.23.5

## 0.23.0

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

## What's Changed
### Breaking Changes 🛠
* Allow multiple property values with the same key by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2485
### 🏕 Changes
* Allow Assert.Fail to be used inside Assert.Multiple. by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2483
### 👒 Dependencies
* chore(deps): update tunit to 0.22.31 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2484


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.22.31...v0.23.0

## 0.22.31

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

## What's Changed
### 🏕 Changes
* chore: Extended `Assert.Throw` and `Assert.ThrowAsync` with ParameterName Overload by @​samtrion in https://github.com/thomhurst/TUnit/pull/2476
* Rework Assert.ThrowsAsync<> to return an assertion builder for further chaining by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2479
* Improve XUnit Migration Analyzer by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2482
### 👒 Dependencies
* chore(deps): update tunit to 0.22.24 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2471
* chore(deps): update dependency nunit.analyzers to 4.8.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2474


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.22.24...v0.22.31

## 0.22.24

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

## What's Changed
### 🏕 Changes
* docs: Added XML docs for the first batch of TUnit Attributes by @​samtrion in https://github.com/thomhurst/TUnit/pull/2468
### 👒 Dependencies
* chore(deps): update tunit to 0.22.20 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2466
* chore(deps): update dependency polyfill to 7.33.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2469


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.22.20...v0.22.24

## 0.22.20

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

## What's Changed
### 🏕 Changes
* xUnit TheoryData Migration Code Fix  by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2464
* XUnit ITestOutputHelper Migration Code Fixers by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2465
### 👒 Dependencies
* chore(deps): update modularpipelines to 2.44.45 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2454
* chore(deps): update tunit to 0.22.12 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2455
* chore(deps): update docusaurus to v3.8.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2461
* chore(deps): update microsoft.testing to 1.7.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2462
* chore(deps): update mstest to 3.9.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2463


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.22.12...v0.22.20

## 0.22.12

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

## What's Changed
### 🏕 Changes
* Simplify xUnit Migration Code Fixer by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2452
### 👒 Dependencies
* chore(deps): update tunit to 0.22.10 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2451


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.22.10...v0.22.12

## 0.22.10

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

## What's Changed
### 🏕 Changes
* Fix DependsOn not working when a test takes a reference type argument by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2450
### 👒 Dependencies
* chore(deps): update tunit to 0.22.6 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2445


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.22.6...v0.22.10

## 0.22.6

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

## What's Changed
### 🏕 Changes
* Reorganise Documentation Site by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2444
### 👒 Dependencies
* chore(deps): update tunit to 0.22.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2438
* chore(deps): update dependency nunit.analyzers to 4.8.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2439
* chore(deps): update System.Text.Json to version 8.0.5 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2443


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.22.0...v0.22.6

## 0.22.0

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

## What's Changed
### Breaking Changes 🛠
* Don't overwrite LangVersion if set and check raise diagnostic error if level not high enough by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2437
### 🏕 Changes
* Updated TUnit.Assertions.FSharp.Operations check function to support assertions with Throw Type by @​licon4812 in https://github.com/thomhurst/TUnit/pull/2431
* Fix multiple data-driven tests not all being picked up in a [DependsOn] by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2436
### 👒 Dependencies
* chore(deps): update tunit to 0.21.16 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2430
* chore(deps): update dependency polyfill to 7.32.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2432
* chore(deps): update dependency benchmarkdotnet to 0.15.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2434


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.21.16...v0.22.0

## 0.21.16

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

## What's Changed
### 🏕 Changes
* F# ASP.NET templates by @​licon4812 in https://github.com/thomhurst/TUnit/pull/2429
### 👒 Dependencies
* chore(deps): update tunit to 0.21.13 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2424


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.21.13...v0.21.16

## 0.21.13

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

## What's Changed
### 🏕 Changes
* Add CompilerVisibleProperty `EnableTUnitPolyfills` by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2421
* Downgrade System.Text.Json to improve compatibility and reduce version conflicts with consumers by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2420
### 👒 Dependencies
* chore(deps): update dependency microsoft.net.test.sdk to 17.14.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2415
* chore(deps): update mstest to 3.9.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2418
* chore(deps): update microsoft.testing to 1.7.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2416
* chore(deps): update tunit to 0.21.7 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2417


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.21.7...v0.21.13

## 0.21.7

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

## What's Changed
### 🏕 Changes
* Adding F# and VB.NET Basic templates by @​licon4812 in https://github.com/thomhurst/TUnit/pull/2386
### 👒 Dependencies
* chore(deps): update tunit to 0.21.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2413


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.21.1...v0.21.7

## 0.21.1

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

## What's Changed
### Breaking Changes 🛠
* Override Results from an `AfterTestContext` object by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2401
### 🏕 Changes
* Non-Generic Attributes for F# and VB.NET by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2397
* Fix trim warnings by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2398
* IReadOnlyDictionary assertions by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2399
* New Advanced Tutorial F# Interactive by @​licon4812 in https://github.com/thomhurst/TUnit/pull/2403
* Added non Generic ClassConstructorAttribute for F# and VB.NET by @​licon4812 in https://github.com/thomhurst/TUnit/pull/2402
* PushVersionTagModule by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2405
* Fix AOT / Trimming Warnings by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2411
* Run tests sequentially when the debugger is attached by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2412
### 👒 Dependencies
* chore(deps): update tunit to 0.20.16 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2384
* chore(deps): update tunit to 0.20.18 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2406
* chore(deps): update dependency microsoft.extensions.servicediscovery to 9.3.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2408
* chore(deps): update modularpipelines to 2.44.44 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2409
* chore(deps): update aspire to 9.3.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2407


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.20.11...v0.21.1

## 0.20.18

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

## What's Changed
### 🏕 Changes
* Added non Generic ClassConstructorAttribute for F# and VB.NET by @​licon4812 in https://github.com/thomhurst/TUnit/pull/2402


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.20.17...v0.20.18

## 0.20.16

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

## What's Changed
### Breaking Changes 🛠
* Override Results from an `AfterTestContext` object by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2401
### 🏕 Changes
* Non-Generic Attributes for F# and VB.NET by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2397
* Fix trim warnings by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2398
* IReadOnlyDictionary assertions by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2399


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.20.11...v0.20.16

## 0.20.11

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

## What's Changed
### 🏕 Changes
* Improve Assembly Loading by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2394
* Install .NET 10 on the build pipeline agent by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2395
### 👒 Dependencies
* chore(deps): update dependency nuget.protocol to 6.14.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2376
* chore(deps): update dependency microsoft.templateengine.authoring.templateverifier to 9.0.300 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2383
* chore(deps): update dependency system.threading.tasks.extensions to 4.6.3 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2392


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.20.4...v0.20.11

## 0.20.4

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

## What's Changed
### 🏕 Changes
* FSharp Assertions by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2388
### 👒 Dependencies
* chore(deps): update aspire to 9.2.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2236


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.20.0...v0.20.4

## 0.20.0

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

## What's Changed
### 🏕 Changes
* Support F# and VB.NET via Reflection by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2250
### 👒 Dependencies
* chore(deps): update nunit (major) by @​thomhurst in https://github.com/thomhurst/TUnit/pull/1790


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.19.151...v0.20.0

## 0.19.148

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

## What's Changed
### 🏕 Changes
* Show target framework on GitHub report summaries by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2366
### 👒 Dependencies
* chore(deps): update tunit to 0.19.143 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2361
* chore(deps): update dependency polyfill to 7.31.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2363
* chore(deps): update dependency verify.tunit to 30.1.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2364


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.19.143...v0.19.148

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

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=TUnit&package-manager=nuget&previous-version=0.19.143&new-version=0.57.24)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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.19.143 to 0.57.24

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner September 4, 2025 01:09
@dependabot dependabot bot added the dependency:nuget Indicates a pull request related to updating or managing NuGet package dependencies. label Sep 4, 2025
@dependabot dependabot bot requested a review from benwirren September 4, 2025 01:09
@dependabot dependabot bot added the dependency:nuget Indicates a pull request related to updating or managing NuGet package dependencies. label Sep 4, 2025
Copy link

sonarqubecloud bot commented Sep 4, 2025

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependency:nuget Indicates a pull request related to updating or managing NuGet package dependencies.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant