Bump the nuget-dependencies group with 7 updates #17
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updated Microsoft.AspNetCore.OpenApi from 9.0.6 to 9.0.8.
Release notes
Sourced from Microsoft.AspNetCore.OpenApi's releases.
9.0.7
Release
What's Changed
04ee1b4
toe9092b1
by @dependabot in [release/9.0] (deps): Bump src/submodules/googletest from04ee1b4
toe9092b1
dotnet/aspnetcore#62199Full Changelog: dotnet/aspnetcore@v9.0.6...v9.0.7
Commits viewable in compare view.
Updated Microsoft.EntityFrameworkCore from 9.0.6 to 9.0.8.
Release notes
Sourced from Microsoft.EntityFrameworkCore's releases.
9.0.7
Release
What's Changed
Full Changelog: dotnet/efcore@v9.0.6...v9.0.7
Commits viewable in compare view.
Updated Microsoft.EntityFrameworkCore.Design from 9.0.6 to 9.0.8.
Release notes
Sourced from Microsoft.EntityFrameworkCore.Design's releases.
9.0.7
Release
What's Changed
Full Changelog: dotnet/efcore@v9.0.6...v9.0.7
Commits viewable in compare view.
Updated Microsoft.EntityFrameworkCore.Relational from 9.0.6 to 9.0.8.
Release notes
Sourced from Microsoft.EntityFrameworkCore.Relational's releases.
9.0.7
Release
What's Changed
Full Changelog: dotnet/efcore@v9.0.6...v9.0.7
Commits viewable in compare view.
Updated Microsoft.EntityFrameworkCore.Tools from 9.0.6 to 9.0.8.
Release notes
Sourced from Microsoft.EntityFrameworkCore.Tools's releases.
9.0.7
Release
What's Changed
Full Changelog: dotnet/efcore@v9.0.6...v9.0.7
Commits viewable in compare view.
Updated Scalar.AspNetCore from 2.5.3 to 2.6.9.
Release notes
Sourced from Scalar.AspNetCore's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated TUnit from 0.25.21 to 0.56.35.
Release notes
Sourced from TUnit's releases.
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:
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: