Skip to content

Bump the nuget-minor-patch group with 19 updates#89

Open
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/nuget/dot-config/nuget-minor-patch-0864f289c9
Open

Bump the nuget-minor-patch group with 19 updates#89
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/nuget/dot-config/nuget-minor-patch-0864f289c9

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Updated BenchmarkDotNet from 0.14.0 to 0.15.8.

Release notes

Sourced from BenchmarkDotNet's releases.

0.15.8

This release adds OpenMetrics exporter support for Prometheus-compatible metrics export, improves the Roslyn analyzers with multi-target support and better type checking, and fixes several bugs including process deadlocks and WASM trimming issues.

Features

  • Add OpenMetrics exporter for Prometheus-compatible metrics output (#​2801)
  • Add Job info to DisassemblyDiagnoser report headers to distinguish assemblies when using multiple coreruns (#​2884, fixes #​2573)
  • Add NO_COLOR environment variable support for disabling console colors (#​2870)

Improvements

  • Multi-target analyzers with improved type assignability checking using semantic model (#​2866)
  • Add new analyzer diagnostic BDN1503 for better argument/params validation (#​2865, fixes #​2864)
  • Use PolySharp for [DynamicallyAccessedMembers] attribute polyfill (#​2883)
  • Refactor to use AsyncProcessOutputReader for cleaner process output handling (#​2878)

Bug Fixes

  • Fix process deadlock issue when reading process output (#​2877)
  • Fix WASM generated project being trimmed out (#​2872)
  • Allow filters to filter out every benchmark from a type without errors (#​2879, fixes #​2860)
  • Fix unhandled exception when running BenchmarkRunner.Run<T>() with arguments on invalid benchmark type (#​2880, fixes #​2724)

Internal

  • Update release workflow for analyzers (#​2882)
  • Improve docs building workflow
  • Cleanup #if-#endif preprocessor directives using PolySharp polyfills (#​2881)

Full Changelog: dotnet/BenchmarkDotNet@v0.15.7...v0.15.8

0.15.7

This release introduces Roslyn analyzers to catch incorrect BenchmarkDotNet usage at compile time, improves .NET Framework version detection, and updates OS detection support.

Features

  • Add Roslyn analyzers to detect incorrect usage of BenchmarkDotNet at compile-time (#​2837)
    • Validates benchmark class structure (public, non-sealed, generic constraints)
    • Checks [Arguments], [Params], and [ParamsAllValues] attribute usage
    • Verifies [GenericTypeArguments] requirements
    • Ensures only one baseline method per category
    • Validates BenchmarkRunner.Run invocations

Improvements

  • Improve .NET Framework version detection by retrieving version from TargetFrameworkAttribute (#​2682)
  • Bump Perfolizer 0.6.0 → 0.6.1, bringing updated Windows and macOS version detection in OsBrandHelper

Bug Fixes

  • Fix null reference handling and exception logging in TestCaseFilter for the test adapter
  • Fix flaky CI tests by increasing build timeout values (#​2854)

Internal

  • Improve release workflow in release.yaml

Full Changelog: dotnet/BenchmarkDotNet@v0.15.6...v0.15.7

0.15.6

v0.15.6

This release adds ref struct parameter support for [ArgumentsSource], fixes Native AOT runtime moniker resolution, and upgrades to Perfolizer 0.6.0 with the new Pragmastat statistical engine.

Features

  • Add ref struct parameter support for [ArgumentsSource] attribute, enabling Span<T> and ReadOnlySpan<char> parameters (#​2849)

Bug Fixes

  • Fix runtime moniker normalization for Native AOT targets (#​2852)

Improvements

  • Upgrade to Perfolizer 0.6.0 with Pragmastat statistical engine integration

Documentation

  • Add documentation for breaking changes related to disassembler native dependencies (#​2836)

Internal

  • Introduce GitHub Actions release workflow

Full Changelog: dotnet/BenchmarkDotNet@v0.15.5...v0.15.6

0.15.5

This release fixes job naming consistency when using --runtimes, clamps histogram bin bounds to avoid confusing negative values, and reduces output directory clutter by filtering unnecessary runtime and satellite assembly files.

Features

  • Add custom MSBuild targets to remove unnecessary files from the bin directory (#​2737)
    • Filters out Capstone native binaries for non-target platforms
    • Removes satellite assemblies from Microsoft.CodeAnalysis packages

Bug Fixes

  • Fix job names consistency between SimpleJobAttribute and --runtimes CLI option (#​2841)
    • Jobs now use runtime names as IDs consistently across all runtime monikers
  • Clamp histogram bin lower bounds to non-negative values (#​1821)
    • Prevents confusing negative values in histogram output for non-negative measurements

Internal

  • Bump Perfolizer: 0.5.3 → 0.5.4 (#​2773)
  • Update changelog and GitHub Pages generation workflows
  • Enable workflow_dispatch for test workflow (#​2835)

Full Changelog: dotnet/BenchmarkDotNet@v0.15.4...v0.15.5

0.15.4

This release fixes issues with ParamsSource attribute resolution in inheritance scenarios and corrects a MSBuild syntax error in the TestAdapter.

Bug Fixes

  • Allow [ParamsSource] to resolve overridden methods and properties in derived classes (#​2832)
  • Fix MSBuild condition syntax for TestTfmsInParallel property that prevented Visual Studio from loading projects (#​2831)

Full Changelog: dotnet/BenchmarkDotNet@v0.15.3...v0.15.4

0.15.3

This release brings .NET 10 NativeAOT instruction set support, improved CPU detection on Windows when WMIC is unavailable, test adapter filtering, and numerous bug fixes.

Breaking Changes

  • Deprecated .WithNuget() job extension in favor of .WithMsBuildArguments() (#​2812)

Features

  • Add VS Test Adapter filter support for running specific benchmarks (#​2788)
  • Update NativeAOT instruction set support for .NET 10+ (#​2828)

Improvements

  • Add PowerShell-based CPU detection fallback for Windows when WMIC is unavailable (#​2749)
  • Improve IsNetCore and IsNativeAOT detection for single-file apps without AOT (#​2799)
  • Use --nodeReuse:false for dotnet CLI commands to improve build isolation (#​2814)
  • Enable assembly signing for debug builds (#​2774)

Bug Fixes

  • Fix ArgumentsSource on external types not working if the argument type is not primitive (#​2820)
  • Fix workload warmup mode not working correctly
  • Fix EtwProfiler for file paths slightly under 260 characters (#​2808)
  • Fix console logs being output twice when using TestAdapter (#​2790)
  • Fix EventProcessor.OnEndValidationStage not being called when critical validation errors occur (#​2816)
  • Fix XmlException thrown when TextReader.Null is passed to AppConfigGenerator (#​2817)
  • Fix case sensitivity issue in NativeMemoryLogParser program name matching (#​2795)
  • Fix typo in BuildPlots.R

Internal

  • Replace StyleCop.Analyzers with unstable version for improved analysis (#​2796)
  • Add workflow to run selected tests (#​2797)
  • Fix flaky MemoryDiagnoser tests on macOS (#​2813)
  • Fix x86 disassembler tests for net462 (#​2792)
  • Split TimeConsumingBenchmark class to reduce test time
  • Update BenchmarkDotNetDiagnosers package version (#​2805)
  • Fix comment in package props about GenerateProgramFile (#​2802)

Full Changelog: dotnet/BenchmarkDotNet@v0.15.2...v0.15.3

0.15.2

This release improves memory allocation measurement accuracy and adds new features for job ordering and runtime validation.

Features

  • Add JobOrderPolicy option to sort jobs in numeric order instead of ordinal order (#​2770)
  • Add RuntimeValidator to detect benchmarks with null runtime configuration (#​2771)

Improvements

  • Improve memory diagnoser accuracy with better allocation measurement isolation, warm-up phase, and handling of tiered JIT (#​2562)

Bug Fixes

  • Auto-generate unique job IDs between benchmark runs to prevent ID collisions
  • Skip null runtime validation for in-process toolchain (#​2780)
  • Fix flaky memory allocation test (#​2782)
  • Fix benchmark test adapter enumeration issues (#​2766)

Internal

  • Modify macOS runner image for CI (#​2775)
  • Add setting to skip test reports when original workflow is cancelled (#​2772)
  • Suppress xunit non-serializable data warnings (#​2769)
  • Enable --force-clone for docs-fetch in generate-gh-pages workflow
  • Allow workflow_dispatch for publish-nightly workflow
  • Enhance docs-fetch command with additional options
  • Remove docs/_changelog folder from main branch (migrated to docs-changelog branch)

Full Changelog: dotnet/BenchmarkDotNet@v0.15.1...v0.15.2

0.15.1

A maintenance release with improved cross-platform compatibility, a new feature for referencing external types in source attributes, and several bug fixes for ARM CPUs and unsupported operating systems.

Features

  • Allow [ArgumentsSource] and [ParamsSource] to reference methods in other types via new constructor overload: [ArgumentsSource(typeof(MyClass), nameof(MyClass.Values))] (#​2748)

Bug Fixes

  • Fix WakeLock P/Invoke compatibility with ARM CPUs by refactoring REASON_CONTEXT to use proper union structure (#​2745, #​2756)
  • Fix Console.CancelKeyPress crash on platforms that don't support it (Android, iOS, tvOS, WASM) (#​2739, #​2741)
  • Fix CPU detection crash on unsupported operating systems by returning CpuInfo.Unknown (#​2740)
  • Support .slnx solution file format when searching for solution files (#​2764)

Improvements

  • Bump Perfolizer: 0.5.2 → 0.5.3
  • Make ExporterBase.GetArtifactFullName accessibility modifier more permissive

Internal

  • Update .NET SDK version to 8.0.410 (#​2762)
  • Update Microsoft.NET.Test.Sdk and other package dependencies (#​2750, #​2755)
  • Rework changelog generation to use docs-changelog branch (#​93d12c42)
  • Fix line-endings to LF in several files
  • Update GitHub Actions workflows

Full Changelog: dotnet/BenchmarkDotNet@v0.15.0...v0.15.1

0.15.0

BenchmarkDotNet v0.15.0 brings .NET 10 support, a new WakeLock feature to prevent system sleep during benchmarks, improved engine internals for more consistent measurements, and numerous bug fixes and improvements.

Features

  • WakeLock support: New [WakeLock] attribute and --wakeLock CLI option to prevent the system from entering sleep mode while benchmarks are running (#​2670)
  • .NET 10 support: Added RuntimeMoniker.Net10, NativeAot10, and Mono10 with full toolchain support (#​2642)
  • Box plots in ScottPlotExporter: New box plot visualization for benchmark results with improved font sizing
  • RiscV64 platform support: Added Platform.RiscV64 for RISC-V 64-bit architecture (#​2644, #​2647)
  • Required properties support: Benchmark classes can now use C# 11 required properties (#​2579)
  • HostSignal.AfterProcessStart: New signal allows diagnosers to obtain the process ID of a benchmark process started in suspended state (#​2674)
  • Parallel build control: New ConfigOptions.DisableParallelBuild option to force sequential builds (#​2725)
  • Auto-hide empty metric columns: ThreadingDiagnoser and ExceptionDiagnoser now support configuration to hide columns when metrics have no values (#​2673)
  • Measurements in DiagnoserResults: Custom diagnosers can now access measurements for calculations (#​2731)

Improvements

  • Constant stack size engine refactoring: Engine stages refactored to use IEngineStageEvaluator for more consistent instruction location and simpler code (#​2688)
  • Use ArtifactsPath instead of IntermediateOutputPath: Improved build artifact handling for SDK 8+ (#​2676)
  • InProcessNoEmitRunner NativeAOT support: Basic support for running InProcessNoEmitRunner with NativeAOT (#​2702)
  • Allow ParamsAttribute values from derived classes: ParamsAttribute.Values setter is now protected instead of private (#​2716)
  • Updated clrmd to 3.1: Disassembler now uses ClrMdV3Disassembler (#​2488)
  • Updated ScottPlot to 5.0.54: Plotting exporter updated to latest ScottPlot version (#​2709)
  • Perfolizer upgraded to 0.5.2: CPU/OS detection logic moved to Perfolizer with new Perfonar exporters replacing Phd exporters
  • Log warnings for empty benchmarks: Clear warning messages when running benchmarks that match no methods (#​2718)
  • Validation for sealed benchmark classes: Compiler now warns when benchmark classes are sealed (#​2660)
  • Improved baseline warning message: More descriptive warning when baseline benchmarks are misconfigured (#​2650)

Bug Fixes

  • Fix async GlobalSetup/GlobalCleanup with InProcessEmit: Async setup and cleanup methods are now properly awaited (#​2109)
  • Fix Windows path too long: Handle Windows MAX_PATH limitations in build paths (#​2681)
  • Fix builds with --keepFiles: Include auto-incremented ID in build artifacts directory to avoid conflicts (#​2423)
  • Fix Ctrl-C handling: System state (power management, console title) is now properly reverted on process termination (#​2483, #​2661)
  • Fix dotnet command failure detection: Commands now always fail when dotnet returns non-zero exit code (#​2535)
  • Fix deadlock in GetDotNetSdkVersion: Resolved potential deadlock in SDK version detection (#​2622)
  • Fix lscpu CPU frequency parsing: Corrected frequency parsing from lscpu output
  • Make lscpu call language-invariant: CPU detection now works correctly regardless of system locale (#​2577)
  • Clean up unsupported Native AOT flags: Removed obsolete IlcGenerateCompleteTypeMetadata and updated flag names (#​2616)
  • Native AOT projects copy SettingsWeWantToCopy: Build settings are now properly propagated (#​2665)

Breaking Changes

  • Removed ConfigCompatibilityValidator: No longer validates config compatibility between runs (#​2599)
  • Phd exporters renamed to Perfonar: [PhdExporter][PerfonarExporter], PhdJsonExporterPerfonarJsonExporter, PhdMdExporterPerfonarMdExporter
  • Removed netstandard1.0 target from Annotations package: Minimum target is now netstandard2.0

Documentation

  • Added Visual Studio Profiler documentation with samples (#​2672)
  • Added WakeLock documentation and samples (#​2670)
    ... (truncated)

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.AspNetCore.SignalR.Client](https://github.com/dotnet/dotnet) from 10.0.3 to 10.0.9.

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

_Sourced from [Microsoft.AspNetCore.SignalR.Client'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.AspNetCore.TestHost](https://github.com/dotnet/dotnet) from 10.0.3 to 10.0.9.

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

_Sourced from [Microsoft.AspNetCore.TestHost'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.Extensions.Configuration](https://github.com/dotnet/dotnet) from 10.0.3 to 10.0.9.

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

_Sourced from [Microsoft.Extensions.Configuration'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.Extensions.Configuration.Json](https://github.com/dotnet/dotnet) from 10.0.3 to 10.0.9.

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

_Sourced from [Microsoft.Extensions.Configuration.Json'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.Extensions.DependencyInjection](https://github.com/dotnet/dotnet) from 10.0.3 to 10.0.9.

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

_Sourced from [Microsoft.Extensions.DependencyInjection'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.Extensions.Hosting.Abstractions](https://github.com/dotnet/dotnet) from 10.0.3 to 10.0.9.

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

_Sourced from [Microsoft.Extensions.Hosting.Abstractions'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.Extensions.Logging](https://github.com/dotnet/dotnet) from 10.0.3 to 10.0.9.

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

_Sourced from [Microsoft.Extensions.Logging'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.Extensions.Logging.Abstractions](https://github.com/dotnet/dotnet) from 10.0.3 to 10.0.9.

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

_Sourced from [Microsoft.Extensions.Logging.Abstractions'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.Extensions.Logging.Console](https://github.com/dotnet/dotnet) from 10.0.3 to 10.0.9.

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

_Sourced from [Microsoft.Extensions.Logging.Console'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 [Npgsql](https://github.com/npgsql/npgsql) from 10.0.1 to 10.0.3.

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

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

## 10.0.3

[Release milestone](https://github.com/npgsql/npgsql/milestone/138?closed=1)

**Full Changelog**: https://github.com/npgsql/npgsql/compare/v10.0.2...v10.0.3

## 10.0.2

v10.0.2 contains several minor bug fixes.

[Milestone issues](https://github.com/npgsql/npgsql/milestone/135?closed=1)

**Full Changelog**: https://github.com/npgsql/npgsql/compare/v10.0.1...v10.0.2

Commits viewable in [compare view](https://github.com/npgsql/npgsql/compare/v10.0.1...v10.0.3).
</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>

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

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

---

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

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


</details>

Bumps BenchmarkDotNet from 0.14.0 to 0.15.8
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.AspNetCore.SignalR.Client from 10.0.3 to 10.0.9
Bumps Microsoft.AspNetCore.TestHost from 10.0.3 to 10.0.9
Bumps Microsoft.Extensions.Configuration from 10.0.3 to 10.0.9
Bumps Microsoft.Extensions.Configuration.Json from 10.0.3 to 10.0.9
Bumps Microsoft.Extensions.DependencyInjection from 10.0.3 to 10.0.9
Bumps Microsoft.Extensions.Hosting.Abstractions from 10.0.3 to 10.0.9
Bumps Microsoft.Extensions.Logging from 10.0.3 to 10.0.9
Bumps Microsoft.Extensions.Logging.Abstractions from 10.0.3 to 10.0.9
Bumps Microsoft.Extensions.Logging.Console from 10.0.3 to 10.0.9
Bumps Microsoft.NET.Test.Sdk from 18.0.1 to 18.7.0
Bumps Npgsql from 10.0.1 to 10.0.3
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

---
updated-dependencies:
- dependency-name: BenchmarkDotNet
  dependency-version: 0.15.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-patch
- dependency-name: csharpier
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-patch
- dependency-name: DotNet.ReproducibleBuilds
  dependency-version: 2.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-patch
- dependency-name: FluentAssertions
  dependency-version: 8.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-patch
- dependency-name: Microsoft.AspNetCore.SignalR.Client
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-patch
- dependency-name: Microsoft.AspNetCore.TestHost
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-patch
- dependency-name: Microsoft.Extensions.Configuration
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-patch
- dependency-name: Microsoft.Extensions.Configuration.Json
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-patch
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-patch
- dependency-name: Microsoft.Extensions.Hosting.Abstractions
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-patch
- dependency-name: Microsoft.Extensions.Logging.Abstractions
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-patch
- dependency-name: Microsoft.Extensions.Logging
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-patch
- dependency-name: Microsoft.Extensions.Logging.Console
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-patch
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-patch
- dependency-name: Npgsql
  dependency-version: 10.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-patch
- dependency-name: NUnit
  dependency-version: 4.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-patch
- dependency-name: NUnit.Analyzers
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-patch
- dependency-name: NUnit3TestAdapter
  dependency-version: 6.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-patch
- dependency-name: PublicApiGenerator
  dependency-version: 11.5.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-patch
...

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 Jul 2, 2026
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