Skip to content

Conversation

dependabot[bot]
Copy link

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

Updated TUnit.Core from 0.25.21 to 0.61.13.

Release notes

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

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

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

---
updated-dependencies:
- dependency-name: TUnit.Core
  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
Author

dependabot bot commented on behalf of github Sep 29, 2025

Superseded by #20.

@dependabot dependabot bot closed this Sep 29, 2025
@dependabot dependabot bot deleted the dependabot/nuget/src/Dameng.Logging.TUnit/TUnit.Core-0.61.13 branch September 29, 2025 09:39
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