Skip to content

test(deps): Bump the tests group with 14 updates#188

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/Sentry.CrashReporter/tests-eac9c707fd
Closed

test(deps): Bump the tests group with 14 updates#188
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/Sentry.CrashReporter/tests-eac9c707fd

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 12, 2026

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Updated CommunityToolkit.WinUI.Controls.Segmented from 8.2.250402 to 8.2.251219.

Release notes

Sourced from CommunityToolkit.WinUI.Controls.Segmented's releases.

8.2.251219

What's Changed

An incremental update of various fixes atop the 8.2 release: 8.2.251219.

For changes since 8.1, see the full 8.2 release notes here. Below are changes since 8.2.250402.

Bug Fixes

Infrastructure

New Contributors

Full Changelog: CommunityToolkit/Windows@v8.2.250402...v8.2.251219

Windows Community Toolkit Labs 🧪

As always, be sure to follow the Windows Community Toolkit Labs releases for the latest new controls and experiments getting worked on! Now published to NuGet as well! See updates in that release feed here.

Share on Social

X/Twitter
... (truncated)

Commits viewable in compare view.

Updated CommunityToolkit.WinUI.Converters from 8.2.250402 to 8.2.251219.

Release notes

Sourced from CommunityToolkit.WinUI.Converters's releases.

8.2.251219

What's Changed

An incremental update of various fixes atop the 8.2 release: 8.2.251219.

For changes since 8.1, see the full 8.2 release notes here. Below are changes since 8.2.250402.

Bug Fixes

Infrastructure

New Contributors

Full Changelog: CommunityToolkit/Windows@v8.2.250402...v8.2.251219

Windows Community Toolkit Labs 🧪

As always, be sure to follow the Windows Community Toolkit Labs releases for the latest new controls and experiments getting worked on! Now published to NuGet as well! See updates in that release feed here.

Share on Social

X/Twitter
... (truncated)

Commits viewable in compare view.

Updated FluentAssertions from 7.2.2 to 8.9.0.

Release notes

Sourced from FluentAssertions's releases.

8.9.0

What's Changed

New features

Improvements

Fixes

Documentation

Others

8.8.0

What's Changed

New features

Improvements

Documentation

Others

Full Changelog: fluentassertions/fluentassertions@8.7.1...8.8.0

8.7.1

What's Changed

Others

Full Changelog: fluentassertions/fluentassertions@8.7.0...8.7.1

8.7.0

What's Changed

New features

Others

Full Changelog: fluentassertions/fluentassertions@8.6.0...8.7.0

8.6.0

What's Changed

Improvements

Others

New Contributors

Full Changelog: fluentassertions/fluentassertions@8.5.0...8.6.0

8.5.0

What's Changed

New features

Fixes

Others

Full Changelog: fluentassertions/fluentassertions@8.4.0...8.5.0

8.4.0

What's Changed

Improvements

Others

New Contributors

Full Changelog: fluentassertions/fluentassertions@8.3.0...8.4.0

8.3.0

What's Changed

Improvements

Others

Full Changelog: fluentassertions/fluentassertions@8.2.0...8.3.0

8.2.0

What's Changed

Improvements

Fixes

Others

Full Changelog: fluentassertions/fluentassertions@8.1.1...8.2.0

8.1.1

What's Changed

Fixes

Full Changelog: fluentassertions/fluentassertions@8.1.0...8.1.1

8.1.0

What's Changed

Improvements

Fixes

Documentation

Others

New Contributors

Full Changelog: fluentassertions/fluentassertions@8.0.1...8.1.0

8.0.1

What's Changed

Improvements

Others

Full Changelog: fluentassertions/fluentassertions@8.0.0...8.0.1

8.0.0

What's Changed

License change

Breaking Changes

New features

Improvements

8.0.0-rc.2

What's Changed

Fixes

Others

Full Changelog: fluentassertions/fluentassertions@8.0.0-rc.1...8.0.0-rc.2

8.0.0-rc.1

What's Changed

Breaking Changes

Fixes

Documentation

Others

8.0.0-alpha.1

What's Changed

Others

Full Changelog: fluentassertions/fluentassertions@7.0.0-alpha.6...8.0.0-alpha.1

Commits viewable in compare view.

Updated GitHubActionsTestLogger from 3.0.3 to 3.0.4.

Release notes

Sourced from GitHubActionsTestLogger's releases.

3.0.4

What's Changed

Enhancements

Bugs

Full Changelog: Tyrrrz/GitHubActionsTestLogger@3.0.3...3.0.4

Commits viewable in compare view.

Updated KaitaiStruct.Runtime.CSharp from 0.10.0 to 0.11.0.

Release notes

Sourced from KaitaiStruct.Runtime.CSharp's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.NET.Test.Sdk from 18.5.0 to 18.5.1.

Release notes

Sourced from Microsoft.NET.Test.Sdk's releases.

18.5.1

What's Changed

Full Changelog: microsoft/vstest@v18.5.0...v18.5.1

Commits viewable in compare view.

Updated MSTest.TestFramework from 3.11.0 to 4.2.2.

Release notes

Sourced from MSTest.TestFramework's releases.

4.2.2

See the release notes here

4.2.1

See the release notes here

4.1.0

See the release notes here

4.0.2

See the release notes here

4.0.1

See the release notes here

4.0.0

What is new?

Assert.That

MSTest v4 adds a new type of assertion, that allows you to write any expression, and it will inspect the result to give you more information on failure. Providing a very flexible way to assert complicated expressions. Here a simple example:

[TestClass]
public sealed class Test1
{
    [TestMethod]
    public void TestMethod1()
    {
        var animal = "Tiger";
        var zoo = new Zoo();
        Assert.That(() => zoo.GetAnimal() == animal);
    }
}

public class Zoo
{
    public string GetAnimal()
    {
        return "Giraffe";
    }
}
Assert.That(() => zoo.GetAnimal() == animal) failed.
Details:
    animal = "Tiger"     
    zoo.GetAnimal() = "Giraffe"

CallerArgumentExpression

CallerArgumentExpression is consumed by all assertions, to make them aware of the expressions used in the assertion. In the example below, we now know what both the expected and actual values are. But also what value they come from, giving us opportunity to provide better error messages:

[TestClass]
public sealed class Test1
{
    [TestMethod]
    public void TestMethod1()
    {
        string animal = null;
        Assert.AreEqual("Giraffe", animal);
    }
}
 ... (truncated)

## 4.0.0-preview.25372.6

This is a prerelease of MSTest v4. Docs on migration from v3 to v4 are in progress. We are working towards addressing the items tracked in #​1285 and #​5762

## 4.0.0-preview.25358.7

This is a prerelease of MSTest v4. Docs on migration from v3 to v4 are in progress. We are working towards addressing the items tracked in https://github.com/microsoft/testfx/issues/1285 and https://github.com/microsoft/testfx/issues/5762

## 3.11.1

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.1)

Commits viewable in [compare view](https://github.com/microsoft/testfx/compare/v3.11.0...v4.2.2).
</details>

Updated [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 13.0.3 to 13.0.4.

<details>
<summary>Release notes</summary>

_Sourced from [Newtonsoft.Json's releases](https://github.com/JamesNK/Newtonsoft.Json/releases)._

## 13.0.4

* New feature - Annotated for trim/AOT (in)compatibility
* New feature - Added support for using Index with JArray
* Change - Avoid LINQ expression trees in .NET 6+ reflection
* Fix - Fixed handling of empty constructor names
* Fix - Fixed XML convert duplicate attribute error on nested arrays with writeArrayAttribute set to true
* Fix - Fixed XML convert array attribute is not set for properties with special characters
* Fix - Fixed TimeOnly deserialization to support more formats

Commits viewable in [compare view](https://github.com/JamesNK/Newtonsoft.Json/compare/13.0.3...13.0.4).
</details>

Updated [NUnit](https://github.com/nunit/nunit) from 4.5.1 to 4.6.0.

<details>
<summary>Release notes</summary>

_Sourced from [NUnit's releases](https://github.com/nunit/nunit/releases)._

## 4.6.0

See [release notes](https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-460---may-4-2026) for details.

Commits viewable in [compare view](https://github.com/nunit/nunit/compare/4.5.1...v4.6.0).
</details>

Updated [ReactiveUI.SourceGenerators](https://github.com/reactiveui/reactiveui.sourcegenerators) from 2.6.1 to 2.6.30.

<details>
<summary>Release notes</summary>

_Sourced from [ReactiveUI.SourceGenerators's releases](https://github.com/reactiveui/reactiveui.sourcegenerators/releases)._

## 2.6.30

## 🗞️ What's Changed

### ✨ Features
 * reactiveui/ReactiveUI.SourceGenerators@​dff50fe6c6a88ec01b96af2578245f8ee80da795 feature: Add XML doc comment support for generated properties (#​377) @​ChrisPulman

### 🐛 Fixes
 * reactiveui/ReactiveUI.SourceGenerators@​0a67b637c458867a2ea2e001f94027d1c6a02af0 Fix: Improve ObservableAsPropertyAttribute with string (#​376) @​ChrisPulman

### 🧹 General Changes
 * reactiveui/ReactiveUI.SourceGenerators@​ac374cb0708aa66e3e7724d3e7022729e8099850 Update release workflow configuration @​ChrisPulman
 * reactiveui/ReactiveUI.SourceGenerators@​ccf8e7efc6a81e8203ac8b888c8473347a8aa00b Update release workflow to include new jobs and permissions @​ChrisPulman
 * reactiveui/ReactiveUI.SourceGenerators@​1ea898c1e4c6277de52cc3083b3386c5f2eb96b1 Update generated test verifications and packages (#​393) @​ChrisPulman
 * reactiveui/ReactiveUI.SourceGenerators@​7441aba62d0794eff60aff2efabda9abadf60fb6 chore: Refactor CodeQL workflow for improved configuration @​glennawatson
 * reactiveui/ReactiveUI.SourceGenerators@​c33ee5640e7751fc1d66074d43879ed6da086e9b chore: Refactor and expand source generator test coverage (#​378) @​ChrisPulman
 * reactiveui/ReactiveUI.SourceGenerators@​a915d21bd9b089e157e3ab876ee201439de7adc8 Update test project to TUnit and regenerate outputs (#​396) @​ChrisPulman @​copilot-swe-agent[bot]

### 📦 Dependencies
 * reactiveui/ReactiveUI.SourceGenerators@​9c5166cc19ac447074af3d90bf433b49cc969cf4 chore(deps): update dependency verify.tunit to 31.15.0 (#​398) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​58ef996c4d7d4d7bbe617d8ceba6c8d8fda5ea05 chore(deps): update dependency tunit to 1.24.31 (#​397) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​8d87b1226a100e191afe7f517d94261e81c5bcc9 chore(deps): update dependency verify.tunit to 31.14.0 (#​394) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​69f4336268ebc0aea493474fd4e518a70fa1f9a7 chore(deps): update dependency tunit to 1.24.13 (#​395) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​97c2540f955f7ca5fcb48974a12bb04a3078c8f0 chore(deps): update dependency verify.nunit to 31.12.5 (#​379) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​f99f92ee607910a2e307a60c50d613499a715424 chore(deps): update avalonia to 11.3.12 (#​381) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​cf7ea718f3191f12110f896c903fd53dc2892af9 chore(deps): update dependency verify.nunit to 31.9.4 (#​372) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​84aa282ddcc1e221be4d932b6ee1468bb503a9f3 chore(deps): update avalonia to 11.3.13 (#​391) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​ca924ac1dfbfcc5fe1a8c61327abb4d34fa5517b chore(deps): update .net test stack (#​390) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​531fad7c8f89c605d48c7fce81f729bbc6bbd08c chore(deps): update dependency reactiveui.maui to v23 (#​385) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​8f976afc360f834c0d6b536149c87c9a4f56af4c chore(deps): update .net test stack (#​401) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​197effe120deaedf2946fe86d2bc68d4165ffaf8 chore(deps): update .net test stack (#​389) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​9222b0585893b97996e615054547b46e1ef94f01 chore(deps): update .net test stack (#​384) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​837884e403443555ee75362b9d80f50682831eee chore(deps): update dependency splat to 19.3.1 (#​386) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​585a7443ae900de6544f9a48a3f8d25d958575bc chore(deps): update dependency coverlet.msbuild to v8 (#​383) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​8ec029cd102c83eeae26fa6b5319412fb264b9e0 chore(deps): update avalonia to 11.3.11 (#​373) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​28eef19b363a53c679f334217378d4e83875d6d7 chore(deps): update dependency tunit to 1.37.36 (#​400) @​renovate[bot]
 * reactiveui/ReactiveUI.SourceGenerators@​a7bd841287fa154acee321b6143cea34d06b6ace chore(deps): update avalonia to 11.3.14 (#​403) @​renovate[bot]

### 📌 Other
 * reactiveui/ReactiveUI.SourceGenerators@​499cb4d63f65ac7c54aaf7deb5597d0d77a9852f Support AccessModifier for BindableDerivedList (#​399) @​ChrisPulman
 * reactiveui/ReactiveUI.SourceGenerators@​7b4162e8c9b722afc9f62e35c505b2da9bce30ab Remove installWorkflows from release configuration @​ChrisPulman
 * reactiveui/ReactiveUI.SourceGenerators@​ae298ad1ba303cc0d2890c63009a0b092cfd7dcd Bump ReactiveUI to V23 and adapt generators (#​392) @​ChrisPulman

🔗 **Full Changelog**: https://github.com/reactiveui/ReactiveUI.SourceGenerators/compare/2.6.1...2.6.30

### 🙌 Contributions
💖 Thanks to all the contributors: @​ChrisPulman, @​glennawatson

🤖 Automated services that contributed: @​copilot-swe-agent[bot], @​renovate[bot]

Commits viewable in [compare view](https://github.com/reactiveui/reactiveui.sourcegenerators/compare/2.6.1...2.6.30).
</details>

Updated [Uno.CommunityToolkit.WinUI.UI.Controls.DataGrid](https://github.com/unoplatform/Uno.WindowsCommunityToolkit) from 7.1.204 to 7.1.205.

<details>
<summary>Release notes</summary>

_Sourced from [Uno.CommunityToolkit.WinUI.UI.Controls.DataGrid's releases](https://github.com/unoplatform/Uno.WindowsCommunityToolkit/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/unoplatform/Uno.WindowsCommunityToolkit/commits).
</details>

Updated [Uno.UITest.Helpers](https://github.com/unoplatform/Uno.UITest) from 1.1.0-dev.70 to 1.1.0-dev.92.

<details>
<summary>Release notes</summary>

_Sourced from [Uno.UITest.Helpers's releases](https://github.com/unoplatform/Uno.UITest/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/unoplatform/Uno.UITest/commits).
</details>

Updated [WireMock.Net](https://github.com/wiremock/WireMock.Net) from 1.14.0 to 2.6.0.

<details>
<summary>Release notes</summary>

_Sourced from [WireMock.Net's releases](https://github.com/wiremock/WireMock.Net/releases)._

## 2.6.0

## What's Changed
* Fix request storing when RequestLogExpirationDuration is set [bug]  by @​pbenko-xitaso in https://github.com/wiremock/WireMock.Net/pull/1455

## New Contributors
* @​pbenko-xitaso made their first contribution in https://github.com/wiremock/WireMock.Net/pull/1455

**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/2.5.0...2.6.0

## 2.5.0

## What's Changed
* Bump log4net from 2.0.15 to 3.3.0 in example console app by @​dependabot[bot] in https://github.com/wiremock/WireMock.Net/pull/1452
* Fix CVE-2026-40021: upgrade log4net to 3.3.0 in examples/WireMock.Net.Service/packages.config by @​Copilot in https://github.com/wiremock/WireMock.Net/pull/1453
* Feature/early mismatch by @​Stepami in https://github.com/wiremock/WireMock.Net/pull/1451

## New Contributors
* @​Copilot made their first contribution in https://github.com/wiremock/WireMock.Net/pull/1453
* @​Stepami made their first contribution in https://github.com/wiremock/WireMock.Net/pull/1451

**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/2.4.0...2.5.0

## 2.4.0

## What's Changed
* Added feature to enable and disable mappings by @​jayaraman-venkatesan in https://github.com/wiremock/WireMock.Net/pull/1437
* Bump OpenTelemetry.Exporter.OpenTelemetryProtocol from 1.14.0 to 1.15.x by @​dependabot[bot] in https://github.com/wiremock/WireMock.Net/pull/1450


**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/2.3.0...2.4.0

## 2.3.0

## What's Changed
* Fix WireMock.Net.WebApplication.IIS example by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1435
* Moving Scenario state change before global response delay is set by @​jayaraman-venkatesan in https://github.com/wiremock/WireMock.Net/pull/1436
* Bump log4net from 2.0.15 to 3.3.0 by @​dependabot[bot] in https://github.com/wiremock/WireMock.Net/pull/1440
* Update instructions.md by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1444
* Fix ExactMatcher and JsonMatcher not working for ISO dates as string by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1443
* Use DefaultJsonSerializer for BodyAsJson-Response by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1448

## New Contributors
* @​jayaraman-venkatesan made their first contribution in https://github.com/wiremock/WireMock.Net/pull/1436

**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/2.2.0...2.3.0

## 2.2.0

## What's Changed
* Upgrade Scriban.Signed by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1434
* Add comments for ScenarioStateStore related code by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1433


**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/2.1.0...2.2.0

## 2.1.0

## What's Changed
* Fix WireMockLogger implementation in dotnet-WireMock by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1431
* Add WireMockAspNetCoreLogger to log Kestrel warnings/errors by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1432
* Add helpers for query params fluent MappingModelBuilder by @​biltongza in https://github.com/wiremock/WireMock.Net/pull/1425
* Add injectable IScenarioStateStore for distributed scenario state by @​m4tchl0ck in https://github.com/wiremock/WireMock.Net/pull/1430

## New Contributors
* @​biltongza made their first contribution in https://github.com/wiremock/WireMock.Net/pull/1425
* @​m4tchl0ck made their first contribution in https://github.com/wiremock/WireMock.Net/pull/1430

**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/2.0.0...2.1.0

## 2.0.0

## What's Changed
* MappingSerializer (Newtonsoft or SystemText)-Json by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1394
* Version 2.x by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1359


**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/1.25.0...2.0.0

## 1.25.0

## What's Changed
* Fix MimePartMatcher and add more tests by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1389


**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/1.24.0...1.25.0

## 1.24.0

## What's Changed
* Update aspire to 13.1 (examples + code) by @​petrroll in https://github.com/wiremock/WireMock.Net/pull/1417
* Add Copilot Setup Steps action by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1419
* Add OTEL tracing support for Wiremock + automatic OTEL for Aspire integration by @​petrroll in https://github.com/wiremock/WireMock.Net/pull/1418

## New Contributors
* @​petrroll made their first contribution in https://github.com/wiremock/WireMock.Net/pull/1417

**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/1.23.0...1.24.0

## 1.23.0

## What's Changed
* Pass the parameter matchOperator in Request.WithPath to its inner calls by @​gbamqzkdyg in https://github.com/wiremock/WireMock.Net/pull/1414
* Fix: Pass AllowedHandlebarsHelpers configuration to Handlebars.Net.Helpers library by @​samlatham in https://github.com/wiremock/WireMock.Net/pull/1416

## New Contributors
* @​gbamqzkdyg made their first contribution in https://github.com/wiremock/WireMock.Net/pull/1414
* @​samlatham made their first contribution in https://github.com/wiremock/WireMock.Net/pull/1416

**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/1.22.0...1.23.0

## 1.22.0

## What's Changed
* chore(testcontainers): bump up Testcontainers to version 4.10.0 by @​vhatsura in https://github.com/wiremock/WireMock.Net/pull/1412

## New Contributors
* @​vhatsura made their first contribution in https://github.com/wiremock/WireMock.Net/pull/1412

**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/1.21.0...1.22.0

## 1.21.0

## What's Changed
* Re-enable TestcontainersTestsGrpc by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1406
* vmImage: 'windows-2025' by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1407
* Fix readyness-check for Testcontainers by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1408


**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/1.20.0...1.21.0

## 1.20.0

## What's Changed
* Upgrade RamlToOpenApiConverter and YamlDotNet by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1399
* Fix Grpc tests by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1401
* Add WireMock.Net.NUnit project by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1400
* Run the Grpc TestcontainersTests sequential by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1402
* Fix Testcontainers AddProtoDefinition by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1405


**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/1.19.0...1.20.0

## 1.19.0

## What's Changed
* Update WireMockContainerBuilder (WithImage and WithCustomImage) by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1391
* WireMockContainerBuilder: allow all docker images named wiremock by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1392


**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/1.18.0...1.19.0

## 1.18.0

## What's Changed
* Add WithBodyAsType to RequestMatcher by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1388


**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/1.17.0...1.18.0

## 1.17.0

## What's Changed
* Fix BuildId by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1384
* Fix random delay in mapping json file by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1386
* Aspir...

_Descr...

_Description has been truncated_

Bumps CommunityToolkit.WinUI.Controls.Segmented from 8.2.250402 to 8.2.251219
Bumps CommunityToolkit.WinUI.Converters from 8.2.250402 to 8.2.251219
Bumps FluentAssertions from 7.2.2 to 8.9.0
Bumps GitHubActionsTestLogger from 3.0.3 to 3.0.4
Bumps KaitaiStruct.Runtime.CSharp from 0.10.0 to 0.11.0
Bumps Microsoft.NET.Test.Sdk from 18.5.0 to 18.5.1
Bumps MSTest.TestFramework from 3.11.0 to 4.2.2
Bumps Newtonsoft.Json from 13.0.3 to 13.0.4
Bumps NUnit from 4.5.1 to 4.6.0
Bumps ReactiveUI.SourceGenerators from 2.6.1 to 2.6.30
Bumps Uno.CommunityToolkit.WinUI.UI.Controls.DataGrid from 7.1.204 to 7.1.205
Bumps Uno.UITest.Helpers from 1.1.0-dev.70 to 1.1.0-dev.92
Bumps WireMock.Net from 1.14.0 to 2.6.0
Bumps Xamarin.UITest from 4.3.4 to 4.4.2

---
updated-dependencies:
- dependency-name: CommunityToolkit.WinUI.Controls.Segmented
  dependency-version: 8.2.251219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: CommunityToolkit.WinUI.Converters
  dependency-version: 8.2.251219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: KaitaiStruct.Runtime.CSharp
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tests
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.5.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: MSTest.TestFramework
  dependency-version: 4.2.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: tests
- dependency-name: ReactiveUI.SourceGenerators
  dependency-version: 2.6.30
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: Uno.CommunityToolkit.WinUI.UI.Controls.DataGrid
  dependency-version: 7.1.205
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: CommunityToolkit.WinUI.Controls.Segmented
  dependency-version: 8.2.251219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: CommunityToolkit.WinUI.Converters
  dependency-version: 8.2.251219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: FluentAssertions
  dependency-version: 8.9.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: tests
- dependency-name: GitHubActionsTestLogger
  dependency-version: 3.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: KaitaiStruct.Runtime.CSharp
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tests
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.5.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: NUnit
  dependency-version: 4.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tests
- dependency-name: ReactiveUI.SourceGenerators
  dependency-version: 2.6.30
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: Uno.CommunityToolkit.WinUI.UI.Controls.DataGrid
  dependency-version: 7.1.205
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: CommunityToolkit.WinUI.Controls.Segmented
  dependency-version: 8.2.251219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: CommunityToolkit.WinUI.Converters
  dependency-version: 8.2.251219
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: FluentAssertions
  dependency-version: 8.9.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: tests
- dependency-name: GitHubActionsTestLogger
  dependency-version: 3.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: KaitaiStruct.Runtime.CSharp
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tests
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.5.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: Newtonsoft.Json
  dependency-version: 13.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: NUnit
  dependency-version: 4.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tests
- dependency-name: ReactiveUI.SourceGenerators
  dependency-version: 2.6.30
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: Uno.CommunityToolkit.WinUI.UI.Controls.DataGrid
  dependency-version: 7.1.205
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: Uno.UITest.Helpers
  dependency-version: 1.1.0-dev.92
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tests
- dependency-name: WireMock.Net
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: tests
- dependency-name: Xamarin.UITest
  dependency-version: 4.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tests
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels May 12, 2026
@dependabot dependabot Bot added the .NET Pull requests that update .NET code label May 12, 2026
Copy link
Copy Markdown
Contributor

@cursor cursor Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 2 potential issues.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit 1b52697. Configure here.

<PackageReference Include="CommunityToolkit.WinUI.Converters" />
<PackageReference Include="KaitaiStruct.Runtime.CSharp"/>
<PackageReference Include="Microsoft.Extensions.Http.Resilience" />
<PackageReference Include="Newtonsoft.Json" />
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unused Newtonsoft.Json dependency added to production app

Low Severity

Newtonsoft.Json is being added as a new explicit dependency to the main application project (Sentry.CrashReporter), but no code anywhere in that project imports or uses it. A grep for Newtonsoft, JsonConvert, JObject, JArray, or JToken across all source files in Sentry.CrashReporter/ finds zero code references — only the package definition itself. This adds an unnecessary runtime dependency to the production app, increasing its size. The test project already had this dependency, but adding it to the main project appears unintended.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 1b52697. Configure here.

<PackageReference Include="CommunityToolkit.WinUI.Converters" />
<PackageReference Include="KaitaiStruct.Runtime.CSharp"/>
<PackageReference Include="Microsoft.Extensions.Http.Resilience" />
<PackageReference Include="Newtonsoft.Json" />
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inconsistent indentation on new PackageReference line

Low Severity

The newly added Newtonsoft.Json PackageReference line uses 4 spaces of indentation, while all other PackageReference entries in the same ItemGroup (lines 110–113, 115+) use 10 spaces. This breaks the formatting consistency of the file.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 1b52697. Configure here.

@jpnurmi jpnurmi closed this May 12, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 12, 2026

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot Bot deleted the dependabot/nuget/Sentry.CrashReporter/tests-eac9c707fd branch May 12, 2026 09:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code skip-changelog

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant