Skip to content

Commit

Permalink
chore(deps): Update .net deps to v4 (major) (#113)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [NUnit](https://nunit.org/)
([source](https://togithub.com/nunit/nunit)) | `3.14.0` -> `4.0.1` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/NUnit/4.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/NUnit/4.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/NUnit/3.14.0/4.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/NUnit/3.14.0/4.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [cake.tool](https://cakebuild.net/)
([source](https://togithub.com/cake-build/cake)) | `3.2.0` -> `4.0.0` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/cake.tool/4.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/cake.tool/4.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/cake.tool/3.2.0/4.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/cake.tool/3.2.0/4.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>nunit/nunit (NUnit)</summary>

### [`v4.0.1`](https://togithub.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://togithub.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>

<details>
<summary>cake-build/cake (cake.tool)</summary>

###
[`v4.0.0`](https://togithub.com/cake-build/cake/blob/HEAD/ReleaseNotes.md#New-in-400-Released-20231118)

-   4266 Update LatestPotentialBreakingChange to 4.0.0.
- 4132 Add File APIs for setting timestamps (creation time, last write
time, last access time).
-   4250 Update System.Collections.Immutable to 8.0.0.
-   4260 Unzip alias should support overwrite files.
-   4251 Update System.Reflection.Metadata 8.0.0.
-   4249 Update Microsoft.Extensions.DependencyInjection to 8.0.0.
- 4197 Execution of Cake script fails if an addin defines an alias that
uses nullable reference types in its signature.
- 4150 Cake script is contributing unactionable diagnostics in VS Code
Problems pane.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/cerbos/cerbos-sdk-net).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Oğuzhan Durgun <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Oğuzhan Durgun <[email protected]>
  • Loading branch information
renovate[bot] and oguzhand95 authored Dec 7, 2023
1 parent 396adf5 commit b4ef660
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"cake.tool": {
"version": "3.2.0",
"version": "4.0.0",
"commands": [
"dotnet-cake"
]
Expand Down
6 changes: 3 additions & 3 deletions src/Sdk.UnitTests/Cerbos/Sdk/UnitTests/CerbosClientTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -225,15 +225,15 @@ public void PlanResources()
PlanResourcesFilter.Types.Expression.Types.Operand cond = have.Filter.Condition;
PlanResourcesFilter.Types.Expression expr = cond.Expression;

Assert.NotNull(expr);
Assert.That(expr, !Is.Null);
Assert.That(expr.Operator, Is.EqualTo("and"));

PlanResourcesFilter.Types.Expression argExpr = expr.Operands[0].Expression;
Assert.NotNull(argExpr);
Assert.That(argExpr, !Is.Null);
Assert.That(argExpr.Operator, Is.EqualTo("eq"));

PlanResourcesFilter.Types.Expression argExpr1 = expr.Operands[1].Expression;
Assert.NotNull(argExpr1);
Assert.That(argExpr1, !Is.Null);
Assert.That(argExpr1.Operator, Is.EqualTo("eq"));
}

Expand Down
2 changes: 1 addition & 1 deletion src/Sdk.UnitTests/Sdk.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="NUnit" Version="3.14.0" />
<PackageReference Include="NUnit" Version="4.0.1" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="NUnit.Analyzers" Version="3.10.0" />
<PackageReference Include="coverlet.collector" Version="6.0.0" />
Expand Down

0 comments on commit b4ef660

Please sign in to comment.