Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

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

Updated TUnit.Engine from 0.19.86 to 0.61.13.

Release notes

Sourced from TUnit.Engine'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)

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

## 0.19.143

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

## What's Changed
### 🏕 Changes
* If Hide Test Output is Enabled, then don't forward logs to the IOutputDevice by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2360
### 👒 Dependencies
* chore(deps): update tunit to 0.19.140 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2358


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

## 0.19.140

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

## What's Changed
### 🏕 Changes
* Fix setting working directory to empty string on Android by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2356
### 👒 Dependencies
* chore(deps): update tunit to 0.19.136 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2352


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.19.136...v0.19.140

## 0.19.136

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

## What's Changed
### 🏕 Changes
* Fix KeyNotFoundException when comparing dictionaries by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2351
### 👒 Dependencies
* chore(deps): update dependency xunit.v3.assert to 2.0.2 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2321
* chore(deps): update dependency xunit.runner.visualstudio to 3.1.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2323
* chore(deps): update dependency xunit.v3.extensibility.core to 2.0.2 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2322
* chore(deps): update dependency polyfill to 7.28.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2324
* chore(deps): update dependency polyfill to 7.29.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2326
* chore(deps): update dependency fluentvalidation.dependencyinjectionextensions to v12 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2327
* chore(deps): update dependency opentelemetry.instrumentation.aspnetcore to 1.12.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2328
* chore(deps): update dependency opentelemetry.instrumentation.http to 1.12.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2331
* chore(deps): update dependency wiremock.net to 1.8.2 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2332
* chore(deps): update dependency opentelemetry.instrumentation.runtime to 1.12.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2333
* chore(deps): update dependency polyfill to 7.30.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2335
* chore(deps): update dependency wiremock.net to 1.8.3 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2336
* chore(deps): update dependency wiremock.net to 1.8.4 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2345


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.19.117...v0.19.136

## 0.19.116

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

## What's Changed
### 🏕 Changes
* Fix Dictionary Equivalent assertion checking for index positions when… by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2312
### 👒 Dependencies
* chore(deps): update tunit to 0.19.112 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2307
* chore(deps): update dependency verify.tunit to v30 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2310


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.19.112...v0.19.116

## 0.19.112

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

## What's Changed
### 🏕 Changes
* Add DoesNotMatch assertion method for string regex validation by @​AnnaSasDev in https://github.com/thomhurst/TUnit/pull/2305
### 👒 Dependencies
* chore(deps): update tunit to 0.19.86 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2275
* chore(deps): update dependency verify.tunit to 29.3.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2281
* chore(deps): update dependency verify.nunit to 29.3.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2280
* chore(deps): Bump http-proxy-middleware from 2.0.7 to 2.0.9 in /docs by @​dependabot in https://github.com/thomhurst/TUnit/pull/2263
* chore(deps): update dependency microsoft.extensions.servicediscovery to 9.2.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2287
* chore(deps): update dependency verify.tunit to 29.3.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2294
* chore(deps): update dependency verify.nunit to 29.3.1 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2293
* chore(deps): update dependency verify.tunit to 29.4.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2299
* chore(deps): update dependency verify.nunit to 29.4.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2298
* chore(deps): update dependency wiremock.net to 1.8.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2300
* chore(deps): update opentelemetry to 1.12.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2301
* chore(deps): update dependency verify.nunit to 29.5.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2303
* chore(deps): update dependency microsoft.playwright to 1.52.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2302
* chore(deps): update dependency verify.tunit to 29.5.0 by @​thomhurst in https://github.com/thomhurst/TUnit/pull/2304


**Full Changelog**: https://github.com/thomhurst/TUnit/compare/v0.19.86...v0.19.112

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

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=TUnit.Engine&package-manager=nuget&previous-version=0.19.86&new-version=0.61.13)](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...

_Description has been truncated_

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

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

dependabot bot commented on behalf of github Sep 29, 2025

Superseded by #75.

@dependabot dependabot bot closed this Sep 29, 2025
@dependabot dependabot bot deleted the dependabot/nuget/TUnit.Engine-0.61.13 branch September 29, 2025 11:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file .NET Pull requests that update .net code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants