Bump dotenv.net and 9 others #38
Open
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 dotenv.net from 3.2.1 to 4.0.0.
Release notes
Sourced from dotenv.net's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated JetBrains.Annotations from 2024.3.0 to 2025.2.0.
Release notes
Sourced from JetBrains.Annotations's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.EntityFrameworkCore from 9.0.7 to 9.0.8.
Release notes
Sourced from Microsoft.EntityFrameworkCore's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.EntityFrameworkCore.Sqlite from 9.0.7 to 9.0.8.
Release notes
Sourced from Microsoft.EntityFrameworkCore.Sqlite's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated Microsoft.Extensions.Configuration from 9.0.7 to 9.0.8.
Release notes
Sourced from Microsoft.Extensions.Configuration's releases.
9.0.8
Release
What's Changed
InvalidOperationExceptiononTestOutputHelperlogging. by @ilonatommy in [release/9.0-staging][wbt] PreventInvalidOperationExceptiononTestOutputHelperlogging. dotnet/runtime#116916Ping_TimedOut_*tests by @github-actions[bot] in [release/9.0-staging] HardenPing_TimedOut_*tests dotnet/runtime#116630Full Changelog: dotnet/runtime@v9.0.7...v9.0.8
Commits viewable in compare view.
Updated Microsoft.Extensions.Configuration.Json from 9.0.7 to 9.0.8.
Release notes
Sourced from Microsoft.Extensions.Configuration.Json's releases.
9.0.8
Release
What's Changed
InvalidOperationExceptiononTestOutputHelperlogging. by @ilonatommy in [release/9.0-staging][wbt] PreventInvalidOperationExceptiononTestOutputHelperlogging. dotnet/runtime#116916Ping_TimedOut_*tests by @github-actions[bot] in [release/9.0-staging] HardenPing_TimedOut_*tests dotnet/runtime#116630Full Changelog: dotnet/runtime@v9.0.7...v9.0.8
Commits viewable in compare view.
Updated Microsoft.Extensions.DependencyInjection from 9.0.7 to 9.0.8.
Release notes
Sourced from Microsoft.Extensions.DependencyInjection's releases.
9.0.8
Release
What's Changed
InvalidOperationExceptiononTestOutputHelperlogging. by @ilonatommy in [release/9.0-staging][wbt] PreventInvalidOperationExceptiononTestOutputHelperlogging. dotnet/runtime#116916Ping_TimedOut_*tests by @github-actions[bot] in [release/9.0-staging] HardenPing_TimedOut_*tests dotnet/runtime#116630Full Changelog: dotnet/runtime@v9.0.7...v9.0.8
Commits viewable in compare view.
Updated Microsoft.Extensions.Http from 9.0.7 to 9.0.8.
Release notes
Sourced from Microsoft.Extensions.Http's releases.
9.0.8
Release
What's Changed
InvalidOperationExceptiononTestOutputHelperlogging. by @ilonatommy in [release/9.0-staging][wbt] PreventInvalidOperationExceptiononTestOutputHelperlogging. dotnet/runtime#116916Ping_TimedOut_*tests by @github-actions[bot] in [release/9.0-staging] HardenPing_TimedOut_*tests dotnet/runtime#116630Full Changelog: dotnet/runtime@v9.0.7...v9.0.8
Commits viewable in compare view.
Updated Microsoft.Extensions.Options from 9.0.7 to 9.0.8.
Release notes
Sourced from Microsoft.Extensions.Options's releases.
9.0.8
Release
What's Changed
InvalidOperationExceptiononTestOutputHelperlogging. by @ilonatommy in [release/9.0-staging][wbt] PreventInvalidOperationExceptiononTestOutputHelperlogging. dotnet/runtime#116916Ping_TimedOut_*tests by @github-actions[bot] in [release/9.0-staging] HardenPing_TimedOut_*tests dotnet/runtime#116630Full Changelog: dotnet/runtime@v9.0.7...v9.0.8
Commits viewable in compare view.
Updated TUnit from 0.25.21 to 0.52.25.
Release notes
Sourced from TUnit's releases.
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]Informationtypes 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: