Skip to content

Commit 0e01b70

Browse files
committed
fix: CI
1 parent 2ab76ed commit 0e01b70

File tree

3 files changed

+29
-7
lines changed

3 files changed

+29
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
dotnet tool restore
136136
137137
- name: 🧪 Run unit tests
138-
run: dotnet test -c release --no-restore -f ${{ matrix.framework }}
138+
run: dotnet test -c release --no-restore
139139

140140
- name: 📛 Upload hang- and crash-dumps on test failure
141141
if: success() || failure()

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ All notable changes to **bUnit** will be documented in this file. The project ad
66

77
## [Unreleased]
88

9+
This major release focuses on platform updates and API simplifications.
10+
11+
For a migration guide, see [Upgrading bUnit](https://bunit.dev/docs/migrations/index.html).
12+
13+
### Changed
14+
15+
- Target framework support updated: added support for .NET 10 (`net10.0`) and dropped all versions prior to .NET 8 (`net8.0`).
16+
- Cleanup of the API with simplifications of many API calls and methods. This also includes renaming of some objects to better reflect their purpose.
17+
18+
### Added
19+
20+
- Improved renderer logic that catches more edge cases.
21+
- Improved developer experience in relation to JSInterop.
22+
923
## [1.40.0] - 2025-06-14
1024

1125
### Fixed

README.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,23 @@ bUnit builds on top of existing unit testing frameworks such as xUnit, NUnit, an
2020

2121
bUnit is available on NuGet in various incarnations. Most should just pick the [bUnit](https://www.nuget.org/packages/bunit/) package:
2222

23-
| Name | Description | NuGet Download Link |
24-
| ----- | ----- | ---- |
25-
| [bUnit](https://www.nuget.org/packages/bunit/) | Adds support for testing Blazor components. | [![Nuget](https://img.shields.io/nuget/dt/bunit?logo=nuget&style=flat-square)](https://www.nuget.org/packages/bunit/) |
26-
| [bUnit.template](https://www.nuget.org/packages/bunit.template/) | Template, which currently creates xUnit-based bUnit test projects only. | [![Nuget](https://img.shields.io/nuget/dt/bunit.template?logo=nuget&style=flat-square)](https://www.nuget.org/packages/bunit.template/) |
27-
| [bUnit.generators](https://www.nuget.org/packages/bunit.generators/)|Source code generators to minimize code setup in various situations.|[![Nuget](https://img.shields.io/nuget/dt/bunit.generators?logo=nuget&style=flat-square)](https://www.nuget.org/packages/bunit.generators/)|
28-
| [bUnit.web.query](https://www.nuget.org/packages/bunit.web.query/)|bUnit implementation of testing-library.com's query APIs.|[![Nuget](https://img.shields.io/nuget/dt/bunit.web.query?logo=nuget&style=flat-square)](https://www.nuget.org/packages/bunit.web.query/)|
23+
| Name | Description | NuGet Download Link |
24+
| -------------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
25+
| [bUnit](https://www.nuget.org/packages/bunit/) | Adds support for testing Blazor components. | [![Nuget](https://img.shields.io/nuget/dt/bunit?logo=nuget&style=flat-square)](https://www.nuget.org/packages/bunit/) |
26+
| [bUnit.template](https://www.nuget.org/packages/bunit.template/) | Template, which currently creates xUnit-based bUnit test projects only. | [![Nuget](https://img.shields.io/nuget/dt/bunit.template?logo=nuget&style=flat-square)](https://www.nuget.org/packages/bunit.template/) |
27+
| [bUnit.generators](https://www.nuget.org/packages/bunit.generators/) | Source code generators to minimize code setup in various situations. | [![Nuget](https://img.shields.io/nuget/dt/bunit.generators?logo=nuget&style=flat-square)](https://www.nuget.org/packages/bunit.generators/) |
28+
| [bUnit.web.query](https://www.nuget.org/packages/bunit.web.query/) | bUnit implementation of testing-library.com's query APIs. | [![Nuget](https://img.shields.io/nuget/dt/bunit.web.query?logo=nuget&style=flat-square)](https://www.nuget.org/packages/bunit.web.query/) |
2929

3030
To get started, head to the [getting started documentation](https://bunit.dev/docs/getting-started) to learn more.
3131

32+
## bUnit and .NET version compatibility matrix
33+
| bUnit version | .NET version |
34+
| ------------- | ------------------------------- |
35+
| 1.x | ≥ .netcore3.1 && ≤ .net 9 |
36+
| 2.x | ≥ .net8 |
37+
38+
For a migration guide, see [Upgrading bUnit](https://bunit.dev/docs/migrations/index.html).
39+
3240
## Sponsors
3341

3442
A huge thank you to the [sponsors of bUnit](https://github.com/sponsors/egil). The higher tier sponsors are:

0 commit comments

Comments
 (0)