Skip to content

deps: Bump Aspire.Hosting.JavaScript and 26 others - #175

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/genai-database-explorer-service/nuget-dependencies-7d87b7c92c
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/genai-database-explorer-service/nuget-dependencies-7d87b7c92c

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 18, 2026

Copy link
Copy Markdown
Contributor

Updated Aspire.Hosting.JavaScript from 13.4.6 to 13.5.4.

Release notes

Sourced from Aspire.Hosting.JavaScript's releases.

13.5.4

What's New in Aspire 13.5.4

Patch release for Aspire 13.5 that fixes Kafka health-check resource leaks, DevTunnel errors with automatically selected regions, misleading Azure emulator dashboard entries, and unintended changes to generated starter apps, plus Homebrew compatibility and Radius API diagnostic updates.

🐛 Fixes

  • 📨 Kafka health checks leaked producers and polling threads — Each AppHost health-check execution created a new Kafka producer without disposing it, accumulating background threads over time. Health checks now reuse a producer per Kafka resource and dispose it with the AppHost, while keeping multiple Kafka resources independently configured. Fixes #​20091. (#​20094, backport of #​20092, @​davidfowl)

  • 🌐 DevTunnels could fail when the region was selected automatically — Tunnel setup and health checks now use the cluster-qualified tunnel ID returned by the DevTunnel CLI for port operations and access queries. This fixes failures when a bare tunnel ID cannot be resolved for those operations. Regression introduced in 13.3. Fixes #​18790. (#​19853, backport of #​19230, @​Vladipz)

  • ☁️ Emulator-only AppHosts showed an unused Azure environment — The dashboard now hides the azure-environment resource when no Azure resources require cloud provisioning, instead of leaving it visible in Not started. It remains visible for apps that combine local emulators with resources requiring Azure provisioning. No AppHost changes are needed. Fixes #​19617. (#​19998, backport of #​19843, @​eerhardt)

  • 🧩 Starter app generation could alter unrelated JavaScript values — Dynamic port replacement could also replace matching numeric literals in bundled JavaScript, including Bootstrap timing values. Port substitutions are now restricted to localhost: URLs, preserving the original library files while still configuring the requested ports. Fixes #​20030. (#​20110, backport of #​20031, @​bart-vmware, @​JamesNK)

  • 🍎 Updated the Aspire Homebrew cask for Homebrew 6.x — Replaced deprecated cask URL and post-install syntax with the supported equivalents, resolving compatibility issues with current Homebrew while preserving install-channel metadata. (#​20119, backport of #​19965, @​askpt, @​joperezr)

  • 🧪 Radius cloud-provider callback interfaces now carry the experimental diagnosticIAwsRadiusProviderBuilder and IAzureRadiusProviderBuilder are now marked with ASPIRERADIUS003, matching the existing WithAwsProvider and WithAzureProvider methods. Code referencing these interfaces directly must now acknowledge the same experimental API diagnostic. (#​19874, @​sebastienros)


Full Changelog: v13.5.3...v13.5.4

Full commit: 9c1b401dd67746739044f68959cbf4d3d7af93a6

13.5.3

What's New in Aspire 13.5.3

Patch release for Aspire 13.5 that fixes Dashboard Graph view crashes for resources with multi-path icons and restores missing public URLs for DevTunnel resources.

🐛 Fixes

  • 📊 Dashboard Graph view could crash for Azure Blob resources — Resources such as those created with AddBlobs use icons containing multiple SVG paths, which caused an XML parsing exception and broke the dashboard circuit. The graph now combines multi-path icons correctly. Regression introduced in 13.5. Fixes #​19489. (#​19585, backport of #​19579, @​sebastienros)

  • 🌐 DevTunnel public URLs were missing from the Dashboard and MCP snapshots — DevTunnel port resources could report Running and Healthy while showing no public URLs. Proxyless port allocation is now limited to compute and container resources, allowing DevTunnels to publish their actual public endpoints. Regression introduced in 13.5. Fixes #​19496. (#​19625, backport of #​19590, @​karolz-ms, @​danegsta)

🏷️ Housekeeping

  • 🚀 Bumped branding to 13.5.3

Full Changelog: v13.5.2...v13.5.3

Full commit: b5f143315ffb6968ea939a9978797a5b20e4c688

13.5.2

What's New in Aspire 13.5.2

Patch release for Aspire 13.5 that removes an unused native helper binary from the Windows CLI archives so 13.5 servicing releases stay publishable to WinGet.

🐛 Fixes

  • 🪟 Windows CLI archives shipped an unused ~4.9 MB hex1bpty.exe — The Windows CLI archives (aspire-cli-win-{x64,arm64}-*.zip) bundled Hex1b's out-of-process PTY host, which Aspire never executes (DCP owns every pseudo-terminal Aspire surfaces). Besides the wasted download, the extra unexplained executable stalled the WinGet publish, since every binary in the archive goes through executable and malware validation. A build-only MSBuild target now drops the file from the CLI publish output; Unix native assets are unaffected. Regression new in 13.5. ([#​19557]([release/13.5] Exclude unused hex1bpty.exe from published CLI archives microsoft/aspire#19557), backport of #​19554, @​mitchdenny)

🏷️ Housekeeping

  • 🚀 Bumped branding to 13.5.2

Full Changelog: [v13.5.1...v13.5.2](microsoft/aspire@v13.5.1...v13.5.2)

Full commit: [a22cec24d76e764b3681977e314ab4a0aeed0240](microsoft/aspire@a22cec2)

13.5.1

What's New in Aspire 13.5.1

Patch release for Aspire 13.5 fixing a TypeScript/Java polyglot AppHost compatibility regression when running the 13.5 SDK under an older (13.4.x) CLI, plus a DCP update and release-pipeline housekeeping.

🐛 Fixes

  • 🍎 Polyglot AppHosts could crash on startup on macOS — On macOS, polyglot (TypeScript/Python/Java/Go/Rust) AppHosts could crash during startup due to an interaction between how DCP's Go runtime forks detached processes and how .NET Native AOT installs its signal handlers. Updated DCP (Developer Control Plane) to 0.25.13 to resolve the crash. ([#​19528]([release/13.5] [main] Update dependencies from microsoft/dcp microsoft/aspire#19528))

  • 🔗 Polyglot AppHosts on the 13.5 SDK crashed under an older CLI with MissingMethodException — A TypeScript or Java AppHost built with the 13.5 SDK failed to start when launched by an older (13.4.x) CLI, because the newer codegen called Aspire.TypeSystem members that don't exist in the CLI's older contract. Code generation now probes for these additive capabilities before using them, so older CLIs skip only the unsupported feature and startup succeeds. Regression introduced in 13.5 by #​19365. Fixes #​19503. ([#​19524]([release/13.5] Preserve TypeSystem compatibility with older CLIs microsoft/aspire#19524), backport of #​19506, @​adamint)

🏷️ Housekeeping

Full Changelog: [v13.5.0...v13.5.1](microsoft/aspire@v13.5.0...v13.5.1)

Full commit: [69db530a4816698cf1d5fa4557933e0ac4f127c6](microsoft/aspire@69db530)

13.5.0

Aspire 13.5.0

Aspire 13.5 is a developer-experience release focused on a richer, more interactive AppHost, closer C# and TypeScript parity, sharper tooling, more flexible deployment modeling, and a broad set of runtime-stability improvements.

Highlights

  • 💬 Richer AppHost interactions — The Interaction Service now works across C# and TypeScript AppHosts with stable prompts and dynamic inputs, file uploads, progress dialogs, notifications, and user-defined resource command arguments that surface as dashboard controls and CLI options.
  • 🖥️ Interactive terminal sessions — The experimental WithTerminal() API lets resources host REPLs, shells, TUIs, and other interactive programs directly in the dashboard, with an opt-in aspire terminal CLI command for attaching from your shell.
  • 🌐 TypeScript AppHost is generally available — Polyglot AppHosts no longer require the ASPIREATS001 experimental diagnostic and gain custom health checks, container file copying, HTTPS developer certificates, faster startup, and several reliability fixes that further close the gap with C#.
  • 🛠️ CLI installation and reliability — The Aspire CLI is available through npm and Nix alongside Homebrew, WinGet, mise, and NuGet. New C# AppHosts enable the CLI bundle by default, while aspire stop --force, aspire update --migrate, aspire doctor, docs search, signal handling, and stale-socket cleanup all improve day-to-day workflows.
  • 🎨 Refreshed dashboard — The dashboard adopts official Aspire branding and a new accessible design-token system, with timestamp and exact numeric telemetry filters, console-log text search, clearer reconnect and health-check experiences, and correct telemetry streaming while filters are active.
  • 💻 Rebranded VS Code extension — The extension is now named Aspire and adds an in-editor dashboard, Bun and MAUI debugging, resource commands in the tree view, discovered AppHosts, improved parameter handling, and more efficient workspace discovery.
  • ☸️ More expressive deployments — Kubernetes and AKS gain first-class persistent volumes, Azure Container Apps adds deterministic unique resource naming, Azure environments support delegated subnets, and Docker Compose can publish Blazor gateways and configure shared memory.
  • ☁️ Expanded hosting integrations — Azure resources can be referenced across resource groups, subscriptions, and tenants; the new Aspire.Hosting.Dotnet package models .NET projects by path; Radius deployment arrives in preview; and Foundry Local, Redis modules, dev tunnels, Go debugging, and other integrations gain new capabilities.

⚠️ Breaking changes

Notable changes include hosting context ServiceProvider properties being renamed to Services, PublishAsConnectionString becoming obsolete in favor of AddConnectionString, removal of aspire ps --resources and --include-hidden in favor of aspire describe, earlier proxyless endpoint port allocation, deprecation of the GitHub Models integration, removal of the dashboard AI Assistant, and opt-in rather than automatic dashboard launch from the VS Code extension.

See the full list and migration guidance in the Aspire 13.5 breaking changes.

📖 Learn more

For complete details, examples, migration guidance, and everything new in this release, read What's new in Aspire 13.5.

Thank you to all the community contributors who helped make Aspire 13.5 possible! 💜


Full Changelog: v13.4.6...v13.5.0

Full commit: e076d8e427cb3afb528dbd605acd74c3aea69f94

Commits viewable in compare view.

Pinned Azure.Core at 1.62.0.

Release notes

Sourced from Azure.Core's releases.

No release notes found for this version range.

Commits viewable in compare view.

Pinned Azure.Security.KeyVault.Secrets at 4.11.1.

Release notes

Sourced from Azure.Security.KeyVault.Secrets's releases.

4.11.1

4.11.1 (2026-09-02)

Bugs Fixed

  • Fixed an issue in the challenge-based authentication policy where a cached authentication challenge, and the access token acquired for it, could be reused for a request to a different Key Vault or Managed HSM endpoint. The policy now resolves the challenge per request endpoint, ensuring a token acquired for one vault is never attached to a request to another.

Commits viewable in compare view.

Pinned Azure.Storage.Blobs at 12.29.2.

Release notes

Sourced from Azure.Storage.Blobs's releases.

12.29.2

12.29.2 (2026-08-24)

Bugs Fixed

  • Fixed a bug where client-side encryption 2.0 could not detect a rearrangement of otherwise-untampered authenticated regions in blob content. This is now detected and exceptions are thrown. For data recovery purposes, this behavior can be reverted by enabling "Azure.Storage.CseV2AllowMisorderedAuthRegions" in the AppContext switch or "AZURE_STORAGE_CSE_V2_ALLOW_MISORDERED_AUTH_REGIONS" in environment variables.
  • Fixed a bug in client-side encryption where version downgrades were only detected at the start of a download.

Commits viewable in compare view.

Pinned Microsoft.Agents.AI.OpenAI at 1.21.0.

Release notes

Sourced from Microsoft.Agents.AI.OpenAI's releases.

1.21.0

What's Changed

New Contributors

1.20.0

What's Changed

New Contributors

Full Changelog: microsoft/agent-framework@dotnet-1.19.0...dotnet-1.20.0

1.19.0

What's Changed

New Contributors

Full Changelog: microsoft/agent-framework@dotnet-1.18.0...dotnet-1.19.0

1.18.0

What's Changed

New Contributors

Full Changelog: microsoft/agent-framework@dotnet-1.17.0...dotnet-1.18.0

1.17.0

What's Changed

1.16.0

What's Changed

New Contributors

Full Changelog: microsoft/agent-framework@python-github-copilot-1.0.0...dotnet-1.16.0

Commits viewable in compare view.

Updated Microsoft.AspNetCore.Mvc.Testing from 10.0.11 to 10.0.12.

Release notes

Sourced from Microsoft.AspNetCore.Mvc.Testing's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.AspNetCore.OpenApi from 10.0.11 to 10.0.12.

Release notes

Sourced from Microsoft.AspNetCore.OpenApi's releases.

No release notes found for this version range.

Commits viewable in compare view.

Pinned Microsoft.Azure.Cosmos at 3.63.1.

Release notes

Sourced from Microsoft.Azure.Cosmos's releases.

3.63.0

See changelog for details.

NuGet: https://www.nuget.org/packages/Microsoft.Azure.Cosmos/3.63.0

3.63.0-preview.1

See changelog for details.

NuGet: https://www.nuget.org/packages/Microsoft.Azure.Cosmos/3.63.0-preview.1

3.63.0-preview.0

See changelog for details.

NuGet: https://www.nuget.org/packages/Microsoft.Azure.Cosmos/3.63.0-preview.0

Commits viewable in compare view.

Pinned Microsoft.Data.SqlClient at 7.1.0.

Release notes

Sourced from Microsoft.Data.SqlClient's releases.

7.1.0-preview3

This update brings the following changes since the 7.1.0-preview2 release.

Package version alignment: The Microsoft.Data.SqlClient driver and its companion packages continue the aligned versioning introduced in 7.0.2. All five packages listed below ship together as 7.1.0-preview3. (Microsoft.SqlServer.Server continues to version independently and remains at 1.0.0.) Applications that reference Microsoft.Data.SqlClient.Extensions.Azure must upgrade it to 7.1.0-preview3 when upgrading Microsoft.Data.SqlClient.

Compatibility guarantee: All aligned assemblies ship with FileVersion 7.1.0.x and AssemblyVersion 7.0.0.0 — unchanged from 7.0.2 — so upgrading from 7.0.2 to 7.1.0-preview3 does not require any new .NET Framework strong-name binding redirects.

Packages in this release

Microsoft.Data.SqlClient 7.1.0-preview3

Added

  • Asynchronous key store provider APIs for Always Encrypted — four virtual methods on SqlColumnEncryptionKeyStoreProvider with CancellationToken support. Purely additive; defaults delegate to the synchronous methods, so existing providers are unaffected (#​3672, #​3673)
  • Connection Pool V2 nears parity with the default pool (opt-in via Switch.Microsoft.Data.SqlClient.UseConnectionPoolV2):
    • Transaction support (#​4487)
    • Broken-connection replacement during command execution (#​4429)
    • Background warmup to Min Pool Size and automatic replenishment (#​4452)
    • Idle pruning driven by Connection Idle Timeout (#​4463)
    • Optional ConcurrencyLimiter rate limiting for new physical connections (#​4395, #​4396)
    • Leaked connection reclamation, including the previously always-zero number-of-reclaimed-connections counter (#​4529)
    • Metrics and tracing parity with the default pool (#​4504)

Changed

  • Single cross-platform build — Windows-only native SNI types now trim cleanly on Linux and macOS. Package structure and contents unchanged (#​4207, #​4239, #​4465, #​4474)
  • Async read-path allocations restored to baseline via PacketData node reuse — ExecuteReaderAsync goes from +120.9% to +0.1% against 6.1.6 (#​4536)
  • SqlBulkCopy skips graph alias mapping when no graph pseudo-columns are present, recovering a regression from #​3677 (#​4535)
  • No formatted trace string is allocated when SqlClientEventSource tracing is disabled, recovering a memory regression against 6.1.6. Trace output unchanged (#​4528)
  • net9.0 dependencies moved to 9.0.18; System.Threading.RateLimiting added to packaged metadata. Other targets keep their 8.0.x pins (#​4507)
  • Microsoft.Data.SqlClient.SNI and .SNI.runtime updated to 7.1.0-preview3.26226.3 (#​4564)

Fixed

  • Always Encrypted VSM/HGS attestation now verifies the enclave public key is bound to the signed report, using a fixed-time SHA-256 comparison against EnclaveData (#​4532)
  • SqlConnectionFactory no longer wakes the process every 30 seconds when no pools exist — including with Pooling=False and after ClearAllPools() (#​1881, #​4479)
  • Connection pool performance counters affecting the default pool as well as pool V2 — active-soft-connects and number-of-active-connections could go negative after a failed activation, and several gauges drifted upward permanently after a broken connection was replaced (#​4504)
  • OverflowException when sending large decimal values with explicit Precision and Scale, which primarily affected Always Encrypted (#​1655, #​4443)
  • TDS stream error when passing a DateOnly value with SqlDbType.Variant (net8.0/net9.0) (#​3953, #​4294)
  • DateOnly in table-valued parameter sql_variant columns sent as datetime instead of date, which overflowed for values valid as date (net8.0/net9.0) (#​3934, #​4439)
  • ServerCertificate keyword ignored when the platform reported no TLS policy errors. It is now always compared, and an unloadable certificate fails closed with SSLCertificateAuthenticationException instead of silently falling back to host-name validation (#​4445)
  • SqlConnection.AccessTokenCallback not disabling TNIR by default, plus pool-key construction and SspiContextProvider exclusivity with token auth (net462 for the TNIR behavior) (#​4520)
  • Fatal exceptions such as OutOfMemoryException captured into faulted Tasks across several SqlBulkCopy, SqlDataReader, and SqlCommand async entry points (#​4437)
  • Entra ID authentication failing against multi-segment authorities such as the Dataverse / Dynamics 365 TDS endpoint. Ships in Microsoft.Data.SqlClient.Extensions.Azure (#​4496, #​4521)

Full details: release-notes/7.1/7.1.0-preview3.md


Microsoft.Data.SqlClient.AlwaysEncrypted.AzureKeyVaultProvider 7.1.0-preview3

Added

  • SqlColumnEncryptionAzureKeyVaultProvider overrides the four asynchronous key store provider methods introduced in #​3673, calling the Azure SDK's own async APIs and flowing the supplied CancellationToken (#​4540)
  • Concurrent cache misses for the same key collapse into a single Key Vault request. The gate is only awaited, so no thread blocks, and misses for different keys still proceed in parallel (#​4540)
    ... (truncated)

7.1.0-preview2

This update brings the following changes since the 7.1.0-preview1 release.

Package version alignment: The Microsoft.Data.SqlClient driver and its companion packages continue the aligned versioning introduced in 7.0.2. All five packages listed below ship together as 7.1.0-preview2. (Microsoft.SqlServer.Server continues to version independently and remains at 1.0.0.) Applications that reference Microsoft.Data.SqlClient.Extensions.Azure must upgrade it to 7.1.0-preview2 when upgrading Microsoft.Data.SqlClient.

Compatibility guarantee: All aligned assemblies ship with FileVersion 7.1.0.x and AssemblyVersion 7.0.0.0 — unchanged from 7.0.2 — so upgrading from 7.0.2 to 7.1.0-preview2 does not require any new .NET Framework strong-name binding redirects.

Packages in this release

Microsoft.Data.SqlClient 7.1.0-preview2

Added

  • SqlConnection.GetSchemaAsync overloads with CancellationToken support (#​3005)
  • SQL Graph pseudo-column aliases ($node_id, $edge_id, $from_id, $to_id) accepted in SqlBulkCopy mappings (#​3677)
  • SqlBatchCommand.CommandBehavior and SqlBatch.ExecuteReader(CommandBehavior) are now honored (#​4125)
  • Configurable idle connection timeout via Connection Idle Timeout / SqlConnectionStringBuilder.IdleTimeout (opt-in via Switch.Microsoft.Data.SqlClient.UseLegacyIdleTimeoutBehavior=false) (#​4295)

Changed

  • Connect Timeout now propagates through the pool when Switch.Microsoft.Data.SqlClient.UseOverallConnectTimeoutForPoolWait=true is set (default off; introduces a Microsoft.Bcl.TimeProvider dependency) (#​4270)
  • SQL Server 2025 json type added to the DataTypes collection returned by SqlConnection.GetSchema (#​3858)
  • Internal state-machine hardening via Interlocked.CompareExchange guards (#​4267)
  • Internal cleanup of connection-options inheritance and related pool interfaces (#​4237, #​4261, #​4235, #​4415, #​4334)
  • LCID hardcoded mappings to avoid repeated culture lookups (#​4212)
  • Allocation reductions on SqlErrorCollection and null-return paths (#​4157, #​4099, #​4102)
  • Improved EnclaveDiffieHellmanInfo.Size accuracy (#​4346)
  • SqlVector<float> serialization is now explicitly little-endian for cross-architecture consistency (#​3861)
  • Bundled .NET 10 SDK updated to 10.0.300 (#​4287)

Fixed

  • NullReferenceException in SqlCommand.Cancel() when the connection has already been torn down (#​4372)
  • Always Encrypted CMK signature verification incorrectly reusing cached results after a prior failure (#​4339)
  • Missing TDS token / feature-ack length bounds checks (spoofing server could trigger unbounded allocations) (#​4340)
  • SqlBulkCopy failing in least-privilege environments (#​4306)
  • Always Encrypted CekMdVersion / EkValueCount reads aligned with the TDS specification (#​4240)
  • LoginWithFailover parser-state validation (#​4140)
  • SPN during login now uses the resolved port instead of instance name for Protocol=None / Protocol=Admin (#​4180)
  • Race in SqlConnection.TryOpenInner that could surface as InvalidCastException now returns a deterministic InvalidOperationException (#​4179)
  • Multiple CancellationTokenSource leaks in SqlDataReader, SqlConnection, SqlCommand reconnect paths, and sequential-stream helpers (#​4009)
  • Docs fix for server certificate configuration (#​4408)

Removed (breaking)

  • SQL Server 7.0 / 2000 code paths removed; Type System Version=SQL Server 2000 now throws ArgumentException at open. Applications should switch to Latest (or another supported value). No change to server-version support — 7.0 / 2000 were already rejected during login version negotiation. (#​4015)

Full details: release-notes/7.1/7.1.0-preview2.md


Microsoft.Data.SqlClient.Extensions.Azure 7.1.0-preview2

Added — WAM (Windows Account Manager) broker support for Entra ID authentication (Windows only) (#​4288, #​4388)

  • Covers ActiveDirectoryIntegrated, ActiveDirectoryInteractive, ActiveDirectoryDeviceCodeFlow, and the deprecated ActiveDirectoryPassword modes.
    ... (truncated)

7.1.0-preview1

This update brings the following changes since the 7.0.0 release:

Added

SqlBatch Support on .NET Framework

What Changed:

  • Added SqlBatch and related batch-command support for the .NET Framework target so the batching API is now available across the full supported platform matrix, including net462. (#​3926)

Who Benefits:

  • Applications that target .NET Framework but also want to use the newer batching APIs no longer need a separate implementation strategy from .NET 8/9 applications.
  • Libraries that multi-target .NET Framework and modern .NET can use a more consistent data-access surface area.

Impact:

  • SqlBatch, SqlBatchCommand, and the related execution methods are now usable on .NET Framework builds in addition to .NET.

Cross-Driver Connection-String Synonym Alignment

What Changed:

  • Added additional accepted connection-string synonyms for better compatibility with other SQL Server drivers and existing connection-string conventions. Newly accepted synonyms include ColumnEncryption, ConnectTimeout, FailoverPartner, PacketSize, and WorkstationId. (#​4192)

Who Benefits:

  • Applications migrating connection strings from other SQL Server drivers or shared infrastructure can reuse more existing keywords without rewriting them first.

Impact:

  • Existing canonical keywords continue to work unchanged; this preview simply accepts more equivalent aliases during parsing.

Changed

Type Forwards for Authentication Abstractions

What Changed:

  • Added type forwards from the core Microsoft.Data.SqlClient assembly to public authentication-related types that were moved into Microsoft.Data.SqlClient.Extensions.Abstractions, including SqlAuthenticationMethod, SqlAuthenticationParameters, SqlAuthenticationProvider, SqlAuthenticationProviderException, and SqlAuthenticationToken. (#​4067, #​4117)

Who Benefits:

  • Applications and libraries compiled against earlier package layouts retain binary compatibility when those authentication types are resolved from the core assembly name.

Impact:

  • No application code changes are required; the type forwards preserve existing compiled references.

User Agent Feature Extension Enabled by Default

... (truncated)

7.0.3

This update brings the following changes since the 7.0.2 release:

The core driver and its companion packages ship together as version 7.0.3. Update the companion packages you use alongside the driver to 7.0.3. Assembly versions remain 7.0.0.0, unchanged from 7.0.2.

Companion package release notes

Changed

  • Updated the Microsoft.Data.SqlClient.SNI and Microsoft.Data.SqlClient.SNI.runtime dependencies to 6.0.3 (was 6.0.2).
    (#​4599)

Fixed

  • Fixed a SqlBulkCopy regression in environments where the application login cannot read sys.all_columns. Bulk copy now falls back to the earlier column-discovery behavior when that permission is unavailable. Support for hidden columns and SQL Graph column aliases still requires access to the metadata view.
    (#​4370, #​4306, #​4402)

  • Fixed a memory-allocation regression in connection and command operations caused by formatting diagnostic strings even when tracing was disabled. Also corrected trace messages that reported an incorrect object ID or could throw FormatException when traced values contained braces.
    (#​4528, #​4533)

  • Fixed ServerCertificate validation on the managed SNI path so the configured certificate is compared against the server certificate even when the server certificate passes chain and host-name validation. When certificate validation is enabled, a missing, unreadable, or invalid certificate file, a certificate mismatch, or a missing server certificate now causes the TLS handshake to fail instead of bypassing the configured certificate check. (net8.0/net9.0 only)
    (#​4445, #​4583)

  • Fixed Always Encrypted VSM/HGS enclave attestation to verify that the enclave public key used to establish a session matches the key committed to by the signed attestation report. Missing, malformed, or mismatched key-binding data now causes attestation to fail before the session secret is derived.
    (#​4532, #​4553)

  • Fixed SqlConnection.AccessTokenCallback not disabling Transparent Network IP Resolution by default, making it consistent with SqlConnection.AccessToken. An explicitly configured TransparentNetworkIPResolution connection-string value still takes precedence. (net462 only)
    (#​4520, #​4561)

  • Fixed authentication state handling so clearing SqlConnection.AccessToken, AccessTokenCallback, or SspiContextProvider preserves the other authentication values in the connection pool key. Cloning a connection or updating its credential also preserves its SspiContextProvider. Combining a non-null SspiContextProvider with AccessToken or AccessTokenCallback now throws InvalidOperationException instead of silently discarding authentication state; applications must use one authentication mechanism at a time.
    (#​4520, #​4561, #​4644)

  • Fixed configurable retry logic installing a permanent, process-wide assembly-resolution handler that could interfere with unrelated assembly loading. The handler is now active only while an explicitly configured custom retry provider is resolved and constructed, and probes AppContext.BaseDirectory instead of the current working directory. Place custom retry assemblies in the application base directory; dependencies loaded after provider construction must be resolvable through normal application dependency resolution or an application-provided handler. (net8.0/net9.0 only)
    (#​2214, #​4547, #​4663)

Contributors

We thank the following public contributors. Their efforts toward this project are very much appreciated.

Target Platform Support

  • .NET Framework 4.6.2+ (Windows x86, Windows x64, Windows ARM64)
  • .NET 8.0+ (Windows x86, Windows x64, Windows ARM, Windows ARM64, Linux, macOS)

... (truncated)

Commits viewable in compare view.

Pinned Microsoft.Extensions.Caching.Memory at 10.0.12.

Release notes

Sourced from Microsoft.Extensions.Caching.Memory's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration from 10.0.11 to 10.0.12.

Release notes

Sourced from Microsoft.Extensions.Configuration's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.Binder from 10.0.11 to 10.0.12.

Release notes

Sourced from Microsoft.Extensions.Configuration.Binder's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.FileExtensions from 10.0.11 to 10.0.12.

Release notes

Sourced from Microsoft.Extensions.Configuration.FileExtensions's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.Json from 10.0.11 to 10.0.12.

Release notes

Sourced from Microsoft.Extensions.Configuration.Json's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.DependencyInjection from 10.0.11 to 10.0.12.

Release notes

Sourced from Microsoft.Extensions.DependencyInjection's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Hosting from 10.0.11 to 10.0.12.

Release notes

Sourced from Microsoft.Extensions.Hosting's releases.

No release notes found for this version range.

Commits viewable in compare view.

Pinned Microsoft.Extensions.Http.Resilience at 10.10.0.

Release notes

Sourced from Microsoft.Extensions.Http.Resilience's releases.

10.10.0

This month's release focuses on AI package reliability: closing gaps in evaluation scoring, hardening OpenAI image-option handling, and removing the deprecated OpenAI Assistants API support.

Experimental API Changes

Removed Experimental APIs

  • OpenAI Assistants experimental APIs removed (was experimental under OPENAI001) #​7724

What's Changed

AI

  • Remove OpenAI Assistants API support #​7724 by @​jozkee (co-authored by @​Copilot)
  • Update OpenAI package version to 2.13.0 #​7726 by @​jozkee
  • OpenAI: Avoid null implicit conversions for image options #​7727 by @​jozkee (co-authored by @​Copilot)

AI Evaluation

  • Fail closed when a quality metric has no valid score #​7735 by @​thaildhe172591
  • Validate path segments in Azure storage result store and response cache #​7718 by @​Lroca88

Repository Infrastructure Updates

  • Add TfxInstaller for pub...

_Description has been trun...

Description has been truncated


This change is Reviewable

Bumps Aspire.Hosting.JavaScript from 13.4.6 to 13.5.4
Bumps Azure.Core from 1.60.0 to 1.62.0
Bumps Azure.Security.KeyVault.Secrets from 4.11.0 to 4.11.1
Bumps Azure.Storage.Blobs from 12.29.1 to 12.29.2
Bumps Microsoft.Agents.AI.OpenAI from 1.15.0 to 1.21.0
Bumps Microsoft.AspNetCore.Mvc.Testing from 10.0.11 to 10.0.12
Bumps Microsoft.AspNetCore.OpenApi from 10.0.11 to 10.0.12
Bumps Microsoft.Azure.Cosmos from 3.62.1 to 3.63.1
Bumps Microsoft.Data.SqlClient from 7.0.2 to 7.1.0
Bumps Microsoft.Extensions.Caching.Memory from 10.0.11 to 10.0.12
Bumps Microsoft.Extensions.Configuration from 10.0.11 to 10.0.12
Bumps Microsoft.Extensions.Configuration.Binder from 10.0.11 to 10.0.12
Bumps Microsoft.Extensions.Configuration.FileExtensions from 10.0.11 to 10.0.12
Bumps Microsoft.Extensions.Configuration.Json from 10.0.11 to 10.0.12
Bumps Microsoft.Extensions.DependencyInjection from 10.0.11 to 10.0.12
Bumps Microsoft.Extensions.Hosting from 10.0.11 to 10.0.12
Bumps Microsoft.Extensions.Http.Resilience from 10.9.0 to 10.10.0
Bumps Microsoft.Extensions.Options.ConfigurationExtensions from 10.0.11 to 10.0.12
Bumps Microsoft.Extensions.ServiceDiscovery from 10.9.0 to 10.10.0
Bumps MSTest.Sdk from 4.3.3 to 4.4.1
Bumps OpenTelemetry.Exporter.OpenTelemetryProtocol from 1.17.0 to 1.18.0
Bumps OpenTelemetry.Extensions.Hosting from 1.17.0 to 1.18.0
Bumps OpenTelemetry.Instrumentation.AspNetCore from 1.17.0 to 1.18.0
Bumps OpenTelemetry.Instrumentation.Http from 1.17.0 to 1.18.0
Bumps OpenTelemetry.Instrumentation.Runtime from 1.17.0 to 1.18.0
Bumps Scriban from 7.2.5 to 7.4.0
Bumps System.CommandLine from 2.0.11 to 2.0.12

---
updated-dependencies:
- dependency-name: Aspire.Hosting.JavaScript
  dependency-version: 13.5.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: Azure.Core
  dependency-version: 1.62.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: Azure.Security.KeyVault.Secrets
  dependency-version: 4.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Azure.Storage.Blobs
  dependency-version: 12.29.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.Agents.AI.OpenAI
  dependency-version: 1.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.AspNetCore.Mvc.Testing
  dependency-version: 10.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.AspNetCore.OpenApi
  dependency-version: 10.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.Azure.Cosmos
  dependency-version: 3.63.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.Data.SqlClient
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.Extensions.Caching.Memory
  dependency-version: 10.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.Extensions.Configuration
  dependency-version: 10.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.Extensions.Configuration.Binder
  dependency-version: 10.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.Extensions.Configuration.FileExtensions
  dependency-version: 10.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.Extensions.Configuration.Json
  dependency-version: 10.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-version: 10.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.Extensions.Hosting
  dependency-version: 10.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.Extensions.Http.Resilience
  dependency-version: 10.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.Extensions.Options.ConfigurationExtensions
  dependency-version: 10.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
- dependency-name: Microsoft.Extensions.ServiceDiscovery
  dependency-version: 10.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: MSTest.Sdk
  dependency-version: 4.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: OpenTelemetry.Exporter.OpenTelemetryProtocol
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: OpenTelemetry.Extensions.Hosting
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: OpenTelemetry.Instrumentation.AspNetCore
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: OpenTelemetry.Instrumentation.Http
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: OpenTelemetry.Instrumentation.Runtime
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: Scriban
  dependency-version: 7.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-dependencies
- dependency-name: System.CommandLine
  dependency-version: 2.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added .net .NET related issues and pull requests dependencies Dependency updates and management nuget NuGet package updates labels Sep 18, 2026
@dependabot
dependabot Bot requested a review from PlagueHO as a code owner September 18, 2026 06:29
@dependabot dependabot Bot added .net .NET related issues and pull requests dependencies Dependency updates and management nuget NuGet package updates labels Sep 18, 2026
@github-actions

github-actions Bot commented Sep 18, 2026

Copy link
Copy Markdown

Unit Test Results

767 tests  ±0   765 ✅  - 2   38s ⏱️ -2s
  3 suites ±0     0 💤 ±0 
  3 files   ±0     2 ❌ +2 

For more details on these failures, see this check.

Results for commit c8d2412. ± Comparison against base commit 99302de.

♻️ This comment has been updated with latest results.

@github-actions

Copy link
Copy Markdown

Summary

Summary
Generated on: 09/18/2026 - 06:32:21
Parser: MultiReport (6x Cobertura)
Assemblies: 4
Classes: 181
Files: 155
Line coverage: 53.2% (7201 of 13535)
Covered lines: 7201
Uncovered lines: 6334
Coverable lines: 13535
Total lines: 20806
Branch coverage: 44.2% (1791 of 4050)
Covered branches: 1791
Total branches: 4050
Method coverage: Feature is only available for sponsors

Coverage

GenAIDBExplorer.Api - 54.3%
Name Line Branch
GenAIDBExplorer.Api 54.3% 36%
GenAIDBExplorer.Api.Endpoints.ModelEndpoints 84.2% 100%
GenAIDBExplorer.Api.Endpoints.ProjectEndpoints 68.7% 64.2%
GenAIDBExplorer.Api.Endpoints.SearchEndpoints 100% 100%
GenAIDBExplorer.Api.Endpoints.StoredProcedureEndpoints 83.2% 85.2%
GenAIDBExplorer.Api.Endpoints.TableEndpoints 63.7% 64.5%
GenAIDBExplorer.Api.Endpoints.ViewEndpoints 63% 64.5%
GenAIDBExplorer.Api.Health.SemanticModelHealthCheck 100% 100%
GenAIDBExplorer.Api.Models.ColumnResponse 100%
GenAIDBExplorer.Api.Models.EntitySummaryResponse 100%
GenAIDBExplorer.Api.Models.IndexResponse 0%
GenAIDBExplorer.Api.Models.MappingExtensions 57.1% 100%
GenAIDBExplorer.Api.Models.PaginatedResponse 100%
GenAIDBExplorer.Api.Models.ProjectInfoResponse 100%
GenAIDBExplorer.Api.Models.SearchRequest 100%
GenAIDBExplorer.Api.Models.SearchResponse 100%
GenAIDBExplorer.Api.Models.SearchResultResponse 100%
GenAIDBExplorer.Api.Models.SemanticModelSummaryResponse 100%
GenAIDBExplorer.Api.Models.StoredProcedureDetailResponse 100%
GenAIDBExplorer.Api.Models.TableDetailResponse 100%
GenAIDBExplorer.Api.Models.UpdateColumnDescriptionRequest 0%
GenAIDBExplorer.Api.Models.UpdateEntityDescriptionRequest 100%
GenAIDBExplorer.Api.Models.ViewDetailResponse 100%
GenAIDBExplorer.Api.Services.SemanticModelCacheService 100% 100%
Microsoft.AspNetCore.OpenApi.Generated 0.7% 0.9%
Program 61.8% 65%
System.Runtime.CompilerServices 0%
GenAIDBExplorer.Console - 27.6%
Name Line Branch
GenAIDBExplorer.Console 27.6% 44.1%
DataDictionaryCommandHandlerOptions 0%
EnrichModelCommandHandlerOptions 0%
GenAIDBExplorer.Console.CommandHandlers.CommandHandler 70% 25%
GenAIDBExplorer.Console.CommandHandlers.CommandHandler 81.8% 50%
GenAIDBExplorer.Console.CommandHandlers.CommandHandlerOptions 100%
GenAIDBExplorer.Console.CommandHandlers.DataDictionaryCommandHandler 0% 0%
GenAIDBExplorer.Console.CommandHandlers.EnrichModelCommandHandler 0% 0%
GenAIDBExplorer.Console.CommandHandlers.ExportModelCommandHandler 0% 0%
GenAIDBExplorer.Console.CommandHandlers.ExportModelCommandHandlerOptions 0% 0%
GenAIDBExplorer.Console.CommandHandlers.ExtractModelCommandHandler 18.1%
GenAIDBExplorer.Console.CommandHandlers.ExtractModelCommandHandlerOptions 100%
GenAIDBExplorer.Console.CommandHandlers.GenerateVectorsCommandHandler 0%
GenAIDBExplorer.Console.CommandHandlers.GenerateVectorsCommandHandlerOption
s
0%
GenAIDBExplorer.Console.CommandHandlers.InitProjectCommandHandler 58.1% 94.8%
GenAIDBExplorer.Console.CommandHandlers.InitProjectCommandHandlerOptions 100% 100%
GenAIDBExplorer.Console.CommandHandlers.QueryModelCommandHandler 66.1% 100%
GenAIDBExplorer.Console.CommandHandlers.QueryModelCommandHandlerOptions 100%
GenAIDBExplorer.Console.CommandHandlers.ReconcileIndexCommandHandler 0%
GenAIDBExplorer.Console.CommandHandlers.ReconcileIndexCommandHandlerOptions 0%
GenAIDBExplorer.Console.CommandHandlers.ShowObjectCommandHandler 18% 11.9%
GenAIDBExplorer.Console.CommandHandlers.ShowObjectCommandHandlerOptions 100%
GenAIDBExplorer.Console.Extensions.HostBuilderExtensions 76% 100%
GenAIDBExplorer.Console.Program 0%
GenAIDBExplorer.Console.Services.OutputService 0%
GenAIDBExplorer.Core - 56.1%
Name Line Branch
GenAIDBExplorer.Core 56.1% 44.6%
GenAIDBExplorer.Core.ChatClients.ChatClientFactory 100% 90%
GenAIDBExplorer.Core.Data.ConnectionManager.DatabaseConnectionManager 0% 0%
GenAIDBExplorer.Core.Data.DatabaseProviders.SqlConnectionProvider 51.9% 30%
GenAIDBExplorer.Core.Data.DatabaseProviders.SqlQueryExecutor 0% 0%
GenAIDBExplorer.Core.DataDictionary.ColumnDataDictionary 100%
GenAIDBExplorer.Core.DataDictionary.DataDictionaryProvider 17.7% 5.3%
GenAIDBExplorer.Core.DataDictionary.TableDataDictionary 100%
GenAIDBExplorer.Core.Extensions.ServiceRegistrationExtensions 57.6% 41.6%
GenAIDBExplorer.Core.Models.Database.ReferenceInfo 0%
GenAIDBExplorer.Core.Models.Database.StoredProcedureInfo 100%
GenAIDBExplorer.Core.Models.Database.TableInfo 100%
GenAIDBExplorer.Core.Models.Database.ViewInfo 100%
GenAIDBExplorer.Core.Models.Project.AzureBlobConfiguration 100%
GenAIDBExplorer.Core.Models.Project.CachingConfiguration 100%
GenAIDBExplorer.Core.Models.Project.ChangeTrackingConfiguration 100%
GenAIDBExplorer.Core.Models.Project.ColumnTypeMapping 0%
GenAIDBExplorer.Core.Models.Project.ConditionalUrlAttribute 100% 100%
GenAIDBExplorer.Core.Models.Project.CosmosDbConfiguration 100%
GenAIDBExplorer.Core.Models.Project.DatabaseSettings 100%
GenAIDBExplorer.Core.Models.Project.DataDictionarySettings 100%
GenAIDBExplorer.Core.Models.Project.LazyLoadingConfiguration 100%
GenAIDBExplorer.Core.Models.Project.LocalDiskConfiguration 100%
GenAIDBExplorer.Core.Models.Project.MicrosoftFoundryDefaultSettings 100%
GenAIDBExplorer.Core.Models.Project.MicrosoftFoundrySettings 100%
GenAIDBExplorer.Core.Models.Project.NotEmptyOrWhitespaceAttribute 66.6% 50%
GenAIDBExplorer.Core.Models.Project.PerformanceMonitoringConfiguration 100%
GenAIDBExplorer.Core.Models.Project.Project 84.1% 58.7%
GenAIDBExplorer.Core.Models.Project.ProjectSettings 100%
GenAIDBExplorer.Core.Models.Project.ProjectUtils 88% 83.3%
GenAIDBExplorer.Core.Models.Project.QueryModelSettings 100%
GenAIDBExplorer.Core.Models.Project.RequiredOnPropertyValueAttribute 0% 0%
GenAIDBExplorer.Core.Models.Project.SemanticModelRepositorySettings 100%
GenAIDBExplorer.Core.Models.Project.SemanticModelSettings 100%
GenAIDBExplorer.Core.Models.Project.VectorIndexSettings 100%
GenAIDBExplorer.Core.Models.SemanticModel.ChangeTracking.ChangeTracker 93.9% 91.6%
GenAIDBExplorer.Core.Models.SemanticModel.ChangeTracking.EntityStateChanged
EventArgs
100%
GenAIDBExplorer.Core.Models.SemanticModel.Export.MarkdownExportStrategy 0% 0%
GenAIDBExplorer.Core.Models.SemanticModel.Export.MarkdownExportVisitor 0% 0%
GenAIDBExplorer.Core.Models.SemanticModel.Extensions.SemanticModelEntityExt
ensions
94.5% 90%
GenAIDBExplorer.Core.Models.SemanticModel.JsonConverters.SemanticModelStore
dProcedureJsonConverter
19.5% 12.5%
GenAIDBExplorer.Core.Models.SemanticModel.JsonConverters.SemanticModelTable
JsonConverter
19.5% 12.5%
GenAIDBExplorer.Core.Models.SemanticModel.JsonConverters.SemanticModelViewJ
sonConverter
19.5% 12.5%
GenAIDBExplorer.Core.Models.SemanticModel.LazyLoading.LazyLoadingProxy 100% 81.2%
GenAIDBExplorer.Core.Models.SemanticModel.LazyLoading.LazyLoadingProxy 94.2% 75%
GenAIDBExplorer.Core.Models.SemanticModel.SemanticModel 76.4% 70.7%
GenAIDBExplorer.Core.Models.SemanticModel.SemanticModelColumn 63.6%
GenAIDBExplorer.Core.Models.SemanticModel.SemanticModelEntity 63.2% 33.3%
GenAIDBExplorer.Core.Models.SemanticModel.SemanticModelIndex 44.4%
GenAIDBExplorer.Core.Models.SemanticModel.SemanticModelStoredProcedure 100% 91.6%
GenAIDBExplorer.Core.Models.SemanticModel.SemanticModelTable 97.9% 72.5%
GenAIDBExplorer.Core.Models.SemanticModel.SemanticModelView 100% 70.5%
GenAIDBExplorer.Core.Models.SemanticModel.UsageStrategy.RegexColumnUsageStr
ategy
0% 0%
GenAIDBExplorer.Core.Models.SemanticModel.UsageStrategy.RegexEntityUsageStr
ategy
0% 0%
GenAIDBExplorer.Core.Models.SemanticModel.UsageStrategy.SemanticModelColumn
Extensions
0% 0%
GenAIDBExplorer.Core.Models.SemanticModel.UsageStrategy.SemanticModelEntity
UsageExtensions
0%
GenAIDBExplorer.Core.PromptTemplates.LiquidTemplateRenderer 100% 100%
GenAIDBExplorer.Core.PromptTemplates.PromptTemplateDefinition 100%
GenAIDBExplorer.Core.PromptTemplates.PromptTemplateMessage 100%
GenAIDBExplorer.Core.PromptTemplates.PromptTemplateModelParameters 100%
GenAIDBExplorer.Core.PromptTemplates.PromptTemplateParser 94% 83.9%
GenAIDBExplorer.Core.Repository.AzureBlobPersistenceStrategy 50.2% 37.3%
GenAIDBExplorer.Core.Repository.AzureBlobPersistenceStrategy 50.2% 37.3%
GenAIDBExplorer.Core.Repository.Caching.CacheOptions 100%
GenAIDBExplorer.Core.Repository.Caching.CacheStatistics 100%
GenAIDBExplorer.Core.Repository.Caching.MemorySemanticModelCache 72.4% 70.6%
GenAIDBExplorer.Core.Repository.CosmosDbPersistenceStrategy 0% 0%
GenAIDBExplorer.Core.Repository.CosmosDbPersistenceStrategy 0% 0%
GenAIDBExplorer.Core.Repository.DTO.CosmosDbEntityDto 100%
GenAIDBExplorer.Core.Repository.DTO.PersistedEntityDto 100%
GenAIDBExplorer.Core.Repository.Helpers.EntityFileManager 25.6% 20.5%
GenAIDBExplorer.Core.Repository.Helpers.EntityFileManager 25.6% 20.5%
GenAIDBExplorer.Core.Repository.Helpers.SemanticModelFileManager 71.6% 50%
GenAIDBExplorer.Core.Repository.Helpers.TempDirectoryManager 91.6% 80%
GenAIDBExplorer.Core.Repository.LocalDiskPersistenceStrategy 77.8% 57.6%
GenAIDBExplorer.Core.Repository.LocalDiskPersistenceStrategy 77.8% 57.6%
GenAIDBExplorer.Core.Repository.Mappers.CosmosDbEntityMapper 80%
GenAIDBExplorer.Core.Repository.Mappers.LocalBlobEntityMapper 40%
GenAIDBExplorer.Core.Repository.Performance.OperationStatistics 100% 50%
GenAIDBExplorer.Core.Repository.Performance.PerformanceMetrics 100% 100%
GenAIDBExplorer.Core.Repository.Performance.PerformanceMonitor 87% 92.8%
GenAIDBExplorer.Core.Repository.Performance.PerformanceMonitor.OperationRec
ord
100%
GenAIDBExplorer.Core.Repository.Performance.PerformanceRecommendation 100% 50%
GenAIDBExplorer.Core.Repository.Performance.PerformanceTrackingContext 89.4% 75%
GenAIDBExplorer.Core.Repository.PerformanceMonitoringOptions 100%
GenAIDBExplorer.Core.Repository.PerformanceMonitoringOptionsBuilder 100% 100%
GenAIDBExplorer.Core.Repository.PersistenceStrategyFactory 100% 100%
GenAIDBExplorer.Core.Repository.Security.CacheStatistics 0% 0%
GenAIDBExplorer.Core.Repository.Security.KeyVaultConfigurationProvider 76.2% 71.4%
GenAIDBExplorer.Core.Repository.Security.KeyVaultConfigurationProvider.Cach
edSecret
100%
GenAIDBExplorer.Core.Repository.Security.KeyVaultOptions 100%
GenAIDBExplorer.Core.Repository.Security.KeyVaultRetryPolicy 100%
GenAIDBExplorer.Core.Repository.Security.SecureJsonSerializer 73% 73%
GenAIDBExplorer.Core.Repository.Security.SecureJsonSerializer 73% 73%
GenAIDBExplorer.Core.Repository.Security.SecureJsonSerializerOptions 100%
GenAIDBExplorer.Core.Repository.SemanticModelRepository 94.1% 71.4%
GenAIDBExplorer.Core.Repository.SemanticModelRepository 94.1% 71.4%
GenAIDBExplorer.Core.Repository.SemanticModelRepositoryOptions 100%
GenAIDBExplorer.Core.Repository.SemanticModelRepositoryOptionsBuilder 96% 91.6%
GenAIDBExplorer.Core.Security.ConnectionStringRedactor 41.5% 37.5%
GenAIDBExplorer.Core.Security.EntityNameSanitizer 75.7% 61.4%
GenAIDBExplorer.Core.Security.PathValidator 76.7% 66%
GenAIDBExplorer.Core.SemanticModelProviders.SchemaRepository 0% 0%
GenAIDBExplorer.Core.SemanticModelProviders.SemanticModelProvider 59.8% 53.9%
GenAIDBExplorer.Core.SemanticModelQuery.SemanticModelQueryRequest 100%
GenAIDBExplorer.Core.SemanticModelQuery.SemanticModelQueryResult 100%
GenAIDBExplorer.Core.SemanticModelQuery.SemanticModelQueryService 10.8% 1.6%
GenAIDBExplorer.Core.SemanticModelQuery.SemanticModelQueryService.QueryCont
ext
0%
GenAIDBExplorer.Core.SemanticModelQuery.SemanticModelSearchResult 100%
GenAIDBExplorer.Core.SemanticModelQuery.SemanticModelSearchService 100% 75%
GenAIDBExplorer.Core.SemanticModelQuery.SemanticModelStreamingQueryResult 100%
GenAIDBExplorer.Core.SemanticProviders.SemanticDescriptionProvider 73.8% 59.6%
GenAIDBExplorer.Core.SemanticProviders.SemanticDescriptionProvider 73.8% 59.6%
GenAIDBExplorer.Core.SemanticProviders.SemanticProcessResult 64.7% 66.6%
GenAIDBExplorer.Core.SemanticProviders.SemanticProcessResultItem 100%
GenAIDBExplorer.Core.SemanticVectors.Embeddings.ChatClientEmbeddingGenerato
r
100% 62.5%
GenAIDBExplorer.Core.SemanticVectors.Indexing.InMemoryVectorIndexWriter 0% 0%
GenAIDBExplorer.Core.SemanticVectors.Indexing.SkInMemoryVectorIndexWriter 31.3% 14.7%
GenAIDBExplorer.Core.SemanticVectors.Infrastructure.VectorInfrastructure 100%
GenAIDBExplorer.Core.SemanticVectors.Infrastructure.VectorInfrastructureFac
tory
100%
GenAIDBExplorer.Core.SemanticVectors.Keys.EntityKeyBuilder 100% 100%
GenAIDBExplorer.Core.SemanticVectors.Mapping.VectorRecordMapper 100% 75%
GenAIDBExplorer.Core.SemanticVectors.Options.VectorIndexOptions 100%
GenAIDBExplorer.Core.SemanticVectors.Options.VectorOptionsValidator 63% 55.8%
GenAIDBExplorer.Core.SemanticVectors.Orchestration.VectorGenerationService 50.8% 37.5%
GenAIDBExplorer.Core.SemanticVectors.Orchestration.VectorOrchestrator 0%
GenAIDBExplorer.Core.SemanticVectors.Policy.VectorIndexPolicy 70.9% 57.6%
GenAIDBExplorer.Core.SemanticVectors.Search.InMemoryVectorSearchService 0% 0%
GenAIDBExplorer.Core.SemanticVectors.Search.InMemoryVectorStoreAdapter 100% 50%
GenAIDBExplorer.Core.SemanticVectors.Search.SkInMemoryVectorSearchService 33.6% 23.8%
GenAIDBExplorer.ServiceDefaults - 92.5%
Name Line Branch
GenAIDBExplorer.ServiceDefaults 92.5% 90%
Microsoft.Extensions.Hosting.Extensions 92.5% 90%
Microsoft.Extensions.Hosting.Extensions 92.5% 90%

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency updates and management .net .NET related issues and pull requests nuget NuGet package updates

Projects

None yet

0 participants