Skip to content

Bump the pkg-updates group with 5 updates#434

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/nuget/src/Dappery.Core/pkg-updates-b9e0116014
Closed

Bump the pkg-updates group with 5 updates#434
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/nuget/src/Dappery.Core/pkg-updates-b9e0116014

Conversation

@dependabot
Copy link

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

Updated Microsoft.Data.Sqlite from 9.0.7 to 9.0.8.

Release notes

Sourced from Microsoft.Data.Sqlite's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Logging.Abstractions from 9.0.7 to 9.0.8.

Release notes

Sourced from Microsoft.Extensions.Logging.Abstractions's releases.

9.0.8

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.7...v9.0.8

Commits viewable in compare view.

Updated Microsoft.Testing.Extensions.CrashDump from 1.8.0 to 1.8.1.

Release notes

Sourced from Microsoft.Testing.Extensions.CrashDump's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Testing.Extensions.HangDump from 1.8.0 to 1.8.1.

Release notes

Sourced from Microsoft.Testing.Extensions.HangDump's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated TUnit from 0.25.21 to 0.50.0.

Release notes

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

Commits viewable in [compare view](https://github.com/thomhurst/TUnit/compare/v0.25.21...v0.50.0).
</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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group 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 (unless you unignore this specific dependency 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>

Bumps Microsoft.Data.Sqlite from 9.0.7 to 9.0.8
Bumps Microsoft.Extensions.Logging.Abstractions from 9.0.7 to 9.0.8
Bumps Microsoft.Testing.Extensions.CrashDump from 1.8.0 to 1.8.1
Bumps Microsoft.Testing.Extensions.HangDump from 1.8.0 to 1.8.1
Bumps TUnit from 0.25.21 to 0.50.0

---
updated-dependencies:
- dependency-name: Microsoft.Data.Sqlite
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pkg-updates
- dependency-name: Microsoft.Extensions.Logging.Abstractions
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pkg-updates
- dependency-name: Microsoft.Testing.Extensions.CrashDump
  dependency-version: 1.8.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pkg-updates
- dependency-name: Microsoft.Testing.Extensions.HangDump
  dependency-version: 1.8.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pkg-updates
- dependency-name: TUnit
  dependency-version: 0.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pkg-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the ⬆️ Dependencies Update dependencies. label Aug 10, 2025
@semanticdiff-com
Copy link

semanticdiff-com bot commented Aug 10, 2025

Review changes with  SemanticDiff

Changed Files
File Status
  src/Dappery.Core/packages.lock.json  67% smaller
  src/Dappery.Data/packages.lock.json  67% smaller
  tests/Dappery.Core.Tests/packages.lock.json  56% smaller
  tests/Dappery.Data.Tests/packages.lock.json  56% smaller
  src/Directory.Packages.props  0% smaller
  tests/Directory.Packages.props  0% smaller

@github-actions github-actions bot added 🧪 Tests Add or update tests 💥 Conflicts Merge conflicts labels Aug 10, 2025
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Aug 10, 2025

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot bot closed this Aug 10, 2025
@dependabot dependabot bot deleted the dependabot/nuget/src/Dappery.Core/pkg-updates-b9e0116014 branch August 10, 2025 16:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

💥 Conflicts Merge conflicts ⬆️ Dependencies Update dependencies. 🧪 Tests Add or update tests

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants