Skip to content

chore(deps): Bump the tunit group with 1 update - #728

Merged
samtrion merged 2 commits into
mainfrom
dependabot/nuget/tunit-963f1e8da8
Aug 18, 2025
Merged

chore(deps): Bump the tunit group with 1 update#728
samtrion merged 2 commits into
mainfrom
dependabot/nuget/tunit-963f1e8da8

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubAug 15, 2025

Copy link
Copy Markdown
Contributor

Updated TUnit.Core from 0.25.21 to 0.56.5.

Release notes

Sourced from TUnit.Core's releases.

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:

publicclassInMemorySql:IAsyncInitializer,IAsyncDisposable{publicasyncTaskInitializeAsync(){awaitContainer.StartAsync();}publicasyncValueTaskDisposeAsync(){awaitContainer.DisposeAsync();}}publicclassInMemoryRedis:IAsyncInitializer,IAsyncDisposable{publicasyncTaskInitializeAsync(){awaitContainer.StartAsync();}publicasyncValueTaskDisposeAsync(){awaitContainer.DisposeAsync();}}publicclassInMemoryMessageBus:IAsyncInitializer,IAsyncDisposable{
...(truncated)
Commits viewablein[compare view](https://github.com/thomhurst/TUnit/compare/v0.25.21...v0.56.5).</details>[![Dependabotcompatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=TUnit.Core&package-manager=nuget&previous-version=0.25.21&new-version=0.56.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)Dependabotwill resolve any conflicts withthis PR aslongas you don't alter ityourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.[//]: # (dependabot-automerge-start)[//]: # (dependabot-automerge-end)---<details><summary>Dependabotcommands 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 (unlessyou unignore thisspecificdependency's major version or upgrade to it yourself)- `@dependabot ignore <dependency name>minor version` will close thisgroup 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(unlessyou unignore thisspecificdependency 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>

@dependabotdependabotBot added the dependency:nuget Indicates a pull request related to updating or managing NuGet package dependencies. label Aug 15, 2025
@dependabot
dependabotBot requested a review from a team as a code ownerAugust 15, 2025 12:25
@dependabot
dependabotBot requested review from samtrion and removed request for a teamAugust 15, 2025 12:25
@codecov

codecovBot commented Aug 18, 2025

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 62.50000% with 6 lines in your changes missing coverage. Please review.
✅ Project coverage is 93.47%. Comparing base (15d3aba) to head (a521435).
⚠️ Report is 3 commits behind head on main.

Files with missing linesPatch %Lines
...sions.TUnit/Internal/CategoryTraitBaseAttribute.cs60.00%1 Missing and 1 partial ⚠️
...TUnit/Internal/CategoryWithIdTraitBaseAttribute.cs66.66%1 Missing and 1 partial ⚠️
....TUnit/Internal/NamedCategoryTraitBaseAttribute.cs60.00%1 Missing and 1 partial ⚠️
Additional details and impacted files
@@ Coverage Diff @@## main #728 +/- ##
==========================================
+ Coverage 93.41% 93.47% +0.06% 
==========================================
Files 104 104 Lines 319 322 +3 Branches 29 29 ==========================================
+ Hits 298 301 +3 
Misses 18 18 Partials 3 3 

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@samtrion
samtrionforce-pushed the dependabot/nuget/tunit-963f1e8da8 branch from c4fac9a to 4495e08CompareAugust 18, 2025 11:55
@samtrion
samtrionforce-pushed the dependabot/nuget/tunit-963f1e8da8 branch from 4495e08 to ee004d6CompareAugust 18, 2025 11:55
@sonarqubecloud

Copy link
Copy Markdown

@samtrion
samtrion merged commit fae7754 into mainAug 18, 2025
11 of 12 checks passed
@samtrion
samtrion deleted the dependabot/nuget/tunit-963f1e8da8 branch August 18, 2025 12:30
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependency:nugetIndicates 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

@samtrion