Skip to content

Bump the all group with 14 updates#32

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/nuget/UnitTest/Test.Net-5.0/all-a666ab9a5f
Closed

Bump the all group with 14 updates#32
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/nuget/UnitTest/Test.Net-5.0/all-a666ab9a5f

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 1, 2026

Updated coverlet.collector from 6.0.4 to 8.0.0.

Release notes

Sourced from coverlet.collector's releases.

8.0.0

Special Thanks: A huge thank you to @​Bertk for driving the majority of the work in this release! 🎉

Fixed

Improvements

  • Coverlet MTP extension feature #​1788
  • Generate SBOM for nuget packages #​1752
  • Use multi targets projects for coverlet.collector, coverlet.msbuild.tasks packages #​1742
  • Use .NET 8.0 target framework for coverlet.core and remove Newtonsoft.Json #​1733
  • Use latest System.CommandLine version #​1660
  • Upgraded minimum required .NET SDK and runtime to .NET 8.0 LTS (Long Term Support) (Breaking Change)
  • Use xunit.v3 for tests and example code

Diff between 6.0.4 and 8.0.0

Commits viewable in compare view.

Updated Microsoft.Testing.Extensions.Telemetry from 2.0.2 to 2.1.0.

Release notes

Sourced from Microsoft.Testing.Extensions.Telemetry's releases.

2.1.0

See release notes here.

2.1.0-beta2

  1. Add the ability to specify Friendly test names for test methods (#​466)

See release notes here

2.1.0-beta

  1. Fix incompatibility between multiple versions of mstest adapter present in a solution (Configuring child domain's appbase to be test source location microsoft/testfx#659)
  2. Build script fix to work with VS2019 (Fix build script to work with VS2019 microsoft/testfx#641)

See release notes here

Commits viewable in compare view.

Updated Microsoft.Testing.Extensions.TrxReport.Abstractions from 2.0.2 to 2.1.0.

Release notes

Sourced from Microsoft.Testing.Extensions.TrxReport.Abstractions's releases.

2.1.0

See release notes here.

2.1.0-beta2

  1. Add the ability to specify Friendly test names for test methods (#​466)

See release notes here

2.1.0-beta

  1. Fix incompatibility between multiple versions of mstest adapter present in a solution (Configuring child domain's appbase to be test source location microsoft/testfx#659)
  2. Build script fix to work with VS2019 (Fix build script to work with VS2019 microsoft/testfx#641)

See release notes here

Commits viewable in compare view.

Updated Microsoft.Testing.Extensions.VSTestBridge from 2.0.2 to 2.1.0.

Release notes

Sourced from Microsoft.Testing.Extensions.VSTestBridge's releases.

2.1.0

See release notes here.

2.1.0-beta2

  1. Add the ability to specify Friendly test names for test methods (#​466)

See release notes here

2.1.0-beta

  1. Fix incompatibility between multiple versions of mstest adapter present in a solution (Configuring child domain's appbase to be test source location microsoft/testfx#659)
  2. Build script fix to work with VS2019 (Fix build script to work with VS2019 microsoft/testfx#641)

See release notes here

Commits viewable in compare view.

Updated Microsoft.Testing.Platform from 2.0.2 to 2.1.0.

Release notes

Sourced from Microsoft.Testing.Platform's releases.

2.1.0

See release notes here.

2.1.0-beta2

  1. Add the ability to specify Friendly test names for test methods (#​466)

See release notes here

2.1.0-beta

  1. Fix incompatibility between multiple versions of mstest adapter present in a solution (Configuring child domain's appbase to be test source location microsoft/testfx#659)
  2. Build script fix to work with VS2019 (Fix build script to work with VS2019 microsoft/testfx#641)

See release notes here

Commits viewable in compare view.

Updated Microsoft.Testing.Platform.MSBuild from 2.0.2 to 2.1.0.

Release notes

Sourced from Microsoft.Testing.Platform.MSBuild's releases.

2.1.0

See release notes here.

2.1.0-beta2

  1. Add the ability to specify Friendly test names for test methods (#​466)

See release notes here

2.1.0-beta

  1. Fix incompatibility between multiple versions of mstest adapter present in a solution (Configuring child domain's appbase to be test source location microsoft/testfx#659)
  2. Build script fix to work with VS2019 (Fix build script to work with VS2019 microsoft/testfx#641)

See release notes here

Commits viewable in compare view.

Updated Microsoft.TestPlatform.AdapterUtilities from 18.0.1 to 18.3.0.

Release notes

Sourced from Microsoft.TestPlatform.AdapterUtilities's releases.

18.3.0

What's Changed

Internal fixes and updates

New Contributors

Commits viewable in compare view.

Updated Microsoft.TestPlatform.ObjectModel from 18.0.1 to 18.3.0.

Release notes

Sourced from Microsoft.TestPlatform.ObjectModel's releases.

18.3.0

What's Changed

Internal fixes and updates

New Contributors

Commits viewable in compare view.

Updated MSTest.Analyzers from 4.0.2 to 4.1.0.

Release notes

Sourced from MSTest.Analyzers's releases.

4.1.0

See the release notes here

Commits viewable in compare view.

Updated MSTest.TestAdapter from 3.11.1 to 4.1.0.

Release notes

Sourced from MSTest.TestAdapter's releases.

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

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

Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.0.2 to 4.1.0.

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

_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._

## 4.1.0

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

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

Updated [System.Collections.Immutable](https://github.com/dotnet/dotnet) from 10.0.2 to 10.0.3.

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

_Sourced from [System.Collections.Immutable's releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

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

Updated [System.Diagnostics.DiagnosticSource](https://github.com/dotnet/dotnet) from 10.0.2 to 10.0.3.

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

_Sourced from [System.Diagnostics.DiagnosticSource's releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

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

Updated [System.Reflection.Metadata](https://github.com/dotnet/dotnet) from 10.0.2 to 10.0.3.

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

_Sourced from [System.Reflection.Metadata's releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

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

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions


</details>

Bumps coverlet.collector from 6.0.4 to 8.0.0
Bumps Microsoft.Testing.Extensions.Telemetry from 2.0.2 to 2.1.0
Bumps Microsoft.Testing.Extensions.TrxReport.Abstractions from 2.0.2 to 2.1.0
Bumps Microsoft.Testing.Extensions.VSTestBridge from 2.0.2 to 2.1.0
Bumps Microsoft.Testing.Platform from 2.0.2 to 2.1.0
Bumps Microsoft.Testing.Platform.MSBuild from 2.0.2 to 2.1.0
Bumps Microsoft.TestPlatform.AdapterUtilities from 18.0.1 to 18.3.0
Bumps Microsoft.TestPlatform.ObjectModel from 18.0.1 to 18.3.0
Bumps MSTest.Analyzers from 4.0.2 to 4.1.0
Bumps MSTest.TestAdapter from 3.11.1 to 4.1.0
Bumps MSTest.TestFramework from 4.0.2 to 4.1.0
Bumps System.Collections.Immutable from 10.0.2 to 10.0.3
Bumps System.Diagnostics.DiagnosticSource from 10.0.2 to 10.0.3
Bumps System.Reflection.Metadata from 10.0.2 to 10.0.3

---
updated-dependencies:
- dependency-name: coverlet.collector
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: coverlet.collector
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: coverlet.collector
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: Microsoft.Testing.Extensions.Telemetry
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Microsoft.Testing.Extensions.TrxReport.Abstractions
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Microsoft.Testing.Extensions.VSTestBridge
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Microsoft.Testing.Platform
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Microsoft.Testing.Platform.MSBuild
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Microsoft.TestPlatform.AdapterUtilities
  dependency-version: 18.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Microsoft.TestPlatform.ObjectModel
  dependency-version: 18.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: MSTest.Analyzers
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: MSTest.TestAdapter
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: MSTest.TestAdapter
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: MSTest.TestAdapter
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: MSTest.TestAdapter
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: MSTest.TestFramework
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: MSTest.TestFramework
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: MSTest.TestFramework
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: MSTest.TestFramework
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: System.Collections.Immutable
  dependency-version: 10.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: System.Diagnostics.DiagnosticSource
  dependency-version: 10.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: System.Reflection.Metadata
  dependency-version: 10.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

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 Mar 1, 2026
@DaanV2
Copy link
Owner

DaanV2 commented Mar 1, 2026

Snyk checks have passed. No issues have been found so far.

Status Scanner Critical High Medium Low Total (0)
Open Source Security 0 0 0 0 0 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

@DaanV2 DaanV2 closed this Mar 1, 2026
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 1, 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/UnitTest/Test.Net-5.0/all-a666ab9a5f branch March 1, 2026 18:38
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant