-
-
Notifications
You must be signed in to change notification settings - Fork 1
chore(deps): Bump the tunit group with 1 update #886
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #886 +/- ##
=======================================
Coverage 97.60% 97.60%
=======================================
Files 160 160
Lines 2634 2634
Branches 446 446
=======================================
Hits 2571 2571
Misses 63 63 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Bumps TUnit from 0.25.21 to 0.56.44 --- updated-dependencies: - dependency-name: TUnit dependency-version: 0.56.44 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: tunit ... Signed-off-by: dependabot[bot] <support@github.com>
ef5e628 to
d9f3bdb
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR is a dependency update that bumps TUnit and related packages to newer versions as part of routine maintenance. The update brings TUnit from version 0.25.21 to 0.56.44, which represents a significant version jump with numerous bug fixes, performance improvements, and new features.
Key Changes
- Major TUnit version update from 0.25.21 to 0.56.44
- Updates to NetEvolve.Extensions packages (TUnit and XUnit) from 2.6.26 to 2.6.49
- Verify.TUnit package updated from 30.5.0 to 30.7.3
* chore(deps): Bump the tunit group with 1 update Bumps TUnit from 0.25.21 to 0.56.44 --- updated-dependencies: - dependency-name: TUnit dependency-version: 0.56.44 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: tunit ... Signed-off-by: dependabot[bot] <support@github.com> * chore(deps): Also updated `NetEvolve.Extensions.TUnit` * fix(deps): Updated `Verify.TUnit` --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Martin Stühmer <me@samtrion.net>
Updated TUnit from 0.25.21 to 0.56.44.
Release notes
Sourced from TUnit's releases.
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:
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: