Skip to content

Bump Immediate.Handlers and 3 others #59

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

Updated Immediate.Handlers from 2.1.0 to 2.2.0.

Release notes

Sourced from Immediate.Handlers's releases.

2.2.0

What's Changed

Full Changelog: ImmediatePlatform/Immediate.Handlers@v2.1.0...v2.2.0

Commits viewable in compare view.

Updated Meziantou.Analyzer from 2.0.197 to 2.0.210.

Release notes

Sourced from Meziantou.Analyzer's releases.

2.0.210

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.210

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@2.0.209...2.0.210

2.0.209

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.209

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@2.0.208...2.0.209

2.0.208

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.208

Full Changelog: meziantou/Meziantou.Analyzer@2.0.207...2.0.208

2.0.207

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.207

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@2.0.206...2.0.207

2.0.206

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.206

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@2.0.205...2.0.206

2.0.205

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.205

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@2.0.204...2.0.205

2.0.204

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.204

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@2.0.203...2.0.204

2.0.203

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.203

Full Changelog: meziantou/Meziantou.Analyzer@2.0.202...2.0.203

2.0.202

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.202

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@2.0.201...2.0.202

2.0.201

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.201

Full Changelog: meziantou/Meziantou.Analyzer@2.0.200...2.0.201

2.0.200

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.200

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@2.0.199...2.0.200

2.0.199

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.199

Full Changelog: meziantou/Meziantou.Analyzer@2.0.198...2.0.199

2.0.198

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.198

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@2.0.197...2.0.198

Commits viewable in compare view.

Updated TUnit.Engine from 0.19.86 to 0.50.0.

Release notes

Sourced from TUnit.Engine's releases.

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

Updated [xunit.v3.assert](https://github.com/xunit/xunit) from 2.0.1 to 3.0.0.

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

_Sourced from [xunit.v3.assert's releases](https://github.com/xunit/xunit/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/xunit/xunit/commits).
</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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Bumps Immediate.Handlers from 2.1.0 to 2.2.0
Bumps Meziantou.Analyzer from 2.0.197 to 2.0.210
Bumps TUnit.Engine from 0.19.86 to 0.50.0
Bumps xunit.v3.assert from 2.0.1 to 3.0.0

---
updated-dependencies:
- dependency-name: Immediate.Handlers
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Meziantou.Analyzer
  dependency-version: 2.0.210
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: TUnit.Engine
  dependency-version: 0.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: xunit.v3.assert
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

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 Aug 4, 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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants