Skip to content

Bump the dotnet-production group with 23 updates#303

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/src/SuavoAgent.Adapters.ComputerRx/dotnet-production-5af6d57a64
Closed

Bump the dotnet-production group with 23 updates#303
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/src/SuavoAgent.Adapters.ComputerRx/dotnet-production-5af6d57a64

Conversation

@dependabot

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

Copy link
Copy Markdown

Updated Avalonia from 11.2.0 to 11.3.18.

Release notes

Sourced from Avalonia's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Avalonia.Desktop from 11.2.0 to 11.3.18.

Release notes

Sourced from Avalonia.Desktop's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Avalonia.Diagnostics from 11.2.0 to 11.3.18.

Release notes

Sourced from Avalonia.Diagnostics's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Avalonia.Fonts.Inter from 11.2.0 to 11.3.18.

Release notes

Sourced from Avalonia.Fonts.Inter's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Avalonia.Headless from 11.2.0 to 11.3.18.

Release notes

Sourced from Avalonia.Headless's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Avalonia.Headless.XUnit from 11.2.0 to 11.3.18.

Release notes

Sourced from Avalonia.Headless.XUnit's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Avalonia.Themes.Fluent from 11.2.0 to 11.3.18.

Release notes

Sourced from Avalonia.Themes.Fluent's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated ClosedXML from 0.104.2 to 0.105.0.

Release notes

Sourced from ClosedXML's releases.

0.105.0

What's Changed

Major enhancements

Automatic fixer of function names

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

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

Pre-0.105
image
0.105
image

Sorting updates references

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

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

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

Reimplementation/refactoring of old function infrastructure

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

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

Changes

Bugfixes

0.105.0-rc

What's Changed

Major enhancements

Automatic fixer of function names

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

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

Pre-0.105
image
0.105
image

Sorting updates references

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

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

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

Reimplementation/refactoring of old function infrastructure

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

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

Changes

Bugfixes

Commits viewable in compare view.

Updated coverlet.collector from 6.0.2 to 6.0.4.

Release notes

Sourced from coverlet.collector's releases.

6.0.4

Fixed

  • Fix empty coverage report when using include and exclude filters #​1726

Diff between 6.0.3 and 6.0.4

6.0.3

Fixed

Improvements

  • Cache the regex used in InstrumentationHelper #​1693
  • Enable dotnetTool integration tests for linux #​660

Diff between 6.0.2 and 6.0.3

Commits viewable in compare view.

Updated JsonSchema.Net from 7.2.3 to 7.4.0.

Release notes

Sourced from JsonSchema.Net's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated LLamaSharp from 0.24.0 to 0.27.0.

Release notes

Sourced from LLamaSharp's releases.

0.27.0

Major Changes

Bug Fixes

Other Changes

New Contributors

Full Changelog: SciSharp/LLamaSharp@v0.26.0...v0.27.0

0.26.0

Major Changes

Bug Fixes

Other Changes

New Contributors

Full Changelog: SciSharp/LLamaSharp@v0.25.0...v0.26.0

0.25.0

Major Changes

Bug Fixes

Other Changes

New Contributors

Full Changelog: SciSharp/LLamaSharp@v0.24.0...v0.25.0

Commits viewable in compare view.

Updated Microsoft.CodeAnalysis.CSharp from 4.8.0 to 4.14.0.

Release notes

Sourced from Microsoft.CodeAnalysis.CSharp's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.CodeAnalysis.CSharp.Workspaces from 4.8.0 to 4.14.0.

Updated Microsoft.Data.SqlClient from 5.2.2 to 5.2.3.

Release notes

Sourced from Microsoft.Data.SqlClient's releases.

5.2.3

This update brings the following changes since the 5.2.2 release:

Fixed

  • Fixed possible NullPointerException during socket receive (PR #​3284)
  • Fixed inconsistencies between source and reference projects (PR #​3124)
  • Adjusted retry logic to allow errors with negative numbers to be considered transient (PR #​3185)

Changed

Commits viewable in compare view.

Updated Microsoft.Data.Sqlite.Core from 10.0.5 to 10.0.9.

Release notes

Sourced from Microsoft.Data.Sqlite.Core's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Diagnostics.Tracing.TraceEvent from 3.1.16 to 3.2.4.

Release notes

Sourced from Microsoft.Diagnostics.Tracing.TraceEvent's releases.

3.2.4

Security

This release contains security hardening fixes for a number of malformed-input parsing and path-traversal vulnerabilities:

  • Bounds-checking for malformed event payloads in the BPerf ULZ777 decompressor and event-record parser
  • Bounds-checking for malformed metadata in the GCDynamic, RegisteredTraceEventParser (TDH), Dynamic, and EventPipe V3 parsers
  • Bounds-checking for malformed PE CodeView and Resource directory entries
  • Path containment hardening for PDB extraction (zipped ETL + container PDBs), DiagSession resource extraction, R2R perf map writes, PdbScope module paths, and dynamic manifest writes
  • Path-traversal and command-execution hardening for Source Server lookups

What's Changed

Full Changelog: microsoft/perfview@v3.2.3...v3.2.4

3.2.3

What's Changed

New Contributors

Full Changelog: microsoft/perfview@v3.2.2...v3.2.3

3.2.2

What's Changed

Full Changelog: microsoft/perfview@v3.2.1...v3.2.2

3.2.1

Native and R2R Symbol Download and Parsing Now Available

As of this release, if you capture a trace using dotnet-trace collect-linux or record-trace, native and R2R symbols can now be downloaded and resolved at analysis time. All .NET symbols (both native and R2R) are available on the Microsoft Symbol Server. Additionally, many Azure Linux symbol files are available on the Microsoft Symbol Server. For those targeting other distros, PerfView and TraceEvent are capable of pulling those symbol files from local directories by adding a local symbol path pointing to the files.

Most of the work for this was completed in PerfView and TraceEvent 3.2.1 with the final required fixes present in this release.

What's Changed

Full Changelog: microsoft/perfview@v3.2.0...v3.2.1

3.2.0

What's Changed

New Contributors

Full Changelog: microsoft/perfview@v3.1.30...v3.2.0

3.1.30

What's Changed

New Contributors

Full Changelog: microsoft/perfview@v3.1.29...v3.1.30

3.1.29

What's Changed

Full Changelog: microsoft/perfview@v3.1.28...v3.1.29

3.1.28

What's Changed

Full Changelog: microsoft/perfview@v3.1.26...v3.1.28

3.1.26

Roll-up through 2025/10/10.

  • Only dispose non-null handles in ETWTraceEventSource #​2291
  • Small cleanup in NettraceUniversalConverter #​2292
  • Fix hyperlink focus visibility in dark mode and improve keyboard navigation #​2295
  • Gracefully handle invalid characters in PATH #​2296
  • Fix copying First/Last columns with pipe symbols to work in time range input #​2304

3.1.24

Roll-up through 2025/08/26.

  • Implement NuGet Central Package Version Management [#​2262]
  • Fix broken stacks warning for universal traces [#​2268]
  • Fix jitted code symbols in universal traces to show assembly names instead of memfd:doublemapper [#​2269]
  • Use themed background brush for menu and filter [#​2272]
  • Improve rendering and dark mode [#​2274]
  • Implement configurable symbol server authentication with /SymbolsAuth command line argument for PerfView and HeapDump [#​2278]
  • Add a themed dialog [#​2276]
  • Fix regression: "Goto Item in Callers/Callees" now accumulates across all threads [#​2284]
  • Fix parsing issues and add support for additional events to the Linux perf text file parser [#​2286]
  • Fix TraceLog live session RelatedActivityID/ContainerID corruption by preserving ExtendedData [#​2285]
  • NetTrace LabelList metadata overrides and metadata flushing [#​2281]
  • Fix NullReferenceException in ProviderBrowser.LevelSelected when deselecting level [#​2289]

3.1.23

Roll-up through 2025/07/11.

  • Fixed TraceEvent CaptureState API to support previously unsupported keyword configurations. [#​2222]
  • Added Exception Stacks view for .nettrace files to enhance exception diagnostics. [#​2223]
  • Corrected outdated documentation references to "GC Heap Alloc Stacks". [#​2224]
  • Fixed off-by-one error in P/Invoke buffer handling for Windows volume events. [#​2227]
  • Fixed broken links in the PerfView user guide. [#​2225]
  • Improved error handling by throwing when TdhEnumerateProviders fails, enabling better diagnostics. [#​2177]
  • Added AutomationProperties.Name to the Process Selection DataGrid for improved accessibility. [#​2239]
  • Fixed focus indicator visibility for hyperlinks in dark mode and high contrast themes. [#​2235]
  • Addressed NullReferenceException in Anti-Malware view. [#​2233]
  • Fixed WebView2 crash on close by implementing proper disposal pattern. [#​2230]
  • Added support for native AOT gcdumps, expanding compatibility with modern .NET workloads. [#​2242]
  • Fixed NVDA screen reader issue where Theme menu items did not announce selection state. [#​2237]
  • Extended PredefinedDynamicTraceEventParser to support dynamic events from additional sources. [#​2232]
  • Implemented MSFZ symbol format support in SymbolReader. [#​2244]
  • Removed usage of DefaultAzureCredential, simplifying authentication dependencies. [#​2255]
  • Added option to hide TimeStamp columns in the EventWindow View menu. [#​2247]
  • Fixed NVDA screen reader reporting incorrect list count for File menu separators. [#​2257]
  • Fixed unhandled exception when double-clicking in scroll bar area with no content. [#​2254]
  • Fixed universal symbol conversion for overlapping mappings. [#​2252]
  • Fixed TraceEvent.props to respect ProcessorArchitecture when RuntimeIdentifier is set. [#​2249]

3.1.22

Roll-up through 2025/06/04.

  • Added GC Heap Analyzer support for .nettrace files to enhance memory analysis workflows. [#​2216]
  • Introduced PredefinedDynamicTraceEventParser for known TraceLogging events, improving trace event parsing. [#​2220]
  • Enabled selection of process trees in the process selection dialog for multi-process analysis, allowing deeper inspection across related processes. [#​2195]
  • Implemented sorting for the Duration column in the process selection dialog using TotalDurationSeconds, improving usability. [#​2194]
  • Improved NetTrace parameter parsing for better command-line flexibility. [#​2200]
  • Fixed GetActiveSessionNames to handle ERROR_MORE_DATA, resolving session enumeration issues. [#​2196]
  • Fixed ObjectDisposedException when opening Net OS Heap Alloc Stacks, improving stability. [#​2212]
  • Fixed null reference exception in GenFragmentationPercent method, enhancing reliability. [#​2211]
  • Fixed TreeView auto-expansion when opening trace files. [#​2218]
  • Fixed StackViewer issue where "Set Time Range" reset "Goto Items by callees". [#​2208]
  • Fixed markdown table formatting when copying from the stack viewer. [#​2203]
  • Fixed TraceEvent NuGet package to exclude Windows-specific native DLLs. [#​2215]
  • Removed PDB generation for .NET Core assemblies using CrossGen, reducing build overhead. [#​2202]
  • Made symbol server timeout configurable and removed dead code in SymbolReader. [#​2209]
  • Changed help ribbons to use textblocks, enabling tab navigation. [#​2201]

3.1.21

Roll-up through 2025/05/02.

  • Change NetTrace format version support
  • Add /OSHeapMaxMB to set a max size for OS heap sessions
  • Implement Nettrace Support for Traces with Universal Providers
  • Implement R2R Symbol Lookup for Linux Traces
  • Fix NetTrace parsing for Start/Stop event names
  • Fix IndexOutOfRangeException in ProcessGlobalHistory

3.1.20

Roll-up through 2025/04/01.

  • Flamegraph and drill-in menu improvements
  • Performance improvements around unhandled event dispatch
  • Add configurable real-time delay in TraceLogEventSource
  • Don't queue another flush during a real-time ETW session if one is already in-process
  • Allow configuration of rundown providers for real-time EventPipe sessions
  • Fix stack handling for NetTrace V4
  • Add multi-line view for events viewer
  • Misc accessibility fixes

3.1.19

Roll-up through 2025/01/30.

  • Added missing time information in the Raw XML View for GCStats.
  • Updated activity computation logic to support OpenTelemetry events.
  • Changed timestamp values to use QPC time based on UTC for Relogger.
  • Fixed issues with report command handling.
  • Addressed various POH-related issues.
  • Implemented file-size limitation for rundown using an ETW-based approach.

3.1.18

Roll-up through 2024/12/11.

3.1.17

Roll-up through 2024/11/08.

  • Numerous accessibility fixes to PerfView. This includes switching out the previous web browser plugin to use WebView2.
  • Breaking changes to FastSerialization to ensure that only expected types are deserialized. This addresses potential vulnerabilities during deserialization of untrusted input. Details at Breaking Changes for FastSerialization microsoft/perfview#2121.

Commits viewable in compare view.

Updated Microsoft.Extensions.Hosting.WindowsServices from 8.0.0 to 8.0.1.

Release notes

Sourced from Microsoft.Extensions.Hosting.WindowsServices's releases.

8.0.1

Release

Commits viewable in compare view.

Updated Microsoft.Extensions.Logging.Abstractions from 8.0.2 to 8.0.3.

Release notes

Sourced from Microsoft.Extensions.Logging.Abstractions's releases.

8.0.3

Release

Commits viewable in compare view.

Updated Microsoft.Extensions.Logging.Abstractions from 10.0.5 to 10.0.9.

Release notes

Sourced from Microsoft.Extensions.Logging.Abstractions's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.NET.Test.Sdk from 17.11.1 to 17.14.1.

Release notes

Sourced from Microsoft.NET.Test.Sdk's releases.

17.14.1

What's Changed

Full Changelog: microsoft/vstest@v17.14.0...v17.14.1

17.14.0

What's Changed

.NET versions updated

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

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

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

Changes

Internal version updates and fixes

New Contributors

17.14.0-preview-25107-01

What's Changed

.NET versions updated

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

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

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

Changes

Internal version updates and fixes

Will probably revert before release:

New Contributors

Full Changelog: microsoft/vstest@v17.13.0...v17.14.0-preview-25107-01

17.13.0

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v17.12.0...v17.13.0

17.12.0

What's Changed

Internal and infrastructure fixes:

Full Changelog: microsoft/vstest@v17.11.1...v17.12.0

Commits viewable in compare view.

Updated Serilog.Sinks.Console from 6.0.0 to 6.1.1.

Release notes

Sourced from Serilog.Sinks.Console's releases.

6.1.1

What's Changed

Full Changelog: serilog/serilog-sinks-console@v6.1.0...v6.1.1

6.1.0

  • #​165 - support for {UtcTimestamp} in output templates (@​ManuelRin)
  • #​172, #​173 - switch build to Serilog org standard (@​nblumhardt)

Commits viewable in compare view.

Updated System.Security.Cryptography.ProtectedData from 9.0.4 to 9.0.17.

Release notes

Sourced from System.Security.Cryptography.ProtectedData's releases.

9.0.17

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.16...v9.0.17

9.0.16

Release

9.0.15

Release

9.0.14

Release

9.0.13

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.12...v9.0.13

9.0.12

Release

9.0.11

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.10...v9.0.11

9.0.10

Release

What's Changed

Description has been truncated

Bumps Avalonia from 11.2.0 to 11.3.18
Bumps Avalonia.Desktop from 11.2.0 to 11.3.18
Bumps Avalonia.Diagnostics from 11.2.0 to 11.3.18
Bumps Avalonia.Fonts.Inter from 11.2.0 to 11.3.18
Bumps Avalonia.Headless from 11.2.0 to 11.3.18
Bumps Avalonia.Headless.XUnit from 11.2.0 to 11.3.18
Bumps Avalonia.Themes.Fluent from 11.2.0 to 11.3.18
Bumps ClosedXML from 0.104.2 to 0.105.0
Bumps coverlet.collector from 6.0.2 to 6.0.4
Bumps JsonSchema.Net from 7.2.3 to 7.4.0
Bumps LLamaSharp from 0.24.0 to 0.27.0
Bumps Microsoft.CodeAnalysis.CSharp from 4.8.0 to 4.14.0
Bumps Microsoft.CodeAnalysis.CSharp.Workspaces from 4.8.0 to 4.14.0
Bumps Microsoft.Data.SqlClient from 5.2.2 to 5.2.3
Bumps Microsoft.Data.Sqlite.Core from 10.0.5 to 10.0.9
Bumps Microsoft.Diagnostics.Tracing.TraceEvent from 3.1.16 to 3.2.4
Bumps Microsoft.Extensions.Hosting.WindowsServices from 8.0.0 to 8.0.1
Bumps Microsoft.Extensions.Logging.Abstractions to 8.0.3, 10.0.9
Bumps Microsoft.NET.Test.Sdk from 17.11.1 to 17.14.1
Bumps Serilog.Sinks.Console from 6.0.0 to 6.1.1
Bumps System.Security.Cryptography.ProtectedData from 9.0.4 to 9.0.17
Bumps System.Text.Json from 8.0.6 to 9.0.8
Bumps xunit from 2.9.2 to 2.9.3

---
updated-dependencies:
- dependency-name: Avalonia
  dependency-version: 11.3.18
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Avalonia.Desktop
  dependency-version: 11.3.18
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Avalonia.Diagnostics
  dependency-version: 11.3.18
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Avalonia.Fonts.Inter
  dependency-version: 11.3.18
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Avalonia.Headless
  dependency-version: 11.3.18
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Avalonia.Headless.XUnit
  dependency-version: 11.3.18
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Avalonia.Themes.Fluent
  dependency-version: 11.3.18
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: ClosedXML
  dependency-version: 0.105.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: coverlet.collector
  dependency-version: 6.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: coverlet.collector
  dependency-version: 6.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: coverlet.collector
  dependency-version: 6.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: coverlet.collector
  dependency-version: 6.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: coverlet.collector
  dependency-version: 6.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: coverlet.collector
  dependency-version: 6.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: coverlet.collector
  dependency-version: 6.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: coverlet.collector
  dependency-version: 6.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: coverlet.collector
  dependency-version: 6.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: JsonSchema.Net
  dependency-version: 7.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: LLamaSharp
  dependency-version: 0.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Microsoft.CodeAnalysis.CSharp
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Microsoft.CodeAnalysis.CSharp.Workspaces
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Microsoft.Data.SqlClient
  dependency-version: 5.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: Microsoft.Data.SqlClient
  dependency-version: 5.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: Microsoft.Data.Sqlite.Core
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: Microsoft.Diagnostics.Tracing.TraceEvent
  dependency-version: 3.2.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: System.Text.Json
  dependency-version: 9.0.8
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dotnet-production
- dependency-name: Microsoft.Extensions.Hosting.WindowsServices
  dependency-version: 8.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: Microsoft.Extensions.Hosting.WindowsServices
  dependency-version: 8.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: Microsoft.Extensions.Logging.Abstractions
  dependency-version: 8.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: Microsoft.Extensions.Logging.Abstractions
  dependency-version: 8.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: Microsoft.Extensions.Logging.Abstractions
  dependency-version: 8.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: Microsoft.Extensions.Logging.Abstractions
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 17.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 17.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 17.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 17.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 17.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 17.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 17.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Serilog.Sinks.Console
  dependency-version: 6.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: Serilog.Sinks.Console
  dependency-version: 6.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet-production
- dependency-name: System.Security.Cryptography.ProtectedData
  dependency-version: 9.0.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: xunit
  dependency-version: 2.9.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: xunit
  dependency-version: 2.9.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: xunit
  dependency-version: 2.9.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: xunit
  dependency-version: 2.9.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: xunit
  dependency-version: 2.9.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: xunit
  dependency-version: 2.9.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
- dependency-name: xunit
  dependency-version: 2.9.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet-production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Dependency and supply-chain maintenance security Security hardening or vulnerability remediation labels Jul 12, 2026
@dependabot
dependabot Bot requested a review from MinaH153 as a code owner July 12, 2026 14:58
@dependabot dependabot Bot added dependencies Dependency and supply-chain maintenance security Security hardening or vulnerability remediation labels Jul 12, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 20, 2026

Copy link
Copy Markdown
Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot @github

dependabot Bot commented on behalf of github Jul 20, 2026

Copy link
Copy Markdown
Author

Superseded by #317.

@dependabot dependabot Bot closed this Jul 20, 2026
@dependabot
dependabot Bot deleted the dependabot/nuget/src/SuavoAgent.Adapters.ComputerRx/dotnet-production-5af6d57a64 branch July 20, 2026 16:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency and supply-chain maintenance security Security hardening or vulnerability remediation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants