Skip to content

Commit 1b41229

Browse files
Update dependency NUnit to v4 (#1993)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [NUnit](https://nunit.org/) ([source](https://redirect.github.com/nunit/nunit)) | nuget | major | `3.14.0` -> `4.3.2` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>nunit/nunit (NUnit)</summary> ### [`v4.3.2`](https://redirect.github.com/nunit/nunit/releases/tag/4.3.2): NUnit 4.3.2 [Compare Source](https://redirect.github.com/nunit/nunit/compare/4.3.1...4.3.2) This is a hotfix release. See [release notes](https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-432----dec-28-2024) for details. ### [`v4.3.1`](https://redirect.github.com/nunit/nunit/releases/tag/4.3.1): NUnit 4.3.1 [Compare Source](https://redirect.github.com/nunit/nunit/compare/4.3.0...4.3.1) This is a hotfix release. See [release notes](https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-431----dec-21-2024) for details. ### [`v4.3.0`](https://redirect.github.com/nunit/nunit/releases/tag/4.3.0): NUnit 4.3.0 [Compare Source](https://redirect.github.com/nunit/nunit/compare/4.2.2...4.3.0) See [release notes](https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-430----dec-15-2024) ### [`v4.2.2`](https://redirect.github.com/nunit/nunit/releases/tag/4.2.2): NUnit 4.2.2 [Compare Source](https://redirect.github.com/nunit/nunit/compare/4.2.1...4.2.2) Hotfix for fixing regression bug [#&#8203;4802](https://redirect.github.com/nunit/nunit/issues/4802) ##### What's Changed - Use default blocking strategy for valuetasks by [@&#8203;stevenaw](https://redirect.github.com/stevenaw) in [https://github.com/nunit/nunit/pull/4804](https://redirect.github.com/nunit/nunit/pull/4804) **Full Changelog**: nunit/nunit@4.2.1...4.2.2 ### [`v4.2.1`](https://redirect.github.com/nunit/nunit/releases/tag/4.2.1): NUnit 4.2.1 [Compare Source](https://redirect.github.com/nunit/nunit/compare/4.2.0...4.2.1) Hotfix release for Issue [#&#8203;4794](https://redirect.github.com/nunit/nunit/issues/4794) and [#&#8203;4795](https://redirect.github.com/nunit/nunit/issues/4795), affecting .Net Framework. ### [`v4.2.0`](https://redirect.github.com/nunit/nunit/releases/tag/4.2.0): NUnit 4.2.0 [Compare Source](https://redirect.github.com/nunit/nunit/compare/4.1.0...4.2.0) See [release notes](https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-42---august-23-2024) ### [`v4.1.0`](https://redirect.github.com/nunit/nunit/releases/tag/4.1.0): NUnit 4.1.0 See [release notes](https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-41---february-23-2024) ### [`v4.0.1`](https://redirect.github.com/nunit/nunit/releases/tag/v4.0.1): NUnit 4.0.1 Patch release to fix windows targets See [release notes](https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-401---december-2-2023) and See [migration guide](https://docs.nunit.org/articles/nunit/release-notes/Nunit4.0-MigrationGuide.html) ### [`v4.0.0`](https://redirect.github.com/nunit/nunit/blob/HEAD/CHANGES.md#NUnit-400---November-26-2023) All changes, see [release notes](https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-400) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - "every weekday" (UTC). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOS4wIiwidXBkYXRlZEluVmVyIjoiMzkuMTkuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJpbXBhY3Qvbm8tY2hhbmdlbG9nLXJlcXVpcmVkIl19--> Co-authored-by: pulumi-renovate[bot] <189166143+pulumi-renovate[bot]@users.noreply.github.com>
1 parent 2223d4d commit 1b41229

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

testing-unit-cs-mocks/UnitTesting.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<ItemGroup>
1010
<PackageReference Include="FluentAssertions" Version="8.0.1" />
1111
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
12-
<PackageReference Include="NUnit" Version="3.14.0" />
12+
<PackageReference Include="NUnit" Version="4.3.2" />
1313
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0" />
1414
<PackageReference Include="Pulumi" Version="3.*" />
1515
<PackageReference Include="Pulumi.AzureNative" Version="2.*" />

testing-unit-cs-top-level-program/tests/Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<ItemGroup>
1212
<PackageReference Include="FluentAssertions" Version="8.0.1" />
1313
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
14-
<PackageReference Include="NUnit" Version="3.14.0" />
14+
<PackageReference Include="NUnit" Version="4.3.2" />
1515
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0" />
1616
<PackageReference Include="NUnit.Analyzers" Version="4.6.0" />
1717
<PackageReference Include="coverlet.collector" Version="6.0.4" />

testing-unit-cs/UnitTesting.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<ItemGroup>
1010
<PackageReference Include="FluentAssertions" Version="8.0.1" />
1111
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
12-
<PackageReference Include="NUnit" Version="3.14.0" />
12+
<PackageReference Include="NUnit" Version="4.3.2" />
1313
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0" />
1414
<PackageReference Include="Pulumi" Version="3.*" />
1515
<PackageReference Include="Pulumi.Aws" Version="6.68.0" />

testing-unit-fs-mocks/UnitTestingFs.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<ItemGroup>
1010
<PackageReference Include="FluentAssertions" Version="5.10.3" />
1111
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
12-
<PackageReference Include="NUnit" Version="3.14.0" />
12+
<PackageReference Include="NUnit" Version="4.3.2" />
1313
<PackageReference Include="NUnit3TestAdapter" Version="5.0.0" />
1414
<PackageReference Include="Pulumi.Azure" Version="4.*" />
1515
<PackageReference Include="Pulumi" Version="3.*" />

0 commit comments

Comments
 (0)