Skip to content

Commit 1bd08f5

Browse files
authored
Merge pull request #1202 from bUnit-dev/release/v1.23
Release of new minor version v1.23
2 parents a36530e + ce07a60 commit 1bd08f5

File tree

59 files changed

+464
-347
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+464
-347
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
]
1010
},
1111
"docfx": {
12-
"version": "2.67.0",
12+
"version": "2.70.0",
1313
"commands": [
1414
"docfx"
1515
]

.github/nightly-failed.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/workflows/docs-deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424

2525
- name: 🛒 Checkout repository
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 0
2929
token: ${{ secrets.BUNIT_BOT_TOKEN }}
@@ -68,6 +68,7 @@ jobs:
6868
5.0.x
6969
6.0.x
7070
7.0.x
71+
8.0.x
7172
7273
- name: 🎨 Setup color
7374
run: |

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.ref == 'refs/heads/main' && contains(fromJson('["major","minor"]'), github.event.inputs.versionIncrement)
1717
steps:
1818
- name: 🛒 Checkout repository
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0
2222
token: ${{ secrets.BUNIT_BOT_TOKEN }}

.github/workflows/release-preview.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
nugetRelease:
1313
description: 'Release to NuGet? Set to "true" to release to NuGet.org as well as GPR.'
1414
required: true
15-
default: 'false'
15+
default: 'true'
1616

1717
jobs:
1818
release-preview:
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222

2323
- name: 🛒 Checkout repository
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525
with:
2626
fetch-depth: 0
2727

@@ -36,6 +36,7 @@ jobs:
3636
5.0.x
3737
6.0.x
3838
7.0.x
39+
8.0.x
3940
4041
- name: 🎨 Setup color
4142
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323

2424
- name: 🛒 Checkout repository
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626
with:
2727
fetch-depth: 0
2828
token: ${{ secrets.BUNIT_BOT_TOKEN }}
@@ -67,6 +67,7 @@ jobs:
6767
5.0.x
6868
6.0.x
6969
7.0.x
70+
8.0.x
7071
7172
- name: 🛠️ Update changelog
7273
uses: thomaseizinger/[email protected]

.github/workflows/verification.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: 🛒 Checkout repository
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040
with:
4141
fetch-depth: 0
4242

@@ -48,6 +48,7 @@ jobs:
4848
5.0.x
4949
6.0.x
5050
7.0.x
51+
8.0.x
5152
5253
- name: 🎨 Setup color
5354
if: matrix.os != 'windows-latest'

CHANGELOG.md

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

77
## [Unreleased]
88

9+
### Fixed
10+
11+
- If the renderer was not idle when calling `SetParametersAndRender`, the method could return before the parameters were set and the component under test had finished rendering. This was a regression that happened in v1.21.9. Reported by [@Skintkingle](https://github.com/Skintkingle]) in <https://github.com/bUnit-dev/bUnit/issues/1188>. Fixed by [@egil](https://github.com/egil).
12+
13+
### Added
14+
15+
- `net8.0` support
16+
- Increased timeout of `WaitForAssertion` to infinite when a debugger is attached. By [@linkdotnet](https://github.com/linkdotnet).
17+
18+
### Fixed
19+
20+
- AngleSharp IElement extension methods do not work with `IRenderedFragment.Find`. Reported by [a2er](https://github.com/a2er). Fixed by [@linkdotnet](https://github.com/linkdotnet).
21+
922
## [1.22.19] - 2023-07-28
1023

1124
### Added

Directory.Build.props

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<DotNet5Version>5.0.0</DotNet5Version>
77
<DotNet6Version>6.0.0</DotNet6Version>
88
<DotNet7Version>7.0.0</DotNet7Version>
9+
<DotNet8Version>8.0.0-*</DotNet8Version>
910
</PropertyGroup>
1011

1112
<!-- Solution wide properties -->
@@ -21,7 +22,7 @@
2122
<LangVersion>11.0</LangVersion>
2223
<AccelerateBuildsInVisualStudio>false</AccelerateBuildsInVisualStudio>
2324
<ImplicitUsings>enable</ImplicitUsings>
24-
<NoWarn>CA1014,NU5104,NETSDK1138</NoWarn>
25+
<NoWarn>CA1014,NU5104,NETSDK1138,SYSLIB0051</NoWarn>
2526
<CheckEolTargetFramework>false</CheckEolTargetFramework>
2627

2728
<!-- Used by code coverage -->
@@ -38,7 +39,7 @@
3839
<PropertyGroup Label="Analyzer settings">
3940
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
4041
<EnableNETAnalyzers>true</EnableNETAnalyzers>
41-
<AnalysisLevel>latest</AnalysisLevel>
42+
<AnalysisLevel>7</AnalysisLevel>
4243
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
4344
</PropertyGroup>
4445

@@ -50,7 +51,7 @@
5051
<!-- Shared code analyzers used for all projects in the solution -->
5152
<ItemGroup Label="Code Analyzers">
5253
<PackageReference Include="AsyncFixer" Version="1.6.0" PrivateAssets="All" />
53-
<PackageReference Include="SonarAnalyzer.CSharp" Version="9.6.0.74858" PrivateAssets="All" />
54+
<PackageReference Include="SonarAnalyzer.CSharp" Version="9.9.0.77355" PrivateAssets="All" />
5455
</ItemGroup>
5556

5657
<ItemGroup Label="Implicit usings"

benchmark/bunit.benchmarks/bunit.benchmarks.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="BenchmarkDotNet" Version="0.13.5" />
11+
<PackageReference Include="BenchmarkDotNet" Version="0.13.7" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

0 commit comments

Comments
 (0)