Skip to content

Bump the dependencies group with 4 updates#214

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/dot-config/dependencies-ee5ee43afe
Open

Bump the dependencies group with 4 updates#214
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/dot-config/dependencies-ee5ee43afe

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 11, 2026

Copy link
Copy Markdown
Contributor

Updated coverlet.msbuild from 8.0.1 to 10.0.1.

Release notes

Sourced from coverlet.msbuild's releases.

10.0.1

Improvements

Fixed

  • Fix inconsistent paths in cobertura reports #​1723
  • Fix when using "is" with "and" in pattern matching, branch coverage is lower than normal #​1313
  • Fix Coverlet flagging a branch for an async functions finally block where none exists #​1337
  • Fix Coverlet Tracker Missing CompilerGeneratedAttribute #​1828

Maintenance

  • Add architecture docs and diagrams for all integrations #​1927
  • Update NuGet packages and .NET SDK versions #​1933

Diff between 10.0.0 and 10.0.1

10.0.0

Improvements

  • Unique Report Filenames (coverlet.MTP and AzDO) #​1866
  • Add --coverlet-file-prefix option for unique report files #​1869
  • Introduce .NET 10 support #​1823

Fixed

  • Fix [BUG] Wrong branch rate on IAsyncEnumerable for generic type #​1836
  • Fix [BUG] Missing Coverage after moving to MTP #​1843
  • Fix [BUG] No coverage reported when targeting .NET Framework with 8.0.1 #​1842
  • Fix [BUG] Behavior changes between MTP and Legacy (msbuild) #​1878
  • Fix [BUG] Coverlet.MTP - Unable to load coverlet.mtp.appsettings.json #​1880
  • Fix [BUG] Coverlet.Collector produces empty report when Mediator.SourceGenerator is referenced #​1718 by https://github.com/yusyd
  • Fix [BUG] Crash during instrumentation (Methods using LibraryImport/DllImport have no body) #​1762

Maintenance

  • Add comprehensive async method tests and documentation for issue #​1864
  • Replace Tmds.ExecFunction Package in coverlet.core.coverage.tests #​1833
  • Add net9.0 and net10.0 targets #​1822

Diff between 8.0.1 and 10.0.0

Commits viewable in compare view.

Updated csharpier from 1.2.6 to 1.3.0.

Release notes

Sourced from csharpier's releases.

1.3.0

1.3.0

Breaking Changes

Change xml formatting to return error when it runs into syntax error so it is consistent with c# #​1854

Previously CSharpier treated an invalid xml file as a warning instead of an error. This was inconsistent with how it treated c# files.
Invalid c# or xml files are not treated as errors.
The --compilation-errors-as-warnings argument has been renamed to --syntax-errors-as-warnings and can be used to return warnings instead of errors when encountering invalid files.

What's Changed

Feature: Configurable whitespace handling for xml #​1790

CSharpier now supports two types of xml whitespace formatting strict or ignore.
By default all xml except xaml or axaml is treated as strict whitespace. See details

Feature: Move closing bracket for xml elements to the same line. #​1598

With strict xml whitespace handling, csharpier now keeps the closing bracket for an element on the same line instead of breaking it to a new line.

<!-- input & expected output -->
<ElementWithAttribute Attribute="AttributeValue__________________"
  >TextValue</ElementWithAttribute>

<!-- 1.2.6 -->
<ElementWithAttribute Attribute="AttributeValue__________________"
  >TextValue</ElementWithAttribute
>

Feature: Support for csharpier-ignore with XML formatter #​1788

CSharpier now supports csharpier-ignore in xml files. See details

Feature: Add MSBuild transitive and multi-target support #​1833

CSharpier.MSBuild can now work as a transitive dependency.

Feature: allow checking formatting with cache #​1830

The csharpier check command now supports a --use-cache option.

Feature: remove dependency on Microsoft.AspNetCore.App #​1508

Previously CSharpier required that Microsoft.AspNetCore.App be installed. CSharpier has been modified to use an HttpListener when it is run using server to remove the need for this dependency.

Fix: csharpier-ignore comment removes linespaces before block #​1867

CSharpier was removing blank lines before csharpier-ignore comments in some cases

// input and expected output
var x = 1;
    
// csharpier-ignore
var y=1;

/// 1.2.6
var x = 1;
// csharpier-ignore
var y=1;
 ... (truncated)

Commits viewable in [compare view](https://github.com/belav/csharpier/compare/1.2.6...1.3.0).
</details>

Updated [FluentAssertions](https://github.com/fluentassertions/fluentassertions) from 8.9.0 to 8.10.0.

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

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

## 8.10.0

<!-- Release notes generated using configuration in .github/release.yml at main -->

## What's Changed
### Improvements
* Fail with a descriptive error when path-based rules are used on value-semantic types by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3187
* Significantly speed up BeEquivalentTo for large unordered collections by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3188
* Add ComparingNullCollectionsAsEmpty and ComparingNullStringsAsEmpty options to BeEquivalentTo by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3202
* Include original index in extraneous item failure messages by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3203
### Documentation
* Reroute the docs link to Xceed by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3183
* Fix typo in release notes by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3194
* Fix typos in docs by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3197
### Others
* Bump flatted from 3.4.1 to 3.4.2 in the npm_and_yarn group across 1 directory by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3184
* Add AI assistant instruction file (agents.md) for Copilot, Claude, and JetBrains Junie by @​Copilot in https://github.com/fluentassertions/fluentassertions/pull/3176
* Bump smol-toml from 1.6.0 to 1.6.1 in the npm_and_yarn group across 1 directory by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3185
* Bump the npm_and_yarn group across 1 directory with 2 updates by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3186
* Bump cspell from 9.7.0 to 10.0.0 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3189
* Update nugets by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3192
* Fixup Qodana issues by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3193
* Fix Qodana argument separator by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3195
* Use new Qodana linter option by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3196
* Fix flaky BeLessThanOrEqualTo execution time test by @​Copilot in https://github.com/fluentassertions/fluentassertions/pull/3200
* Bump JetBrains/qodana-action from 2025.3 to 2026.1 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3201
* Use long for hashCode in ReferentialComparer to avoid overflow by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3204


**Full Changelog**: https://github.com/fluentassertions/fluentassertions/compare/8.9.0...8.10.0

Commits viewable in [compare view](https://github.com/fluentassertions/fluentassertions/compare/8.9.0...8.10.0).
</details>

Updated [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 18.4.0 to 18.6.0.

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

_Sourced from [Microsoft.NET.Test.Sdk's releases](https://github.com/microsoft/vstest/releases)._

## 18.6.0

## What's Changed
* Revert removal of Video Recorder by @​nohwnd in https://github.com/microsoft/vstest/pull/15336
* Speed up blame by filtering non-.NET processes from dump collection by @​nohwnd in https://github.com/microsoft/vstest/pull/15518 
* Add README.md to NuGet packages by @​nohwnd in https://github.com/microsoft/vstest/pull/15550
* Report child process info on connection timeout by @​nohwnd in https://github.com/microsoft/vstest/pull/15603


### Changes to tests and infra
* Brand as 18.6 by @​nohwnd in https://github.com/microsoft/vstest/pull/15423
* Upgrading code coverage version to 18.5.1, by @​fhnaseer in https://github.com/microsoft/vstest/pull/15422
* Updating System.Collections.Immutable to 9.0.11 by @​MSLukeWest in https://github.com/microsoft/vstest/pull/15425
* Fix attachVS when used for debugging integration tests by @​nohwnd in https://github.com/microsoft/vstest/pull/15451
* Replace dotnet.config, with global.json by @​nohwnd in https://github.com/microsoft/vstest/pull/15449
* Document debugging integration tests with AttachVS by @​Copilot in https://github.com/microsoft/vstest/pull/15452
* Fix stack overflow tests by @​nohwnd in https://github.com/microsoft/vstest/pull/15461
* Make TestAssets.sln buildable locally by @​Youssef1313 in https://github.com/microsoft/vstest/pull/15466
* Try filtering out tests by @​nohwnd in https://github.com/microsoft/vstest/pull/15463
* Build just once when tfms run in parallel by @​nohwnd in https://github.com/microsoft/vstest/pull/15465
* Review simplify compatibility sources, deduplicate tests by @​nohwnd in https://github.com/microsoft/vstest/pull/15472
* Cleanup dead TRX code by @​Youssef1313 in https://github.com/microsoft/vstest/pull/15474
* Update .NET runtimes to 8.0.25, 9.0.14, and 10.0.4 by @​nohwnd in https://github.com/microsoft/vstest/pull/15481
* Compat matrix checker by @​nohwnd in https://github.com/microsoft/vstest/pull/15480
* Add trx analysis skill by @​nohwnd in https://github.com/microsoft/vstest/pull/15486
* Split integration tests to single tfm and multi tfm project by @​nohwnd in https://github.com/microsoft/vstest/pull/15484
* Update matrix by @​nohwnd in https://github.com/microsoft/vstest/pull/15477
* Break infinite restore loop in VS by @​nohwnd in https://github.com/microsoft/vstest/pull/15503
* Use global package cache for build, and local for running integration tests by @​nohwnd in https://github.com/microsoft/vstest/pull/15500
* Update contributing by @​nohwnd in https://github.com/microsoft/vstest/pull/15505
* Reduce test wall-clock time by increasing minThreads by @​drognanar in https://github.com/microsoft/vstest/pull/15502
* Indicator flakiness by @​nohwnd in https://github.com/microsoft/vstest/pull/15513
* Fix ci build by @​nohwnd in https://github.com/microsoft/vstest/pull/15515
* Fix thread safety issues by @​Evangelink in https://github.com/microsoft/vstest/pull/15512
* Optimize DotnetSDKSimulation_PostProcessing test (163s61s) by @​nohwnd in https://github.com/microsoft/vstest/pull/15516
* Build isolated test assets for single TFM instead of 7 by @​nohwnd in https://github.com/microsoft/vstest/pull/15517
* Remove unused dependencies from Library.IntegrationTests by @​nohwnd in https://github.com/microsoft/vstest/pull/15527
* Remove printing _attachments content to console by @​nohwnd in https://github.com/microsoft/vstest/pull/15520
* Add Linux/macOS test filtering guide to CONTRIBUTING.md by @​nohwnd in https://github.com/microsoft/vstest/pull/15521
* Change integration test parallelization from ClassLevel to MethodLevel by @​nohwnd in https://github.com/microsoft/vstest/pull/15526
* Unify target framework checks with IsNetFrameworkTarget/IsNetTarget by @​nohwnd in https://github.com/microsoft/vstest/pull/15523
* Add unattended work instructions to copilot-instructions.md by @​nohwnd in https://github.com/microsoft/vstest/pull/15531
* Reduce code style rule severity from warning to suggestion by @​nohwnd in https://github.com/microsoft/vstest/pull/15522
* Remove Debug/Release line number branching from tests by @​nohwnd in https://github.com/microsoft/vstest/pull/15519
* Revise unattended work instructions in copilot-instructions.md by @​nohwnd in https://github.com/microsoft/vstest/pull/15532
* Improve CompatibilityRowsBuilder error message with diagnostic details by @​nohwnd in https://github.com/microsoft/vstest/pull/15529
* docs: add git worktree and upstream sync workflow to copilot-instructions.md by @​nohwnd in https://github.com/microsoft/vstest/pull/15538
* Add VSIX runner to smoke tests by @​nohwnd in https://github.com/microsoft/vstest/pull/15541
* Remove deprecated WebTest and TMI test methods by @​nohwnd in https://github.com/microsoft/vstest/pull/15525
* Fix compatibility test failures for legacy vstest.console and MSTest adapter by @​nohwnd in https://github.com/microsoft/vstest/pull/15534
* Convert TestPlatform.sln to slnx format by @​nohwnd in https://github.com/microsoft/vstest/pull/15551
* Convert test/TestAssets .sln files to .slnx format by @​nohwnd in https://github.com/microsoft/vstest/pull/15557
 ... (truncated)

## 18.5.1

## What's Changed
* Fix System.Collections.Immutable binding mismatch in Common.dll (rel/18.5) by @​nohwnd in https://github.com/microsoft/vstest/pull/15720
* Port verify-binding-redirects.ps1 to rel/18.5 by @​nohwnd in https://github.com/microsoft/vstest/pull/15719
* Bump to 18.5.1 by @​nohwnd in https://github.com/microsoft/vstest/pull/15721


**Full Changelog**: https://github.com/microsoft/vstest/compare/v18.5.0...v18.5.1

## 18.5.0

⚠️ Unlisted on Nuget, because of #​15718 

## What's Changed
* Add runtime configs by @​nohwnd in https://github.com/microsoft/vstest/pull/15377
* Add net8.0 target for TranslationLayer by @​nohwnd in https://github.com/microsoft/vstest/pull/15375
* Determine architecture of remote process on windows by @​nohwnd in https://github.com/microsoft/vstest/pull/15396
* Updating System.Collections.Immutable package reference to version 9.0.0 by @​MSLukeWest in https://github.com/microsoft/vstest/pull/15392
* Dump via netcore tool on windows by @​nohwnd in https://github.com/microsoft/vstest/pull/15397
* Fix answer file splitting by @​nohwnd in https://github.com/microsoft/vstest/pull/15381
* Run tests against vsix runner by @​nohwnd in https://github.com/microsoft/vstest/pull/15419

**Full Changelog**: https://github.com/microsoft/vstest/compare/v18.4.0...v18.5.0

Commits viewable in [compare view](https://github.com/microsoft/vstest/compare/v18.4.0...v18.6.0).
</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.msbuild from 8.0.1 to 10.0.1
Bumps csharpier from 1.2.6 to 1.3.0
Bumps FluentAssertions from 8.9.0 to 8.10.0
Bumps Microsoft.NET.Test.Sdk from 18.4.0 to 18.6.0

---
updated-dependencies:
- dependency-name: coverlet.msbuild
  dependency-version: 10.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: csharpier
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: FluentAssertions
  dependency-version: 8.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added .NET Pull requests that update .NET code dependencies Dependencies labels Jun 11, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jun 11, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: nuget, packages. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@pr-code-reviewer

Copy link
Copy Markdown

👋 Hi there!

  1. Update the version of "csharpier" from 1.2.6 to 1.3.0 in the .config/dotnet-tools.json file.
  2. Modify the PackageReference for "coverlet.msbuild" in the Tests/POCAutomapperPolymorphic.Tests.csproj file from version 8.0.1 to 10.0.1.
  3. Upgrade the versions of "FluentAssertions" and "Microsoft.NET.Test.Sdk" from 8.9.0 and 18.4.0 to 8.10.0 and the appropriate version respectively in the same csproj file.


Automatically generated with the help of gpt-3.5-turbo.
Feedback? Please don't hesitate to drop me an email at webber@takken.io.

@semanticdiff-com

semanticdiff-com Bot commented Jun 11, 2026

Copy link
Copy Markdown

Review changes with  SemanticDiff

Changed Files
File Status
  .config/dotnet-tools.json  0% smaller
  Tests/POCAutomapperPolymorphic.Tests/POCAutomapperPolymorphic.Tests.csproj  0% smaller

@github-actions github-actions Bot added the size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. label Jun 11, 2026
@github-actions

Copy link
Copy Markdown

Infisical secrets check: ✅ No secrets leaked!

💻 Scan logs
2026-06-11T19:26:46Z INF scanning for exposed secrets...
7:26PM INF 196 commits scanned.
2026-06-11T19:26:46Z INF scan completed in 35.9ms
2026-06-11T19:26:46Z INF no leaks found

@socket-security

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatedcoverlet.msbuild@​8.0.1 ⏵ 10.0.168 +1100100100100
Updatedfluentassertions@​8.9.0 ⏵ 8.10.0971009010080
Updatedmicrosoft.net.test.sdk@​18.4.0 ⏵ 18.6.010010090100100

View full report

@codacy-production

Copy link
Copy Markdown

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.

@guibranco guibranco enabled auto-merge (squash) June 11, 2026 19:31
@gstraccini gstraccini Bot added the ☑️ auto-merge Automatic merging of pull requests (gstraccini-bot) label Jun 11, 2026

@guibranco guibranco left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Automatically approved by gstraccini[bot]

@gstraccini gstraccini Bot added the 🤖 bot Automated processes or integrations label Jun 11, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

☑️ auto-merge Automatic merging of pull requests (gstraccini-bot) 🤖 bot Automated processes or integrations dependencies Dependencies .NET Pull requests that update .NET code size/XS Denotes a PR that changes 0-9 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant