Skip to content

Bump ClosedXML and 7 others#260

Merged
SIkebe merged 2 commits into
mainfrom
dependabot/nuget/dot-config/multi-071747be65
Aug 6, 2025
Merged

Bump ClosedXML and 7 others#260
SIkebe merged 2 commits into
mainfrom
dependabot/nuget/dot-config/multi-071747be65

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 6, 2025

Copy link
Copy Markdown
Contributor

Updated ClosedXML from 0.104.0-preview2 to 0.105.0.

Release notes

Sourced from ClosedXML's releases.

0.105.0

What's Changed

Major enhancements

Automatic fixer of function names

Correct name for newer functions (post 2013) is not what is seen in the GUI (e.g. correct name for CONCAT is _xlfn.CONCAT). That is rather obscure fact not known to most developers. The formula setters (e.g. IXLCell.FormulaA1) now automatically fix function names, so it is stored correctly in the file.

using var wb = new XLWorkbook();
var ws = wb.AddWorksheet();
// Originally required "_xlfn.CONCAT(\"hello\", \" world!\")";
ws.Cell("A1").FormulaA1 = "CONCAT(\"hello\", \" world!\")"; 

Pre-0.105
image
0.105
image

Sorting updates references

In many cases, the sorted area has a column with references. The formula often references another row. Pre-0.105, the references in the formulas weren't updated correctly.
image

using var wb = new XLWorkbook();
var ws = wb.AddWorksheet();
ws.Cell("A1").Value = 4;
ws.Cell("B1").FormulaA1 = "A1+1";
ws.Cell("A2").Value = 2;
ws.Cell("B2").FormulaA1 = "A2+1";
ws.Cell("A3").Value = 1;
ws.Cell("B3").FormulaA1 = "A3+1";

ws.Range("A1:B3").Sort(1, XLSortOrder.Ascending);

Reimplementation/refactoring of old function infrastructure

Basically all implemented functions should be more faithful to how Excel behaves and evaluation of functions should be faster. implemented functions should be "complete" in sense that they correctly work for various arguments (e.g. various forms of ROMAN or pattern search in SUMIFS).

The functions (before refactoring) had serious problems with ranges, errors or type coercion or structured references. The original parser back then didn't even parse literal arrays ({1,2,3;4,5,6}). Parser and other things were updated, but because there was ~180 functions, original implementation was kept and functions were functions were reused through an adapter. Except the adapter never worked right and there were some other serious problems.

Changes

Bugfixes

0.105.0-rc

What's Changed

Major enhancements

Automatic fixer of function names

Correct name for newer functions (post 2013) is not what is seen in the GUI (e.g. correct name for CONCAT is _xlfn.CONCAT). That is rather obscure fact not known to most developers. The formula setters (e.g. IXLCell.FormulaA1) now automatically fix function names, so it is stored correctly in the file.

using var wb = new XLWorkbook();
var ws = wb.AddWorksheet();
// Originally required "_xlfn.CONCAT(\"hello\", \" world!\")";
ws.Cell("A1").FormulaA1 = "CONCAT(\"hello\", \" world!\")"; 

Pre-0.105
image
0.105
image

Sorting updates references

In many cases, the sorted area has a column with references. The formula often references another row. Pre-0.105, the references in the formulas weren't updated correctly.
image

using var wb = new XLWorkbook();
var ws = wb.AddWorksheet();
ws.Cell("A1").Value = 4;
ws.Cell("B1").FormulaA1 = "A1+1";
ws.Cell("A2").Value = 2;
ws.Cell("B2").FormulaA1 = "A2+1";
ws.Cell("A3").Value = 1;
ws.Cell("B3").FormulaA1 = "A3+1";

ws.Range("A1:B3").Sort(1, XLSortOrder.Ascending);

Reimplementation/refactoring of old function infrastructure

Basically all implemented functions should be more faithful to how Excel behaves and evaluation of functions should be faster. implemented functions should be "complete" in sense that they correctly work for various arguments (e.g. various forms of ROMAN or pattern search in SUMIFS).

The functions (before refactoring) had serious problems with ranges, errors or type coercion or structured references. The original parser back then didn't even parse literal arrays ({1,2,3;4,5,6}). Parser and other things were updated, but because there was ~180 functions, original implementation was kept and functions were functions were reused through an adapter. Except the adapter never worked right and there were some other serious problems.

Changes

Bugfixes

0.104.2

What's Changed

Full Changelog: ClosedXML/ClosedXML@0.104.1...0.104.2

0.104.1

Release notes from 0.102.1 to the 0.104.1.

Summary of breaking changes is available at docs.closedxml.io:

OpenXML SDK

OpenXML SDK has released version 3. The 0.104.0 uses it as a dependency.

XLParser replaced with ClosedParser

The XLParser has been replaced with ClosedParser. The key benefits are

  • performance - ~2μs/formula, it's likely formulas will be parseable on the demand, necessary for construction of dependency tree
  • A1/R1C1 parsing parity - both modes can be parsed with no problems
  • AST oriented - it's likely a construction of AST in memory won't even be necessary, just use AST factory to evaluate formula directly

There is also a visualizer to display AST in a browser at https://parser.closedxml.io

image

Formula Calculation

In previous version, formulas used to be calculated recursively. Each formula checked it's supporting cells for other formulas and if there were some, they were recursively evaluated. There was some logic to decrease number of evaluations. That works for a very simple cases, but isn't very good for various non-happy paths (i.e. cells weren't calculated when they should be).

This version has replaced it with a standard

  • dependency tree for checking which formulas are dirty and need to be recalculated
  • calculation chain that manages dependencies and order of formulas during calculation

For more info, see docs, the Microsoft has a page about principles Excel Recalculation
and there is one with API at docs.closedxml.io.

image

Structured references

New parser also allows a basic evaluation of structured references. Format of structured reference must use official grammar, not Excel friendly names (e.g. Pastry[@​Name] is user-friendly name for Pastry[[#This Row],[Name]]). It's now possible to

using var wb = new XLWorkbook();
var ws = wb.AddWorksheet();
ws.Cell("A1").InsertTable(new Pastry[]
{
    new("Cake", 14),
    new("Waffle", 3),
}, "Pastry");

ws.Cell("D1").FormulaA1 = "SUM(Pastry[Price])";
ws.Cell("D3").FormulaA1 = "\"Pastry \" & Pastry[[#This Row],[Name]]";
wb.RecalculateAllFormulas();
 ... (truncated)

## 0.104-rc1

A release candidate 1 for 0.104.0. 

* [Migration from 0.102 to 0.103](https://docs.closedxml.io/en/latest/migrations/migrate-to-0.103.html)
* [Migration from 0.103 to 0.104](https://docs.closedxml.io/en/latest/migrations/migrate-to-0.104.html)

Of course, this includes all stuff from [0.103.0-beta](https://github.com/ClosedXML/ClosedXML/releases/tag/0.103.0-beta). Version 0.103 never got a non-beta release.

# OpenXML SDK

OpenXML SDK has released version 3.0.1. The 0.104-rc1 uses it as a dependency. 

# Pivot tables

The internal structure of pivot tables, along with most other features, has been completely overhauled. This update should significantly reduce crashes when loading and saving workbooks containing pivot tables.

The main issue with the previous internal structure was that it didn't align with the structure used by OOXML. This was problematic because we need to support all valid files. As a result, we have to handle a wide range of inputs and correctly convert them to our internal structure, which is rather hard. A more clear 1:1 mapping with OOXML is much simpler and more reliable.

# AutoFilter

The Autofilter feature has been revamped, which includes some API changes. Its behavior is now more closely aligned with how Excel operates. The XML documentation provides detailed explanations, and there is a [dedicated documentation page](https://docs.closedxml.io/en/latest/features/autofilter.html). Several bugs have also been fixed.

For more details, refer to the [Autofilter section of the migration guide](https://docs.closedxml.io/en/latest/migrations/migrate-to-0.104.html#autofilter).

# CommonCrawl dataset

When workbook is a valid one, ClosedXML shouldn't throw on load. That is a rather high priority (more than saving or manipulation). Unfortunately, that is hard to find such areas that cause most problems.

One of activities that was going in a background is trying to use excel files around the internet (found by CommonCrawl) to evaluate how bad it is. There aren't results yet, but it is something that is going on.



# What's Changed

## Breaking changes
* First page number can be negative -> change API type to int by @​jahav in https://github.com/ClosedXML/ClosedXML/pull/2237
* Rename IXLNamedRange to IXLDefinedName by @​jahav in https://github.com/ClosedXML/ClosedXML/pull/2258

## AutoFilter
* AutoFilter rework - 1/? - Regular filter matches string. by @​jahav in https://github.com/ClosedXML/ClosedXML/pull/2238
* AutoFilter rework - 2/? - fix types for custom filters by @​jahav in https://github.com/ClosedXML/ClosedXML/pull/2239
* AutoFilter rework - 3/? - Top and average filter refactor, remove setters of internal state by @​jahav in https://github.com/ClosedXML/ClosedXML/pull/2240
* AutoFilter rework - 4/? - Top/Average filters work after loading by @​jahav in https://github.com/ClosedXML/ClosedXML/pull/2241
* AutoFilter rework - 5/? - Unify Regular and DateTimeGrouping filters by @​jahav in https://github.com/ClosedXML/ClosedXML/pull/2242
* AutoFilter rework - 6/7 - Add tests by @​jahav in https://github.com/ClosedXML/ClosedXML/pull/2243
* AutoFilter rework - 7/7 - Add documentation by @​jahav in https://github.com/ClosedXML/ClosedXML/pull/2245

## Formulas
* Update ClosedXML.Parser to 1.0 by @​jahav in https://github.com/ClosedXML/ClosedXML/pull/2250
* Implement structured references by @​jahav in https://github.com/ClosedXML/ClosedXML/pull/2251
* Replace regex-powered code for A1-R1C1 formula conversion with AST-based one by @​jahav in https://github.com/ClosedXML/ClosedXML/pull/2253
 ... (truncated)

Commits viewable in [compare view](https://github.com/ClosedXML/ClosedXML/compare/0.104.0-preview2...0.105.0).
</details>

Updated [coverlet.collector](https://github.com/coverlet-coverage/coverlet) from 6.0.2 to 6.0.4.

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

_Sourced from [coverlet.collector's releases](https://github.com/coverlet-coverage/coverlet/releases)._

## 6.0.4

### Fixed
- Fix empty coverage report when using include and exclude filters [#​1726](https://github.com/coverlet-coverage/coverlet/issues/1726)

[Diff between 6.0.3 and 6.0.4](https://github.com/coverlet-coverage/coverlet/compare/v6.0.3...v6.0.4)

## 6.0.3

### Fixed
- Fix RuntimeConfigurationReader to support self-contained builds [#​1705](https://github.com/coverlet-coverage/coverlet/pull/1705) by https://github.com/pfeigl
- Fix inconsistent filenames with UseSourceLink after .NET 8 [#​1679](https://github.com/coverlet-coverage/coverlet/issues/1679)
- Fix hanging tests [#​989](https://github.com/coverlet-coverage/coverlet/issues/989)
- Fix coverlet instrumentation becomes slow after installing dotnet sdk 8.0.200 [#​1620](https://github.com/coverlet-coverage/coverlet/issues/1620)
- Fix upgrading v6.0.1 to v6.0.2 increases instrumentation time [#​1649](https://github.com/coverlet-coverage/coverlet/issues/1649)
- Fix Unable to instrument module - NET 8 [#​1631](https://github.com/coverlet-coverage/coverlet/issues/1631)
- Fix slow modules filtering process [#​1646](https://github.com/coverlet-coverage/coverlet/issues/1646) by https://github.com/BlackGad
- Fix incorrect coverage await using in generic method [#​1490](https://github.com/coverlet-coverage/coverlet/issues/1490)

### Improvements
- Cache the regex used in InstrumentationHelper [#​1693](https://github.com/coverlet-coverage/coverlet/issues/1693)
- Enable dotnetTool integration tests for linux [#​660](https://github.com/coverlet-coverage/coverlet/issues/660)

[Diff between 6.0.2 and 6.0.3](https://github.com/coverlet-coverage/coverlet/compare/v6.0.2...v6.0.3)

Commits viewable in [compare view](https://github.com/coverlet-coverage/coverlet/compare/v6.0.2...v6.0.4).
</details>

Updated [dotnet-outdated-tool](https://github.com/dotnet-outdated/dotnet-outdated) from 4.6.4 to 4.6.8.

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

_Sourced from [dotnet-outdated-tool's releases](https://github.com/dotnet-outdated/dotnet-outdated/releases)._

## 4.6.8

## What's Changed
* Remove incorrect call to restore when the runtime parameter is empty by @​sowa705 in https://github.com/dotnet-outdated/dotnet-outdated/pull/658
* feat: support slnx by @​WeihanLi in https://github.com/dotnet-outdated/dotnet-outdated/pull/652

## New Contributors
* @​sowa705 made their first contribution in https://github.com/dotnet-outdated/dotnet-outdated/pull/658
* @​WeihanLi made their first contribution in https://github.com/dotnet-outdated/dotnet-outdated/pull/652

**Full Changelog**: https://github.com/dotnet-outdated/dotnet-outdated/compare/v4.6.7...v4.6.8

## 4.6.7



## 4.6.6

## What's Changed
* Remove overly verbose logging by @​slang25 in https://github.com/dotnet-outdated/dotnet-outdated/pull/643


**Full Changelog**: https://github.com/dotnet-outdated/dotnet-outdated/compare/v4.6.5...v4.6.6

## 4.6.5

## What's Changed
* Configure a logger for the DefaultCredentialServiceUtility to make credprovider issues apparent by @​ivog in https://github.com/dotnet-outdated/dotnet-outdated/pull/493
* Add Logging to NuGet Credential Service. by @​Chris-Greaves in https://github.com/dotnet-outdated/dotnet-outdated/pull/559
* Add runtime for msbuild dependency graph  by @​PawelHaracz in https://github.com/dotnet-outdated/dotnet-outdated/pull/562
* update Nuget SDK by @​symbiogenesis in https://github.com/dotnet-outdated/dotnet-outdated/pull/563
* Fix error if no matching packages found by @​martincostello in https://github.com/dotnet-outdated/dotnet-outdated/pull/587
* chore: update TargetFrameworks to net8 and net9 by @​emilioziniades in https://github.com/dotnet-outdated/dotnet-outdated/pull/613
* Fix incorrect `async` usage by @​yenneferofvengerberg in https://github.com/dotnet-outdated/dotnet-outdated/pull/618
* Improve code analysis by @​yenneferofvengerberg in https://github.com/dotnet-outdated/dotnet-outdated/pull/617
* Fix updating legacy projects using CPM by @​FXZFun in https://github.com/dotnet-outdated/dotnet-outdated/pull/605
* Add --maximum-version option by @​martincostello in https://github.com/dotnet-outdated/dotnet-outdated/pull/640
* Use ProcessStartInfo.ArgumentList and Parallel.ForEachAsync by @​martincostello in https://github.com/dotnet-outdated/dotnet-outdated/pull/641
* Update usage by @​martincostello in https://github.com/dotnet-outdated/dotnet-outdated/pull/642
* Avoid object creation by using value factory by @​symbiogenesis in https://github.com/dotnet-outdated/dotnet-outdated/pull/636
* ensure object disposal by @​symbiogenesis in https://github.com/dotnet-outdated/dotnet-outdated/pull/637
* optimize dependency lookups by @​symbiogenesis in https://github.com/dotnet-outdated/dotnet-outdated/pull/635
* Reduce list copying and simplify column width calculations by @​symbiogenesis in https://github.com/dotnet-outdated/dotnet-outdated/pull/634
* [Issue-576]use package source mapping in command by @​tony-hu-avepoint in https://github.com/dotnet-outdated/dotnet-outdated/pull/630

## New Contributors
* @​ivog made their first contribution in https://github.com/dotnet-outdated/dotnet-outdated/pull/493
* @​Chris-Greaves made their first contribution in https://github.com/dotnet-outdated/dotnet-outdated/pull/559
* @​PawelHaracz made their first contribution in https://github.com/dotnet-outdated/dotnet-outdated/pull/562
* @​emilioziniades made their first contribution in https://github.com/dotnet-outdated/dotnet-outdated/pull/613
* @​tony-hu-avepoint made their first contribution in https://github.com/dotnet-outdated/dotnet-outdated/pull/630

**Full Changelog**: https://github.com/dotnet-outdated/dotnet-outdated/compare/v4.6.4...v4.6.5

Commits viewable in [compare view](https://github.com/dotnet-outdated/dotnet-outdated/compare/v4.6.4...v4.6.8).
</details>

Updated [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.11.0-release-24352-06 to 17.14.1.

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

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

## 17.14.1

## What's Changed
* Error on unsupported target frameworks to prevent silently not running tests by @​nohwnd in https://github.com/microsoft/vstest/pull/15072 and https://github.com/microsoft/vstest/pull/15078
* Revert writing additional properties to TRX by @​nohwnd  in https://github.com/microsoft/vstest/commit/47eb51b15ad8ca4a84ad7be5881fcd1713a0f68a

**Full Changelog**: https://github.com/microsoft/vstest/compare/v17.14.0...v17.14.1

## 17.14.0

## What's Changed

### .NET versions updated

This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does **NOT** prevent you from:

- Updating to the latest VS, and running tests from net6.0 test projects.
- Updating to the latest .NET SDK, and running tests from net6.0 test projects.

It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.

* Drop unsupported frameworks by @​nohwnd in https://github.com/microsoft/vstest/pull/10565

### Changes

* Adding Process Query Flag For UWP .NET 9 Support by @​adstep in https://github.com/microsoft/vstest/pull/15003
* Fix builds on WinUI and UWP .NET 9 projects by @​Sergio0694 in https://github.com/microsoft/vstest/pull/15004
* don't report communication error on discovery abort by @​nohwnd in https://github.com/microsoft/vstest/pull/14992
* Add dump minitool to vsix by @​nohwnd in https://github.com/microsoft/vstest/pull/14707
* Make test runners long-path aware (#​5179) by @​peetw in https://github.com/microsoft/vstest/pull/15014
* Fix trace in DataCollectionRequestSender.cs by @​stan-sz in https://github.com/microsoft/vstest/pull/15025
* Fix/readme grammar parallelism by @​dellch in https://github.com/microsoft/vstest/pull/15030
* Add binding redirects by @​nohwnd in https://github.com/microsoft/vstest/pull/15041
* Write props of tests into trx by @​nohwnd in https://github.com/microsoft/vstest/pull/14905

### Internal version updates and fixes

* Update io.redist by @​nohwnd in https://github.com/microsoft/vstest/pull/13872
* Use preview image for public build by @​nohwnd in https://github.com/microsoft/vstest/pull/13888
* Remove xcopy-msbuild by @​nohwnd in https://github.com/microsoft/vstest/pull/14138
* Move to macos14 by @​nohwnd in https://github.com/microsoft/vstest/pull/14137
* Update diagnose.md by @​nohwnd in https://github.com/microsoft/vstest/pull/14776
* hash with sha2 for mutex lock by @​nohwnd in https://github.com/microsoft/vstest/pull/14777
* Update test projects for vmr by @​nohwnd in https://github.com/microsoft/vstest/pull/14894
* 17.14 branding by @​nohwnd in https://github.com/microsoft/vstest/pull/14903
* Update filter.md for NUnit by @​OsirisTerje in https://github.com/microsoft/vstest/pull/14987
* Flag netstandard1.x dependencies in source-build by @​ViktorHofer in https://github.com/microsoft/vstest/pull/14986
* Use VS dependencies versions from release VS to have archived symbols by @​nohwnd in https://github.com/microsoft/vstest/pull/14991
* Remove extra ; by @​nohwnd in https://github.com/microsoft/vstest/pull/14995
* Use dependencymodel 6.0.2 by @​nohwnd in https://github.com/microsoft/vstest/pull/14996
* Make Testhost packable only on Windows by @​mmitche in https://github.com/microsoft/vstest/pull/15001
* Add system text json to vsix by @​nohwnd in https://github.com/microsoft/vstest/pull/15034
* Add more files to vsix by @​nohwnd in https://github.com/microsoft/vstest/pull/15038
* Remove unnecessary CA2022 suppressions by @​Winniexu01 in https://github.com/microsoft/vstest/pull/15035
* Update package project url by @​mmitche in https://github.com/microsoft/vstest/pull/15040
 
## New Contributors

* @​OsirisTerje made their first contribution in https://github.com/microsoft/vstest/pull/14987
* @​adstep made their first contribution in https://github.com/microsoft/vstest/pull/15003
 ... (truncated)

## 17.14.0-preview-25107-01

## What's Changed

### .NET versions updated

This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does **NOT** prevent you from:

- Updating to the latest VS, and running tests from net6.0 test projects.
- Updating to the latest .NET SDK, and running tests from net6.0 test projects.

It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.

* Drop unsupported frameworks by @​nohwnd in https://github.com/microsoft/vstest/pull/10565


### Changes

* Adding Process Query Flag For UWP .NET 9 Support by @​adstep in https://github.com/microsoft/vstest/pull/15003
* Fix builds on WinUI and UWP .NET 9 projects by @​Sergio0694 in https://github.com/microsoft/vstest/pull/15004
* don't report communication error on discovery abort by @​nohwnd in https://github.com/microsoft/vstest/pull/14992
* Add dump minitool to vsix by @​nohwnd in https://github.com/microsoft/vstest/pull/14707

### Internal version updates and fixes

* Update io.redist by @​nohwnd in https://github.com/microsoft/vstest/pull/13872
* Use preview image for public build by @​nohwnd in https://github.com/microsoft/vstest/pull/13888
* Remove xcopy-msbuild by @​nohwnd in https://github.com/microsoft/vstest/pull/14138
* Move to macos14 by @​nohwnd in https://github.com/microsoft/vstest/pull/14137
* Update diagnose.md by @​nohwnd in https://github.com/microsoft/vstest/pull/14776
* hash with sha2 for mutex lock by @​nohwnd in https://github.com/microsoft/vstest/pull/14777
* Update test projects for vmr by @​nohwnd in https://github.com/microsoft/vstest/pull/14894
* 17.14 branding by @​nohwnd in https://github.com/microsoft/vstest/pull/14903
* Update filter.md for NUnit by @​OsirisTerje in https://github.com/microsoft/vstest/pull/14987
* Flag netstandard1.x dependencies in source-build by @​ViktorHofer in https://github.com/microsoft/vstest/pull/14986
* Use VS dependencies versions from release VS to have archived symbols by @​nohwnd in https://github.com/microsoft/vstest/pull/14991
* Remove extra ; by @​nohwnd in https://github.com/microsoft/vstest/pull/14995
* Use dependencymodel 6.0.2 by @​nohwnd in https://github.com/microsoft/vstest/pull/14996
* Make Testhost packable only on Windows by @​mmitche in https://github.com/microsoft/vstest/pull/15001


### Will probably revert before release:

* Write props of tests into trx by @​nohwnd in https://github.com/microsoft/vstest/pull/14905
 
## New Contributors

* @​OsirisTerje made their first contribution in https://github.com/microsoft/vstest/pull/14987
* @​adstep made their first contribution in https://github.com/microsoft/vstest/pull/15003
* @​Sergio0694 made their first contribution in https://github.com/microsoft/vstest/pull/15004

**Full Changelog**: https://github.com/microsoft/vstest/compare/v17.13.0...v17.14.0-preview-25107-01

## 17.13.0

## What's Changed

* Add letter number among valid identifiers in class name by @​nohwnd in https://github.com/microsoft/vstest/pull/13868
* Fix formatting in Runner by @​mthalman in https://github.com/microsoft/vstest/pull/13871
* Downgrade xunit skip warning to info by @​nohwnd in https://github.com/microsoft/vstest/pull/10381
* Add msdia for arm64 into nuget by @​nohwnd in https://github.com/microsoft/vstest/pull/10382
* Enable native debugging for vstest.console by @​ocitrev in https://github.com/microsoft/vstest/pull/10401

* Fix RFCs links by @​Youssef1313 in https://github.com/microsoft/vstest/pull/10424      
* Convert to auto property by @​nohwnd in https://github.com/microsoft/vstest/pull/10365
* Update Versions.props by @​nohwnd in https://github.com/microsoft/vstest/pull/10378
* Enable TSA by @​jakubch1 in https://github.com/microsoft/vstest/pull/10385
* Arm64 dia by @​nohwnd in https://github.com/microsoft/vstest/pull/10390
* Update source-build team references by @​MichaelSimons in https://github.com/microsoft/vstest/pull/10388
* Exclude .signature.p7s from nupkg file count by @​ellahathaway in https://github.com/microsoft/vstest/pull/10418
* Set NetCurrent so that it doesn't roll forward automatically by @​ViktorHofer in https://github.com/microsoft/vstest/pull/10622

## New Contributors
* @​ocitrev made their first contribution in https://github.com/microsoft/vstest/pull/10401
* @​Youssef1313 made their first contribution in https://github.com/microsoft/vstest/pull/10424

**Full Changelog**: https://github.com/microsoft/vstest/compare/v17.12.0...v17.13.0

## 17.12.0

## What's Changed

* Dispose IDisposables in HtmlTransformer by @​omajid in https://github.com/microsoft/vstest/pull/5099
* Dipose XmlReaders in Microsoft.TestPlatform.Common.RunSettings by @​omajid in https://github.com/microsoft/vstest/pull/5100
* use some collection expressions by @​SimonCropp in https://github.com/microsoft/vstest/pull/5055
* Fix Reference typos by @​SimonCropp in https://github.com/microsoft/vstest/pull/5155
* Add option to overwrite trx without warning by @​nohwnd in https://github.com/microsoft/vstest/pull/5141

## Internal and infrastructure fixes:

* Downgrade xunit skip warning to info by @​nohwnd in https://github.com/microsoft/vstest/pull/10379
* Fallback to latest runtimeconfig when none is found by @​nohwnd in https://github.com/microsoft/vstest/pull/5136
* Verify architecture and version of produced exes by @​nohwnd in https://github.com/microsoft/vstest/pull/5134
* Fix runtime config tests by @​nohwnd in https://github.com/microsoft/vstest/pull/5137
* Dispose helper when parsing args by @​nohwnd in https://github.com/microsoft/vstest/pull/5126
* Cleanup and bump required runtimes by @​Evangelink in https://github.com/microsoft/vstest/pull/5139
* Fix help warnings by @​nohwnd in https://github.com/microsoft/vstest/pull/5140
* Fix timing in simple log by @​nohwnd in https://github.com/microsoft/vstest/pull/5143
* Check vstest.console.dll instead of .exe by @​nohwnd in https://github.com/microsoft/vstest/pull/5149
* Report version from nuget check by @​nohwnd in https://github.com/microsoft/vstest/pull/5161
* Move IncludeSourceRevisionInInformationalVersion  by @​nohwnd in https://github.com/microsoft/vstest/pull/5166
* Enable or disable new logger based on TL flag by @​nohwnd in https://github.com/microsoft/vstest/pull/5167
* Updating Microsoft.CodeCoverage package structure by @​fhnaseer in https://github.com/microsoft/vstest/pull/5169
* Wait for Discovery to initialize before Cancelling it by @​nohwnd in https://github.com/microsoft/vstest/pull/5177
* Adding condition to disable MsCoverage refrenced path maps by @​fhnaseer in https://github.com/microsoft/vstest/pull/5189
* Forward error output from testhost as info by @​nohwnd in https://github.com/microsoft/vstest/pull/5192
* Update Microsoft.Extensions.DependencyModel to 3.1.0 by @​nohwnd in https://github.com/microsoft/vstest/pull/5188
* ExcludeFromSourceBuild->ExcludeFromSourceOnlyBuild by @​mmitche in https://github.com/microsoft/vstest/pull/10354
* Enable policheck by @​jakubch1 in https://github.com/microsoft/vstest/pull/10363



**Full Changelog**: https://github.com/microsoft/vstest/compare/v17.11.1...v17.12.0

## 17.11.1

## What's Changed
* [rel/17.11] Forward error output from testhost as info by @​nohwnd in https://github.com/microsoft/vstest/pull/5193


**Full Changelog**: https://github.com/microsoft/vstest/compare/v17.11.0...v17.11.1

## 17.11.0

## What's Changed

* Add reference to the AdapterUtilities library in the spec docs. by @​peterwald in https://github.com/microsoft/vstest/pull/4958
* Stack trace when localized, and new messages by @​nohwnd in https://github.com/microsoft/vstest/pull/4944
* Fix single quote and space in F# pretty methods by @​nohwnd in https://github.com/microsoft/vstest/pull/4969
* Update .NET runtimes to latest patch version by @​Evangelink in https://github.com/microsoft/vstest/pull/4975
* Update dotnetcoretests.md by @​DickBaker in https://github.com/microsoft/vstest/pull/4977
* Add list of known TestingPlatform dlls by @​nohwnd in https://github.com/microsoft/vstest/pull/4983
* Update framework version used for testing, and test matrix by @​nohwnd in https://github.com/microsoft/vstest/pull/4970
* Add output forwarding for .NET by @​nohwnd in https://github.com/microsoft/vstest/pull/4988
* Remove usage of pt images before decomissioning by @​nohwnd in https://github.com/microsoft/vstest/pull/4994
* chore: Add more details to acquistion section. by @​voroninp in https://github.com/microsoft/vstest/pull/4999
* Simplify banner by @​nohwnd in https://github.com/microsoft/vstest/pull/5013
* Forward standard output of testhost by @​nohwnd in https://github.com/microsoft/vstest/pull/4998
* Add missing copyright header by @​MichaelSimons in https://github.com/microsoft/vstest/pull/5020
* Add option to not share .NET Framework testhosts by @​nohwnd in https://github.com/microsoft/vstest/pull/5018
* GetTypesToLoad Attribute cant be null by @​SimonCropp in https://github.com/microsoft/vstest/pull/5054
* rawArgument in GetArgumentList cant be null by @​SimonCropp in https://github.com/microsoft/vstest/pull/5056
* fix Atribute typo by @​SimonCropp in https://github.com/microsoft/vstest/pull/5057
* remove unnecessary list alloc for 2 scenarios in TestRequestManager.GetSources by @​SimonCropp in https://github.com/microsoft/vstest/pull/5058
* fix incompatiblity typo by @​SimonCropp in https://github.com/microsoft/vstest/pull/5059
* remove redundant inline method in IsPlatformIncompatible by @​SimonCropp in https://github.com/microsoft/vstest/pull/5060
* fix Sucess typo by @​SimonCropp in https://github.com/microsoft/vstest/pull/5061
* use some null coalescing by @​SimonCropp in https://github.com/microsoft/vstest/pull/5062
* Add cts into friends of TranslationLayer by @​jakubch1 in https://github.com/microsoft/vstest/pull/5075
* Use built in sha1 for id generation by @​nohwnd in https://github.com/microsoft/vstest/pull/5081
* All output in terminal logger by @​nohwnd in https://github.com/microsoft/vstest/pull/5083
* Ignore env test by @​nohwnd in https://github.com/microsoft/vstest/pull/5095
* Dispose XmlReader in XmlRunSettingsUtilities by @​omajid in https://github.com/microsoft/vstest/pull/5094
* Bump to macos-12 build image by @​akoeplinger in https://github.com/microsoft/vstest/pull/5101
* Handle ansi escape in terminal logger reporter by @​nohwnd in https://github.com/microsoft/vstest/pull/5084
* remove disable interactive auth by @​nohwnd in https://github.com/microsoft/vstest/pull/5110
* Error output as info in terminal logger by @​nohwnd in https://github.com/microsoft/vstest/pull/5113
* Write dll instead of target on abort, rename errors by @​nohwnd in https://github.com/microsoft/vstest/pull/5115
* * [rel/17.11] Update dependencies from devdiv/DevDiv/vs-code-coverage by @​dotnet-maestro in https://github.com/microsoft/vstest/pull/5152

## New Contributors
* @​peterwald made their first contribution in https://github.com/microsoft/vstest/pull/4958
* @​DickBaker made their first contribution in https://github.com/microsoft/vstest/pull/4977
* @​voroninp made their first contribution in https://github.com/microsoft/vstest/pull/4999
* @​akoeplinger made their first contribution in https://github.com/microsoft/vstest/pull/5101

**Full Changelog**: https://github.com/microsoft/vstest/compare/v17.10.0...v17.11.0-release-24352-06

## 17.11.0-release-24373-02

## What's Changed
* [rel/17.11] Update dependencies from devdiv/DevDiv/vs-code-coverage by @​dotnet-maestro in https://github.com/microsoft/vstest/pull/5152


**Full Changelog**: https://github.com/microsoft/vstest/compare/v17.11.0-release-24352-06...v17.11.0-release-24373-02

Commits viewable in [compare view](https://github.com/microsoft/vstest/compare/v17.11.0-release-24352-06...v17.14.1).
</details>

Updated [Selenium.WebDriver](https://github.com/SeleniumHQ/selenium) from 4.22.0 to 4.34.0.

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

_Sourced from [Selenium.WebDriver's releases](https://github.com/SeleniumHQ/selenium/releases)._

No release notes found for this version range.

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

Updated [Selenium.WebDriver.ChromeDriver](https://github.com/jsakamoto/nupkg-selenium-webdriver-chromedriver/) from 126.0.6478.18200 to 139.0.7258.6600.

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

_Sourced from [Selenium.WebDriver.ChromeDriver's releases](https://github.com/jsakamoto/nupkg-selenium-webdriver-chromedriver//releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/jsakamoto/nupkg-selenium-webdriver-chromedriver//commits).
</details>

Updated [xunit](https://github.com/xunit/xunit) from 2.9.0 to 2.9.3.

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

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

No release notes found for this version range.

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

Updated [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) from 2.8.2 to 3.1.3.

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

_Sourced from [xunit.runner.visualstudio's releases](https://github.com/xunit/visualstudio.xunit/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/xunit/visualstudio.xunit/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 merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Bumps ClosedXML to 0.105.0
Bumps coverlet.collector from 6.0.2 to 6.0.4
Bumps dotnet-outdated-tool from 4.6.4 to 4.6.8
Bumps Microsoft.NET.Test.Sdk from 17.11.0-release-24352-06 to 17.14.1
Bumps Selenium.WebDriver from 4.22.0 to 4.34.0
Bumps Selenium.WebDriver.ChromeDriver from 126.0.6478.18200 to 139.0.7258.6600
Bumps xunit from 2.9.0 to 2.9.3
Bumps xunit.runner.visualstudio from 2.8.2 to 3.1.3

---
updated-dependencies:
- dependency-name: ClosedXML
  dependency-version: 0.105.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: ClosedXML
  dependency-version: 0.105.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: coverlet.collector
  dependency-version: 6.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: dotnet-outdated-tool
  dependency-version: 4.6.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 17.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Selenium.WebDriver
  dependency-version: 4.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Selenium.WebDriver.ChromeDriver
  dependency-version: 139.0.7258.6600
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: xunit
  dependency-version: 2.9.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: xunit.runner.visualstudio
  dependency-version: 3.1.3
  dependency-type: direct:production
  update-type: version-update:semver-major
...

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 Aug 6, 2025
@dependabot
dependabot Bot requested a review from SIkebe as a code owner August 6, 2025 13:02
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file .NET Pull requests that update .net code labels Aug 6, 2025
@SIkebe
SIkebe merged commit e0a5900 into main Aug 6, 2025
3 checks passed
@SIkebe
SIkebe deleted the dependabot/nuget/dot-config/multi-071747be65 branch August 6, 2025 14:12
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