Skip to content

Bump the nuget-dependencies group with 13 updates#41

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/dot-config/nuget-dependencies-6dec5ac3e5
Closed

Bump the nuget-dependencies group with 13 updates#41
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/dot-config/nuget-dependencies-6dec5ac3e5

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 2, 2026

Copy link
Copy Markdown
Contributor

Updated bunit from 1.40.0 to 2.7.2.

Release notes

Sourced from bunit's releases.

2.7.2

Fixed

  • Implemented InvokeConstructorAsync on BunitJSRuntime and BunitJSObjectReference for .NET 10+, which previously threw NotImplementedException. Reported by @​Floopy-Doo in #​1818. Fixed by @​linkdotnet.

2.6.2

Added

  • net11.0 support

2.5.3

Added

  • Render(RenderFragment) is preferred via the OverloadResolutionAttribute. Reported by @​ScarletKuro in #​1800. Fixed by @​linkdotnet.
  • FindByTestId to bunit.web.query to gather elements by a given test id. By @​jimSampica

2.4.2

Fixed

  • Use proper return typed for InputAsync and ChangeAsync methods.

2.3.4

Added

  • Added generic overloads Find{TComponent, TElement} and FindAll{TComponent, TElement} to query for specific element types (e.g., IHtmlInputElement). By @​linkdotnet.
  • Added generic overloads WaitForElement{TComponent, TElement} and WaitForElements{TComponent, TElement} to wait for specific element types. By @​linkdotnet.

Fixed

  • Adding convenient overloads for InputAsync and ChangeAsync to have feature parity with the sync version. Reported by @​ScarletKuro. Fixed by @​linkdotnet.

2.2.2

Added

  • Added FindByAllByLabel to bunit.web.query package. By @​linkdotnet.

Fixed

  • Updated AngleSharp.Diffing to fix a bug related to unknown HTML elements. Reported by @​md-at-slashwhy.

2.1.1

Changed

  • Registering AuthenticationState in the services container rather than as part of the RenderTree. Fixes #​1774 reported by @​aayjaychan.

2.0.66

This major release focuses on platform updates and API simplifications.

For a migration guide, see Upgrading bUnit.

Changed

  • Target framework support updated: added support for .NET 10 (net10.0) and dropped all versions prior to .NET 8 (net8.0).
  • Cleanup of the API with simplifications of many API calls and methods. This also includes renaming of some objects to better reflect their purpose.

Added

  • Support for form submission from submit buttons and inputs that are outside the form element but associated via the HTML5 form attribute. Reported and fixed in #​1766.
  • Improved renderer logic that catches more edge cases.
  • Improved developer experience in relation to JSInterop.

Commits viewable in compare view.

Updated coverlet.collector from 6.0.4 to 10.0.1.

Release notes

Sourced from coverlet.collector'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

8.0.1

Fixed

  • Fix [BUG] TypeInitializationException when targeting .NET Framework #​1818
  • Fix [BUG] coverlet.MTP build fails with CS0400 due to developmentDependency=true #​1827

Improvements

  • Additional improvements needed for .NET Framework instrumentation type import #​1825

Diff between 8.0.0 and 8.0.1

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 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 [DotNet.ReproducibleBuilds](https://github.com/dotnet/reproducible-builds) from 2.0.2 to 2.0.5.

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

_Sourced from [DotNet.ReproducibleBuilds's releases](https://github.com/dotnet/reproducible-builds/releases)._

## 2.0.5

## What's Changed
* Update versions used in examples to be from latest major by @​Frulfump in https://github.com/dotnet/reproducible-builds/pull/80
* Fix hostfxr resolution for .NET Framework tasks by @​MattKotsenas in https://github.com/dotnet/reproducible-builds/pull/85
* Upgrade MSBuild.ProjectCreation to 18.0.0 by @​MattKotsenas in https://github.com/dotnet/reproducible-builds/pull/84

## New Contributors
* @​Frulfump made their first contribution in https://github.com/dotnet/reproducible-builds/pull/80

**Full Changelog**: https://github.com/dotnet/reproducible-builds/compare/v2.0.2...v2.0.5

Commits viewable in [compare view](https://github.com/dotnet/reproducible-builds/compare/v2.0.2...v2.0.5).
</details>

Updated [FluentAssertions](https://github.com/fluentassertions/fluentassertions) from 8.8.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

## 8.9.0

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

> [!WARNING]
> For projects targeting .NET 9, you need at least .NET SDK 9.0.200 as earlier versions will trigger compile errors because of invalid overload resolution. See #​3225 

## What's Changed
### New features
* Add support for `Span<T>`, `ReadOnlySpan<T>`, `Memory<T>` and `ReadOnlyMemory<T>` by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3172
### Improvements
* Allow excluding all properties by type from `BeEquivalentTo` by @​Copilot in https://github.com/fluentassertions/fluentassertions/pull/3115
* Clean-up the stack trace when throwing an assertion failure by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3152
* Improve reporting the differences between differently sized collections in `BeEquivalentTo` by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3133
* Improve reporting the subject when chaining `Throw` and `Which` by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3160
* Add `HaveMillisecond`/`NotHaveMillisecond` assertion methods for `DateTime` and `DateTimeOffset` by @​Copilot in https://github.com/fluentassertions/fluentassertions/pull/3164
* Add `BeEqualTo` and `NotBeEqualTo` as collection assertion aliases by @​Copilot in https://github.com/fluentassertions/fluentassertions/pull/3166
### Fixes
* Fix formatting exception when comparing strings containing braces by @​Copilot in https://github.com/fluentassertions/fluentassertions/pull/3151
### Documentation
* Also mention the global configuration options in the docs. by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3132
* Add xUnit migration tips by @​fuguiKz in https://github.com/fluentassertions/fluentassertions/pull/3141
* Point the docs to the new site by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3155
* Added missing release notes by @​dennisdoomen in https://github.com/fluentassertions/fluentassertions/pull/3161
* Fix "an" vs "a" typos by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3174
### Others
* Bump actions/download-artifact from 5 to 6 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3116
* Bump cspell from 9.2.1 to 9.2.2 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3118
* Bump actions/upload-artifact from 4 to 5 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3117
* Add NuGet package attestations using GitHub provenance by @​Copilot in https://github.com/fluentassertions/fluentassertions/pull/3119
* Bump cspell from 9.2.2 to 9.3.0 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3122
* Bump actions/attest-build-provenance from 2 to 3 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3121
* fix qodana warnings by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3123
* Update nuget packages by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3124
* Bump cspell from 9.3.0 to 9.3.2 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3125
* Bump actions/checkout from 5 to 6 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3127
* Update to NET 10 SDK by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3128
* Use `==` or `!=` when comparing Nullable<T> against constants by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3129
* Create polyfill for `string.Create` by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3130
* Bump cspell from 9.3.2 to 9.4.0 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3131
* Bump actions/cache from 4 to 5 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3136
* Bump actions/upload-artifact from 5 to 6 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3135
* Bump actions/download-artifact from 6 to 7 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3134
* Cleanups by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3137
* Nuget updates by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3139
* Suppress `UnassignedGetOnlyAutoProperty` for `Node.GetHashCode` by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3138
* Use `NonReadonlyMemberInGetHashCode` by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3140
* Bump JetBrains/qodana-action from 2025.2 to 2025.3 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3142
* Use compiler-generated `paramName` parameter by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3143
* Fix `When_concurrently_getting_equality_strategy_it_should_not_throw` by @​jnyrup in https://github.com/fluentassertions/fluentassertions/pull/3144
* Bump cspell from 9.4.0 to 9.6.0 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3146
* Bump cspell from 9.6.0 to 9.6.2 by @​dependabot[bot] in https://github.com/fluentassertions/fluentassertions/pull/3153
 ... (truncated)

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

Updated [Microsoft.CodeAnalysis.CSharp](https://github.com/dotnet/roslyn) from 4.14.0 to 5.6.0.

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

_Sourced from [Microsoft.CodeAnalysis.CSharp's releases](https://github.com/dotnet/roslyn/releases)._

## 5.0.4

[Release](https://github.com/dotnet/core/releases/tag/v5.0.4)

## 5.0.2

[Release Notes](https://github.com/dotnet/core/blob/master/release-notes/5.0/5.0.2/5.0.2.md)
[Install Instructions](https://github.com/dotnet/core/blob/master/release-notes/5.0/5.0.2/5.0.2-install-instructions.md)

# Repos

* [Core](https://github.com/dotnet/core/releases/tag/v5.0.2)

## 5.0.1

[Release Notes](https://github.com/dotnet/core/blob/master/release-notes/5.0/5.0.1/5.0.1.md)
[Install Instructions](https://github.com/dotnet/core/blob/master/release-notes/5.0/5.0.1/5.0.1-install-instructions.md)

# Repo

* [Core](https://github.com/dotnet/core/releases/tag/v5.0.1)

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

Updated [Microsoft.EntityFrameworkCore.InMemory](https://github.com/dotnet/dotnet) from 10.0.5 to 10.0.9.

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

_Sourced from [Microsoft.EntityFrameworkCore.InMemory'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 [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 18.0.1 to 18.7.0.

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

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

## 18.7.0

## What's Changed
* Add ARM64 msdia140.dll support to test platform packages by @​jamesmcroft in https://github.com/microsoft/vstest/pull/15689
* Update System.Memory from 4.5.5 to 4.6.3 by @​nohwnd in https://github.com/microsoft/vstest/pull/15706

## New Contributors
* @​jamesmcroft made their first contribution in https://github.com/microsoft/vstest/pull/15689

**Full Changelog**: https://github.com/microsoft/vstest/compare/v18.6.0...v18.7.0

## 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

## 18.4.0

## What's Changed
* Add LoongArch64 support by @​stdmnpkg in https://github.com/microsoft/vstest/pull/15359

* Refactor Condition evaluation by @​Youssef1313 in https://github.com/microsoft/vstest/pull/15357
* Adding info on extensions points part 1 by @​nohwnd in https://github.com/microsoft/vstest/pull/15360
* Add option to ask for uploading code QL before the standard window ends by @​nohwnd in https://github.com/microsoft/vstest/pull/15373
* Update runtime versions by @​nohwnd in https://github.com/microsoft/vstest/pull/15372
* Fix .NET 10 regression for traits by @​Youssef1313 in https://github.com/microsoft/vstest/pull/15370
* Update target frameworks to net10.0 and net11.0 by @​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15349
* Fix names in pipeline matrix so we don't have to align them by @​nohwnd in https://github.com/microsoft/vstest/pull/15365
* Update SECURITY.md by @​Youssef1313 in https://github.com/microsoft/vstest/pull/15342

## New Contributors
* @​stdmnpkg made their first contribution in https://github.com/microsoft/vstest/pull/15359

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

## 18.3.0

## What's Changed

* Fix answer file splitting by @​nohwnd in https://github.com/microsoft/vstest/pull/15306

## Internal fixes and updates

* Bump branding to 18.1 by @​nohwnd in https://github.com/microsoft/vstest/pull/15286
* Remove stale copy of S.ComponentModel.Composition from testplatform packages by @​ViktorHofer in https://github.com/microsoft/vstest/pull/15287
* Update codeflow metadata to fix backflow by @​premun in https://github.com/microsoft/vstest/pull/15291
* [main] Update dependencies from devdiv/DevDiv/vs-code-coverage by @​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15283
* Update Microsoft.Build.Utilities.Core by @​Youssef1313 in https://github.com/microsoft/vstest/pull/15300
* Disable DynamicNative instrumentation by default by @​nohwnd in https://github.com/microsoft/vstest/pull/15299
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15293
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15302
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15314
* Delete sha1 custom implementation we are not using for a long time by @​nohwnd in https://github.com/microsoft/vstest/pull/15313
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15315
* Update branding to 18.3.0 by @​nohwnd in https://github.com/microsoft/vstest/pull/15321
* [main] Update dependencies from devdiv/DevDiv/vs-code-coverage by @​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15325
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15264
* Revert adding dotnet_host_path workaround by @​nohwnd in https://github.com/microsoft/vstest/pull/15328
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15338
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15322
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15343
* Change PreReleaseVersionLabel from 'preview' to 'release' by @​nohwnd in https://github.com/microsoft/vstest/pull/15352
* [rel/18.3] Update dependencies from devdiv/DevDiv/vs-code-coverage by @​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15354
* [rel/18.3] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15389
* [rel/18.3] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/microsoft/vstest/pull/15400
* Update build tools to 17.11.48 to be source buildable by @​nohwnd in https://github.com/microsoft/vstest/pull/15310
* Disable publishing on RTM by @​nohwnd in https://github.com/microsoft/vstest/pull/15296
* Don't access nuget.org for package feeds by @​nohwnd in https://github.com/microsoft/vstest/pull/15316
* No nuget access fix tests by @​nohwnd in https://github.com/microsoft/vstest/pull/15317
* Disable Dependabot updates in dependabot.yml by @​mmitche in https://github.com/microsoft/vstest/pull/15324

## New Contributors
* @​premun made their first contribution in https://github.com/microsoft/vstest/pull/15291

Commits viewable in [compare view](https://github.com/microsoft/vstest/compare/v18.0.1...v18.7.0).
</details>

Updated [NUnit](https://github.com/nunit/nunit) from 4.4.0 to 4.6.1.

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

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

## 4.6.1

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

## 4.6.0

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

## 4.5.1

See [release notes](https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-451---march-6-2026) for details.

## 4.5.0

See [release notes](https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-450---february-18-2026) for details.

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

Updated [NUnit.Analyzers](https://github.com/nunit/nunit.analyzers) from 4.11.2 to 4.14.0.

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

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

## 4.14.0

NUnit Analyzers 4.14 - June 1, 2026

This release of the NUnit Analyzers adds a new analyzer and associated codefix - `NUnit2059` - that helps ensure that
async assertion methods in NUnit version 5 and higher - i.e. `Assert.ThrowsAsync`, `Assert.CatchAsync`, and
`Assert.DoesNotThrowAsync` - have their results observed, as these methods are awaitable from NUnit version 5.

The release contains contributions from the following users (in alphabetical order):
* @​manfred-brands
* @​mikkelbu

Issues Resolved

Features and Enhancements
* #​988 Recognize that Assert.ThrowsAsync etc now return a Task that needs awaiting.

Tooling, Process, and Documentation
* #​990 Bump cake.tool from 6.1.0 to 6.2.0
* #​987 chore: bump version and correct errors in CHANGES.md

## 4.13.0

NUnit Analyzers 4.13 - May 2, 2026

This release of the NUnit Analyzers updates analyzer handling for the NUnit 4.6 API change that replaces
`ActualValueDelegate<>` with `Func<>` - see https://github.com/nunit/nunit/issues/4824 for more information.
Analyzers now also consider the return type of `Func<>` in assertions. The release also includes one bug fix and
some dependency updates.

The release contains contributions from the following users (in alphabetical order):
* @​manfred-brands
* @​mikkelbu
* @​RenderMichael

Issues Resolved

Features and Enhancements
* #​982 Recognized `Func<T>` return values

Bugs
* #​968 Whitespace issue in Does.Contain fixer when assert spans multiple lines

Tooling, Process, and Documentation
* #​985 chore: Bump year to 2026 in copyrights
* #​978 Bump cake.tool from 6.0.0 to 6.1.0
* #​976 chore: Correct documentation
* #​975 chore: bump version
* #​956 Bump cake.tool from 4.0.0 to 6.0.0

## 4.12.0

NUnit Analyzers 4.12 - March 3, 2026

This release of the NUnit Analyzers improves `NUnit1029` to account for `TestCaseSource`
support for params and optional arguments. It also introduces a new analyzer for incorrect
usage of `Is.Not.Null.Or.Empty`, fixes regressions in `NUnit2005` and `NUnit2055`, and updates
NUnit package dependencies.

The release contains contributions from the following users (in alphabetical order):
* @​Dreamescaper
* @​manfred-brands
* @​mikkelbu
* @​nowsprinting
* @​philipp-naused
* @​stevenaw

Issues Resolved

Features and Enhancements
* #​957 Relax NUnit1029 for TestCaseSource where method accepts a single "params" array
* #​189 Warning when `Is.Not.Null.Or.Empty` used 

Bugs
* #​953 Code fix for `NUnit2055` can generate invalid code for classic asserts
* #​952 Code fix for `NUnit2005` tries to use `Is.Empty` constraint on incompatible types.

Tooling, Process, and Documentation
* #​973 chore: Bump NUnit version
* #​970 chore: Bump NUnit to version 4.5.0
* #​967 Fix note about works with Unity Test Framework
* #​937 chore: bump version

Commits viewable in [compare view](https://github.com/nunit/nunit.analyzers/compare/4.11.2...4.14.0).
</details>

Updated [NUnit3TestAdapter](https://github.com/nunit/nunit3-vs-adapter) from 6.1.0 to 6.2.0.

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

_Sourced from [NUnit3TestAdapter's releases](https://github.com/nunit/nunit3-vs-adapter/releases)._

## 6.2.0

See [release notes](https://docs.nunit.org/articles/vs-test-adapter/AdapterV4-Release-Notes.html)

Commits viewable in [compare view](https://github.com/nunit/nunit3-vs-adapter/compare/V6.1.0...v6.2.0).
</details>

Updated [PublicApiGenerator](https://github.com/PublicApiGenerator/PublicApiGenerator) from 11.4.5 to 11.5.4.

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

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

## 11.5.4

## What's Changed
* Add --settings-file option by @​sungam3r in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/493


**Full Changelog**: https://github.com/PublicApiGenerator/PublicApiGenerator/compare/11.5.3...11.5.4

## 11.5.3

## What's Changed
* Follow up for extensions bug by @​slang25 in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/492


**Full Changelog**: https://github.com/PublicApiGenerator/PublicApiGenerator/compare/11.5.2...11.5.3

## 11.5.2

## What's Changed
* Bump actions/checkout from 5 to 6 by @​dependabot[bot] in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/490
* Fix extensions bug by @​slang25 in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/491

## New Contributors
* @​slang25 made their first contribution in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/491

**Full Changelog**: https://github.com/PublicApiGenerator/PublicApiGenerator/compare/11.5.1...11.5.2

## 11.5.1

## New features

* Add support for C#​14 extension members + NET10 SDK by @​sungam3r in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/488

## Misc

* Cleanup of tool project by @​sungam3r in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/484
* Update System.CommandLine package by @​sungam3r in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/486
* Bump actions/upload-artifact from 4 to 5 by @​dependabot[bot] in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/485



**Full Changelog**: https://github.com/PublicApiGenerator/PublicApiGenerator/compare/11.5.0...11.5.1

## 11.5.0

## What's Changed
* Add ApiGeneratorOptions.IncludeForwardedTypes by @​sungam3r in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/480
* Migrate to slnx by @​sungam3r in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/482

## CI updates
* Bump actions/checkout from 4 to 5 by @​dependabot[bot] in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/476
* Bump actions/setup-dotnet from 4 to 5 by @​dependabot[bot] in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/477
* Bump actions/github-script from 7 to 8 by @​dependabot[bot] in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/478
* Bump actions/labeler from 5 to 6 by @​dependabot[bot] in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/479
* Bump github/codeql-action from 3 to 4 by @​dependabot[bot] in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/481



**Full Changelog**: https://github.com/PublicApiGenerator/PublicApiGenerator/compare/11.4.6...11.5.0

## 11.4.6

## What's Changed
* Add support for required keyword by @​sungam3r in https://github.com/PublicApiGenerator/PublicApiGenerator/pull/473


**Full Changelog**: https://github.com/PublicApiGenerator/PublicApiGenerator/compare/11.4.5...11.4.6

Commits viewable in [compare view](https://github.com/PublicApiGenerator/PublicApiGenerator/compare/11.4.5...11.5.4).
</details>

Updated [Radzen.Blazor](https://github.com/radzenhq/radzen-blazor) from 6.6.4 to 11.1.0.

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

_Sourced from [Radzen.Blazor's releases](https://github.com/radzenhq/radzen-blazor/releases)._

## 11.1.0

# 11.1.0 - 2026-07-02

### Improvements
- **RadzenPanelMenu `RenderMode`**new `RenderMode` property (`Client` by default, `Server`) that renders a collapsed item's children only while it is expanded, keeping the DOM small and keyboard navigation fast for large navigation menus.
- **RadzenDataGrid `AllowSortingColumnPicker`** — sort the columns listed in the column picker.
- **RadzenSpreadsheet accessibility** — screen-reader and keyboard support: active cell on entry, F6 region cycling, a grid tab stop, and a filterable keyboard-shortcuts dialog. Also adds a two-way bindable `SelectedSheetIndex`.
- **Comprehensive keyboard and screen-reader accessibility (W3C ARIA APG)** across composite components — Menu, ContextMenu, PanelMenu, ProfileMenu, Tabs, Tree, SelectBar, Pager, RadioButtonList, Steps, DropDown, DropDownDataGrid, SplitButton, Splitter and more now use a single tab stop with `aria-activedescendant`, full Arrow / Home / End / Enter / Space / Escape handling, and type-ahead where applicable.
- RadzenSplitButton: Space/Enter trigger the main action; Arrow and Alt+Arrow open the menu.
- RadzenAccordion: improved keyboard focus handling and accessibility.
- RadzenSwitch: keyboard focus now shows a focus outline.
- RadzenTree: the focused node scrolls into view during keyboard navigation.
- RadzenCarousel / RadzenSidebar: hidden or inactive content is no longer focusable.
- Unified focus-state colors and styles across form components and buttons.
- Updated the keyboard-navigation documentation across the component demos.

### Fixes
- RadzenFormField: fixed the label association — removed an invalid `for` on the wrapper element and the empty `for` that made the label appear unassociated.
- RadzenChart: the tooltip no longer disappears when the pointer moves over it.
- RadzenMenu: opening a submenu now closes sibling submenus so two submenus are no longer open at once; improved overall close behavior.
- RadzenDropDownDataGrid: the grid no longer exposes a stale `aria-activedescendant` when no row is active.
- RadzenDropDown: tabbing out of an open (non-searchable) dropdown no longer skips the next element.
- RadzenSplitter: keyboard resize fixed; dragging the last pane past its `Max` no longer snaps it shut.
- RadzenMask / RadzenTextBox / RadzenTextArea / RadzenPassword / RadzenAutoComplete: keep the DOM input in sync with the bound value on .NET 10.
- RadzenHtmlEditor: fixed a null reference in table context building.
- RadzenDataGrid: the advanced filter popup no longer closes on touch devices when the on-screen keyboard opens, and the SimpleWithMenu date filter calendar no longer opens then immediately closes.
- RadzenPanelMenu: consistent alignment between parent and child items in the navigation rail layout.
- RadzenScheduler: an `AppointmentRender` CSS class no longer overrides the default event content styling.


## 11.0.5

# 11.0.5 - 2026-06-26

### Improvements
- **RadzenChat mentions** — added a configurable @-mention system. Set `MentionCharacter` (e.g. `'@'`) to trigger a searchable user popup, with an async `MentionSearch` callback, `MentionItemTemplate`/`MentionDisplayTemplate` for custom rendering, keyboard navigation, and paging via `MentionSearchArgs`. Mentions are stored in a secure `@[userid]` format. The feature is opt-in and fully backwards compatible.
- **RadzenSpreadsheet** now supports right-to-left (RTL) layout.
- RadzenAccordion: improved keyboard focus handling and accessibility.
- RadzenTooltip now dismisses on Escape and stays open while the pointer is hovering over it.

### Fixes
- DataGrid `IsNull`/`IsEmpty` filter operators no longer break under case-insensitive filtering, including inside compound filters.
- Funnel chart bottom segment no longer flares out when given skewed values.
- RadzenProfileMenu/menu flyout is no longer clipped by sub-pixel overflow rounding.
- Themes no longer apply a global `prefers-reduced-motion` override.
- TileLayout borders and item header background are now properly applied


## 11.0.4

# 11.0.4 - 2026-06-25

### Fixes
- RadzenChart no longer captures page scroll when the pointer is over a chart that has zooming disabled.
- DataGrid column filter popups now close other open column popups in Initial filter mode.
- PivotDataGrid filter popup no longer double-toggles.
- Fixed a popup teardown crash ("element orphaned" / `removeChild`) when a popup is disposed.
- Fixed RadzenFormField when it starts with `Visible` set to `false`.


## 11.0.3

# 11.0.3 - 2026-06-24

### Fixes
- Disabled assembly trimming for the component library (`IsTrimmable=false`).

## 11.0.2

# 11.0.2 - 2026-06-24

### Fixes
- Fixed several components crashing under trimming (Blazor WebAssembly) with `System.Text.Json` `ConstructorContainsNullParameterNames`. The trimmer strips anonymous-type constructor parameter names, so anonymous objects could no longer be serialized:
  - **RadzenGoogleMap** — crashed when rendering markers (`createMap`/`updateMap` JS interop). Marker data now uses a named, trim-preserved type.
  - **AI Chat**failed when sending requests to the chat API. The request payload and conversation messages now use named, trim-preserved types.


## 11.0.1

# 11.0.1 - 2026-06-24

### Fixes
- Fixed RadzenSpreadsheet crashing on first render under trimming (WASM).


## 11.0.0

# 11.0.0 - 2026-06-24

This is a major release headlined by the new **Spreadsheet** component, a large **Chart** expansion (many new series and a Range Navigator), resource-based localization with built-in translations, and trimming/CSP support.

### Breaking Changes
- **.NET 7 support removed.** The library now targets net8.0, net9.0 and net10.0.
- **`RadzenHtml` component removed.** (`RadzenHtmlEditor` is unaffected.)
- **Markdown types moved** to the `Radzen.Documents.Markdown` namespace. Update `using` directives.
- **Localization is now resource-based across all components.** Custom text overrides that relied on the previous mechanism should be migrated to the resource-based approach (see the new Localization page).
- **RadzenPopup** — the internal Popup is now a public component.

### New Components
- **RadzenSpreadsheet** — a full Excel-compatible spreadsheet component. Highlights:
  - **Formula engine** with 100+ Excel-compatible functions (math, statistical, text, date/time, logical and lookup — e.g. SUM/AVERAGE/COUNT, IF/IFERROR, VLOOKUP/HLOOKUP/XLOOKUP, INDEX/CHOOSE, SUBTOTAL/AGGREGATE, DATE/EDATE/EOMONTH/DATEDIF, plus Tier 1/Tier 2 functions), Excel-matching boolean and number coercion, and dependency-tracked recalculation.
  - **Tables** matching Excel's ListObject (multi-key sort, AutoFilter, advanced/Top 10/Dynamic/Color filters, totals row, banding, table design) with XLSX round-trip.
  - **Charts inside sheets** with an Edit Chart dialog, series management, drag-to-move/resize and XLSX import/export.
  - **Floating images** with interactive drag/resize.
  - **Data validation** (input prompts, error popups), **conditional formatting**, and number/scientific/accounting formats with a Format Cells dialog.
  - **Multiple worksheets**, freeze panes, merged cells, autofill, custom cell types, sheet/workbook protection.
  - **Undo/redo** for all commands (including paste, cut, sort, filter) with keyboard shortcuts.
  - **Import/export**: XLSX (closer to Excel's package layout) and CSV.
  - Customizable toolbar/toolsets, feature toggles, async command pipeline, custom ribbons, and a dedicated localization service.
- **RadzenSignaturePad** — capture handwritten signatures.
- **RadzenRangeNavigator** — interactive range selector for charts, with axis support and a compact mode.
- **Scheduler Agenda View** — a new list-style view for RadzenScheduler.
- **HTML Editor tables** — table creation and editing tools added to RadzenHtmlEditor.

### Charts
A large expansion of the charting subsystem.

**New series types:**
- BoxPlot, Bullet, Pyramid, Funnel (with Inverted), Heatmap, Treemap, Contour.
- Candlestick, OHLC, Scatter Line.
- Waterfall / Horizontal Waterfall.
- Range Column / Bar / Area, and Range Step Area.
- Step Line, Step Area, Stacked Line, Full Stacked Column / Bar / Area / Line, High-Low.
- Radar (polar) column; RadzenSpiderChart now supports polar configurations.
- Pie/Donut `RadiusProperty` and `ExplodeOffset`.

**Axes & interaction:**
- Multiple axes, inverted axes, axis crossing, indexed and logarithmic axes.
- Pan and zoom support.
- Series and legend hover highlighting; active point highlight inherits series colors/marker shapes.
- Per-axis crosshair with axis label, shared tooltip, and improved tooltip positioning.
- Trendlines and drill-down support.
- RTL support, including RTL-aware Start/End legend positions.

**Styling & polish:**
- Opt-in (radial) gradient fills for pie, donut, funnel, pyramid, waterfall, range area, column, bar and bullet series.
- Initial render animations across series types.
 ... (truncated)

## 10.4.9

# 10.4.9 - 2026-06-11

### Fixes
- RadzenSpiderChart throws disposed DotNetObjectReference error when navigating away or toggling Edit Source.

## 10.4.8

# 10.4.8 - 2026-06-11

### Improvements
- RadzenChart premium themes updated.
- Demos: GitHub star call to action added to the home page hero and Get Started page.
- Demos: newsletter signup added to the footer and home page.

### Fixes
- RadzenSplitter sticky resize cursor and resize mask block panes after resizing.
- RadzenDropDown popup hidden behind the on-screen keyboard on mobile (MAUI).
- RadzenTabs throws JSException when focusing after tab selection.

## 10.4.7

# 10.4.7 - 2026-06-01

### Improvements
- RadzenPivotDataGrid cell computation optimized with single-pass column bucketing.

### Fixes
- RadzenTabs re-renders tab content on every keystroke.
- RadzenTabs render state not restored when tab event handlers throw.
- RadzenTabs throws JSDisconnectedException during tab selection.
- RadzenPivotDataGrid footer value cells appear in front of frozen footer cells.
- Demos: Run crashes in Edit Source; allow Monaco worker via CSP.


## 10.4.6

# 10.4.6 - 2026-05-28

### Improvements
- RadzenChat TitleContent added.

### Fixes
- DataGrid simple filter row not aligned with column when hiding it via the column picker.
- RadzenMask id not rendered from Name so RadzenFormField label does not associate correctly.


## 10.4.5

# 10.4.5 - 2026-05-26

### Improvements
- RadzenPickList SourceTemplate/TargetTemplate added.

### Fixes
- DataGrid filter input swallows spacebar with composite columns.


## 10.4.4

# 10.4.4 - 2026-05-21

### Improvements
- RadzenDataGrid SortComparer added on columns for custom IComparer sort support.
- RadzenDataGrid FilterLookupData added on columns for lookup-driven CheckBoxList filtering — display options by name while filtering on the underlying value.
- RadzenDataGrid AutoApplyCheckBoxListFilter applies CheckBoxList filters immediately on selection.

### Fixes
- RadzenNumeric with Immediate=true moves cursor to the end while typing.
- Scheduler month view trims multi-day events that start later than other events on the same day.
- Icon font flickers when switching themes in development.
- Switching themes in quick succession flashes unstyled content.
- Accumulating &amp; chain in demo site theme query string.

## 10.4.3

# 10.4.3 - 2026-05-14

### Fixes
- RadzenTextBox trims spaces when the user tries to encapsulate them within the text.
- DropDownDataGrid filtering not working with LoadData.

## 10.4.2

# 10.4.2 - 2026-05-13

### Fixes
- Popup Dispose no longer crashes Blazor Server circuit.

## 10.4.1

# 10.4.1 - 2026-05-11

### Fixes
- DataGrid avoids full SELECT for empty-state check on IQueryable virtualization.

## 10.4.0

# 10.4.0 - 2026-05-11

### Improvements
- RadzenPickList Move event added.
- RadzenDropDown/RadzenDropDownDataGrid ShowValueTemplateOnEmpty added.

### Fixes
- TemplateForm custom EditContext null on submit.
- DataGrid will use Any() instead of Count() to check if EmptyTemplate should be shown.
- DataGrid does not reset private sort when AllowMultiColumnSorting=true.
- Popup isn't removed from HTML.
- DropDown handles selected base values with derived data.
- Demos return 500 on direct navigation to /tree-checkboxes and /googlemap.
- DataGrid simple filter with menu icon remains active when operator changed.


## 10.3.2

# 10.3.2 - 2026-04-29

### Improvements
- AutoComplete: EmptyTemplate, LoadingTemplate and IsLoading parameters added.

### Fixes
- RadzenTabs does not refresh UI in some cases (regression introduced in 10.2.0 with external keyboard input such as barcode scanners).
- RadzenDataGrid rows cannot be accessed using arrow keys with enabled screen reader.
- RadzenDropDown items announced as blank by screen readers.
- RadzenValidator popups lose anchoring on scroll.


## 10.3.1

# 10.3.1 - 2026-04-23

### Improvements
- DropDown/DropDownDataGrid selected items shown as title for the selected items label.

### Fixes
- RadzenTabs and RadzenDataGrid screen reader keyboard navigation improved.
- RadzenDataGrid column reorder and group-by-column now work on touch devices.
- RadzenDatePicker screen reader and keyboard navigation improved.
- RadzenDropDown announce focused option while popup is open.
- Popup positioning fix on viewports smaller than the popup.

## 10.3.0

# 10.3.0 - 2026-04-20

### Improvements
- RadzenChat/RadzenAIChat TimestampFormat, ShowDateSeparator, DateSeparatorFormat and DateSeparatorTemplate added.

### Fixes
- RadzenDatePicker with ShowTime and Ok button does not restore focus correctly after selection.
- RadzenDropDown does not announce highlighted option to screen readers when navigating options with arrow keys.
- Menu first-level submenus should also fly out to the side.
- DataGrid LoadData infinitely called on Reset().
- DotNetObjectReference instance was already disposed error fixed.
- Screen reader announces abbreviated weekday names incorrectly in DatePicker.

## 10.2.3

# 10.2.3 - 2026-04-13

### Improvements
Add custom CssPath to RadzenTheme and its using ThemeService.
Option to disable ArrowUp/ArrowDown increment behavior in RadzenNumeric.

### Fixes
DataGrid AllowColumnReorder="true" does not work in .NET MAUI Android.
Enum DisplayAttribute extensions improved.
DataGrid ShowHeader not working properly.

## 10.2.2

# 10.2.2 - 2026-04-09

### Improvements
- DialogService non generic OpenDialog method added.

### Fixes
- Updating the time of a DatePicker with ShowTime doesn't respect Immediate.
- DatePicker TAB navigation fixed.
- RadzenDataAnnotationValidator: error message not updated when transitioning between invalid states.
- DataGrid column header nested interactive elements fixed.

## 10.2.1

# 10.2.1 - 2026-04-06

### Fixes
- Setting a Min value in the DatePicker to any time on today's date disabled the current day.
- Gantt CellContextMenu not working when ContextMenu is defined.
- CheckBoxList, RadioButtonList and SelectBar items should not be focused.

## 10.2.0

# 10.2.0 - 2026-04-02

### Improvements
- RadzenSteps Transition and TransitionDuration added.
- RadzenStepsItem OnNextStep/OnPreviousStep added.
- RadzenPager AllowReload added.
- RadzenScheduler ShowNavigationButtons, ShowTodayButton and ShowDateTitle added.
- RadzenAccordion RenderMode added.

### Fixes
- RadzenTabs keydown re-rendering frequency.
- RadzenLengthValidator reports false negative with empty string.

## 10.1.0

# 10.1.0 - 2026-03-31

### Improvements
- Allow displaying multiple items on Carousel component.

### Fixes
- Popup error messages hidden behind controls in DataGrid InLine editing.
- DataGrid CheckBoxFilter selected values fixed when AllowVirtualization.
- DataGrid CheckBoxList filtering IQueryable support improved.
- DatePicker and Scheduler should respect Culture.Calendar.
- RadzenFormField title in wrong position.

## 10.0.7

# 10.0.7 - 2026-03-30

### Improvements
- Carousel AllowScroll property added.
- Emoji support in markdown added.

### Fixes
- FormField label offset when Start content is present.
- Carousel position indicators not updating when horizontal scroll.
- ContextMenu Flyout support fixed.
- DataGrid FilterOperator clears with the Clear Button click.
- DataGrid CheckBoxList filtering with OData fixed.

## 10.0.6

# 10.0.6 - 2026-03-23

### Improvements
- DataGrid FilterAsYouType property added
- RadzenMenu Flyout property added.
- DatePicker Immediate property added.
- DartSassBuilder replaced with Radzen.MSBuild.

### Fixes
- DialogContainer should cache the child content.
- HtmlEditor throws an exception when using the URL command when inside a dialog.
- RadzenCustomValidator fires before bound Value Change on RadzenDropdown.
- DataGrid FilterOperator.Custom removed from UI.

## 10.0.5

# 10.0.5 - 2026-03-18

### Improvements
- DataGrid headers and loading z-index reverted.

## 10.0.4

# 10.0.4 - 2026-03-18

### Improvements
- RadzenQRCode QuietZone property added.

### Fixes
- Numeric will not raise Change on delete or backspace.
- DialogService.OpenAsync() return value should be dynamic?
- Scheduler MoreText label contained within slot in Planner and Timeline views.
- Scheduler SlotSelect event not firing in month view.
- DataGrid shows column headers while loading.

## 10.0.3

# 10.0.3 - 2026-03-16

### Improvements
- Add CanClose callback to prevent dialog dismissal.

## 10.0.2

# 10.0.2 - 2026-03-13

### Fixes
- DropDown error on ENTER when bound to custom objects.
- RadzenProfileMenu and RadzenPivotDataGrid invalid ARIA expanded.
- DropDown should hide clear button in ReadOnly mode.

## 10.0.1

# 10.0.1 - 2026-03-12

### Fixes
- RadzenBubbleSeries/RadzenScatterSeries tooltips imporved.
- Tooltip render issue.

## 10.0.0

# 10.0.0 - 2026-03-12

### Breaking Changes
- RadzenTocItem now renders an `<a>` element instead of a `<button>`. Update CSS selectors that target `.rz-toc-link` as a button.
- RadzenToc selected item now uses `aria-selected` instead of `aria-current="location"`.
- RadzenToc scrolling no longer updates the browser address bar. The URL fragment is set only when the user clicks a TOC link.
- Scheduler Month view "more" button moved from an absolute-positioned overlay to the slot header (`.rz-slot-title`). Update custom CSS that targets the old `.rz-event-list-btn` positioning.

### New Components
- Chip and ChipList components added.
- Gantt component added.
- LinearGauge component added.
- Scatter and Bubble series added to Chart.

### Improvements
- RadzenAccordion ExpandAll()/CollapseAll() added.
- RadzenAccordion ARIA attributes improved.
- RadzenCarousel AnimationDuration added.
- RadzenChat new messages button added.
- RadzenDatePicker FocusedDate synced with current date.
- RadzenDropDownDataGrid search text clear button added.
- RadzenDropZoneContainer Start/End Drag events added.
- RadzenHtmlEditor Immediate property added.
- RadzenListBox/RadzenPickList EmptyTemplate and EmptyText added.
- RadzenPanelMenu MenuItemDisplayStyle.IconAndTextStacked added.
- RadzenPickList AllowVirtualization added.
- RadzenPickList SelectedSourceChanged/SelectedTargetChanged added.
- RadzenPickList SourceExpression/TargetExpression added for form validation support.
- RadzenPivotField Selected added.
- RadzenScheduler month view "more" button moved to slot header.
- RadzenTextBox/RadzenTextArea/RadzenHtmlEditorColorBase OnChange and SetValue methods made virtual to allow overriding in derived components.
- RadzenTabs AllowReorder property added.
- Tooltip ARIA attributes improved.
- Replace Radzen.Mcp with Radzen Blazor MCP on AI page and nav menu.
- Optimize CSS rules and SCSS mixins.

### Fixes
- CheckBoxList filter options update without clicking Apply.
- Clicking into Padding of PanelMenuItem does navigate but not expand Item.
- DataGrid add new row issue with LoadData method.
- DataGrid column resizing does not work on mobile and tablet devices.
- DataGrid Fixed Column resizing will show visual white space between fixed columns.
- DataGrid footer and header is being incorrectly rendered for frozen columns.
- DataGrid Reload() lags one render behind.
- Dialog OnSideClose gets called when opening and closing.
- DataBoundFormComponent EditContext subscription leak when EditContext instance changes.
- DropDown EditContext NotifyFieldChanged raised after ValueChanged.
- DropDownDataGrid exception when changing data object.
- Gaps in Data for Charts.
- Line Chart markers cannot be dynamically turned off using `@​if`.
 ... (truncated)

## 9.1.0

# 9.1.0 - 2026-03-09

### Improvements
- Custom Popup as DropDrow with Tree demo added.

### Fixes
- RadzenPivotDataGrid: Min and Max aggregate functions display empty cells.
- AccordionItem does not reflect changes on data-bound content.
- Conditional keyboard event propagation. ESC key should propagate.
- DatePicker will treat DateTime.MaxValue similar to DateTime.MinValue.
- DatePicker OkClick callback added fired on Ok button click.
- DatePicker with ShowTimeOkButton will revert value if change not confirmed by Ok button.
- GroupByMany() improved to use pure IQueryable chain.
- RadzenPivotDataGrid sorting on aggregate columns produces inconsistent/incorrect order.
- RadzenPivotDataGrid aggregate dropdown doesn't update displayed value after changing function.

## 9.0.8

# 9.0.8 - 2026-03-04

### Fixes
- RadzenComponent/RadzenDataGrid dispose too aggressive when Visible set to false.
- Create a syncWidth parameter for the Popup Toggle Async function.
- Filterable DropDown/DropDownDataGrid tab out fixed.
- Mеnu out of range exception with arrow down
- DropDown filter stays applied after clearing it.
- NuGet package sometimes ship with incorrect Integrity hashes.

## 9.0.7

# 9.0.7 - 2026-03-02

### Improvements
- Add ShowTooltipOnLegend for pie and donut series.

### Fixes
- Fix dropdown filter input jumping on Blazor Server with latency.
- RadzenDropdown aria-expanded not reflecting state.
- DataFilter ToFilterString() is causing ExpressionParser error with default(bool).
- AutoComplete flickers on filter.
- Fix ParameterView expiration crash in scheduler year views when LoadData is async.
- Fix color of clear and close buttons in clearable input components and notifications.

## 9.0.6

# 9.0.6 - 2026-02-23

### Fixes
- Fix text alignment in RadzenToc.
- Prefer HTML/text over image when pasting from Excel in Editor.
- DataGrid GroupFootersAlwaysVisible fixed.
- DataGrid GroupFooterTemplate renders in wrong column in case of composite columns.

## 9.0.5

# 9.0.5 - 2026-02-16

### Fixes
- Fixed nullabe parameter value support to DialogService.
- Fix RadzenSteps next/previous buttons not reflecting disabled state.
- Dot....

_Description has been truncated_

Bumps bunit from 1.40.0 to 2.7.2
Bumps coverlet.collector from 6.0.4 to 10.0.1
Bumps csharpier from 1.2.6 to 1.3.0
Bumps DotNet.ReproducibleBuilds from 2.0.2 to 2.0.5
Bumps FluentAssertions from 8.8.0 to 8.10.0
Bumps Microsoft.CodeAnalysis.CSharp from 4.14.0 to 5.6.0
Bumps Microsoft.EntityFrameworkCore.InMemory from 10.0.5 to 10.0.9
Bumps Microsoft.NET.Test.Sdk from 18.0.1 to 18.7.0
Bumps NUnit from 4.4.0 to 4.6.1
Bumps NUnit.Analyzers from 4.11.2 to 4.14.0
Bumps NUnit3TestAdapter from 6.1.0 to 6.2.0
Bumps PublicApiGenerator from 11.4.5 to 11.5.4
Bumps Radzen.Blazor from 6.6.4 to 11.1.0

---
updated-dependencies:
- dependency-name: bunit
  dependency-version: 2.7.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: coverlet.collector
  dependency-version: 10.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: csharpier
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: DotNet.ReproducibleBuilds
  dependency-version: 2.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: FluentAssertions
  dependency-version: 8.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.CodeAnalysis.CSharp
  dependency-version: 5.6.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.EntityFrameworkCore.InMemory
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: NUnit
  dependency-version: 4.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: NUnit.Analyzers
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: NUnit3TestAdapter
  dependency-version: 6.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: PublicApiGenerator
  dependency-version: 11.5.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: Radzen.Blazor
  dependency-version: 11.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code labels Jul 2, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 2, 2026

Copy link
Copy Markdown
Contributor Author

The group that created this PR has been removed from your configuration.

@dependabot dependabot Bot closed this Jul 2, 2026
@Theauxm Theauxm deleted the dependabot/nuget/dot-config/nuget-dependencies-6dec5ac3e5 branch July 2, 2026 20:10
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.

AddAuthorization() / AddTestAuthorization() doesn't work with shallow rendering

0 participants