Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

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

Updated Meziantou.Analyzer from 2.0.201 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

Commits viewable in compare view.

Updated System.Linq.Async from 6.0.1 to 6.0.3.

Release notes

Sourced from System.Linq.Async's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated TUnit.Engine from 0.22.31 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

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

Updated [xunit.v3.assert](https://github.com/xunit/xunit) from 2.0.3 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 Meziantou.Analyzer from 2.0.201 to 2.0.210
Bumps System.Linq.Async from 6.0.1 to 6.0.3
Bumps TUnit.Engine from 0.22.31 to 0.50.0
Bumps xunit.v3.assert from 2.0.3 to 3.0.0

---
updated-dependencies:
- dependency-name: Meziantou.Analyzer
  dependency-version: 2.0.210
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: System.Linq.Async
  dependency-version: 6.0.3
  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