Skip to content

Bump the dotnet group with 5 updates#6843

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/docs/ai/quickstarts/snippets/chat-with-data/azure-openai/dotnet-baa695e4d3
Open

Bump the dotnet group with 5 updates#6843
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/docs/ai/quickstarts/snippets/chat-with-data/azure-openai/dotnet-baa695e4d3

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Mar 18, 2026

Updated Azure.Identity from 1.17.1 to 1.19.0.

Release notes

Sourced from Azure.Identity's releases.

1.19.0

1.19.0 (2026-03-11)

Features Added

  • Added support in ClientCertificateCredential to specify a path in the form of cert:/StoreLocation/StoreName/Thumbprint to refer to a certificate in the platform certificate store - such as the Windows Certificate Store on Windows, and the KeyChain on MacOS - instead of a file on disk. For example to load a certificate from the "My" store in the "CurrentUser" location use the path cert:/CurrentUser/My/E661583E8FABEF4C0BEF694CBC41C28FB81CD870 (A community contribution, courtesy of fowl2).

Other Changes

  • Updated Microsoft.Identity.Client and Microsoft.Identity.Client.Extensions.Msal dependencies to version 4.83.1.

1.18.0

1.18.0 (2026-02-25)

Features Added

  • Added experimental Microsoft.Extensions.Configuration and Microsoft.Extensions.DependencyInjection integration for Azure SDK clients. For details, see the Configuration and Dependency Injection documentation.

  • The WorkloadIdentityCredentialOptions.IsAzureProxyEnabled property, which enables Azure Kubernetes token proxy mode, is only available in beta releases of this package.

  • AzureDeveloperCliCredential now parses JSON error output from azd auth token to extract clean error messages instead of including raw JSON in exceptions. Error messages like {"type":"consoleMessage","data":{"message":"ERROR: fetching token: ..."}} are now displayed as ERROR: fetching token: ....

1.18.0-beta.3

1.18.0-beta.3 (2026-02-20)

Breaking Changes

  • Renamed WorkloadIdentityCredentialOptions.IsAzureKubernetesTokenProxyEnabled to IsAzureProxyEnabled to follow .NET naming conventions for boolean properties.

Bugs Fixed

  • Fixed a NullReferenceException that occurred during X509Chain validation on Linux when using the Identity Bindings feature.

  • Disabled MSAL's internal retry logic for ConfidentialClientApplication and PublicClientApplication to prevent double retries when combined with Azure SDK's retry policy. Only the configured Azure SDK retry policy is applied, avoiding unexpected additional retry attempts.

Commits viewable in compare view.

Updated Microsoft.Extensions.AI.OpenAI from 9.5.0-preview.1.25265.7 to 10.4.0.

Release notes

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

10.4.0

This release advances the AI abstractions with new hosted file, web search, and reasoning content types, stabilizes MCP and tool approval APIs, adds streaming latency metrics to OpenTelemetry instrumentation, and delivers bug fixes across caching, data ingestion, and resource monitoring.

Experimental API Changes

Now Stable

  • MCP Server Tool Content and Function Call Approval APIs are now stable (previously MEAI001) #​7299
  • FakeLogCollector.GetLogsAsync(CancellationToken) is now stable (previously EXTEXP0003) #​7332

New Experimental APIs

  • New experimental AddExtendedHttpClientLogging overloads with wrapHandlersPipeline parameter (EXTEXP0013) #​7231

Removed Experimental APIs

  • AI Tool Reduction experimental APIs removed (was experimental under MEAI001) #​7353

What's Changed

AI

  • Add IHostedFileClient and friends #​7269 by @​stephentoub
  • Add web search tool call content #​7276 by @​stephentoub (co-authored by @​Copilot)
  • Surface OpenAI-compatible reasoning_content as TextReasoningContent #​7295 by @​stephentoub
  • MCP/Approvals/Tool Contents stabilization #​7299 by @​jozkee
  • Implement time_to_first_chunk and time_per_output_chunk streaming metrics in OpenTelemetryChatClient #​7325 by @​stephentoub (co-authored by @​Copilot)
  • Add openai.api.type telemetry attribute to OpenAI IChatClient implementations #​7316 by @​stephentoub (co-authored by @​Copilot)
  • Update OpenTelemetry Gen AI semantic conventions to v1.40 #​7322 by @​stephentoub (co-authored by @​Copilot)
  • Fix tool definitions emission regardless of sensitivity setting #​7346 by @​stephentoub (co-authored by @​Copilot)
  • Honor [Required] attribute in AI function parameter JSON schema generation #​7272 by @​stephentoub (co-authored by @​Copilot)
  • AddAIContentType automatically registers content type against every base in the inheritance chain up to AIContent #​7358 by @​jozkee (co-authored by @​Copilot)
  • Auto-mark server-handled FunctionCallContent as InformationalOnly #​7314 by @​stephentoub (co-authored by @​Copilot)
  • Map ReasoningEffort.None and ExtraHigh to none and xhigh in OpenAI IChatClient implementations #​7319 by @​stephentoub (co-authored by @​Copilot)
  • Handle DynamicMethod reflection limitations in AIFunctionFactory #​7287 by @​stephentoub (co-authored by @​Copilot)
  • Fix Activity.Current nulled during streaming tool invocation #​7321 by @​flaviocdc (co-authored by @​Copilot)
  • Handle FunctionCallOutputResponseItem in streaming response conversion #​7307 by @​stephentoub (co-authored by @​Copilot)
  • Fix serialization of response continuation tokens #​7356 by @​stephentoub
  • Remove AI Tool Reduction experimental APIs #​7353 by @​stephentoub (co-authored by @​Copilot)
  • Update OpenAI to 2.9.1 #​7349 by @​stephentoub

Telemetry and Observability

  • Introduce support for the Gauge metric type #​7203 by @​rainsxng
  • Update logging source generator to support generic methods #​7331 by @​svick (co-authored by @​Copilot)
  • Update logging source generator to match runtime PR #​124589 (ref readonly/params/scoped) #​7333 by @​svick (co-authored by @​Copilot)
  • Promote FakeLogCollector.GetLogsAsync(CancellationToken) from experimental to stable #​7332 by @​Demo30
  • Remove obsolete CS1591 warning suppression from generated file preamble #​7308 by @​luissena

HTTP Resilience and Diagnostics

... (truncated)

10.3.0

Experimental API Changes

Now Stable

  • IChatReducer interface — graduated from experimental to stable. The interface is now stable; concrete implementations (MessageCountingChatReducer, SummarizingChatReducer, ReducingChatClient) remain experimental. #​7235 by @​jeffhandley
  • FunctionCallContent and FunctionResultContent unsealed — changed from sealed class to class, enabling derivation. #​7229 by @​stephentoub (co-authored by @​Copilot)

Breaking Changes to Experimental APIs

  • Experimental diagnostic ID reorganization — the blanket MEAI001 diagnostic ID was split into feature-specific constants. OpenAI-specific experimental APIs now use OPENAI001, OPENAI002, or SCME0001 instead of MEAI001. Consumers who suppressed MEAI001 for OpenAI APIs may need to suppress OPENAI001/OPENAI002 instead. #​7116 by @​jeffhandley (co-authored by @​Copilot), #​7235 by @​jeffhandley

New Experimental APIs

  • Chat reduction implementationsMessageCountingChatReducer, SummarizingChatReducer, ReducingChatClient, and UseChatReducer builder extension. #​7235 by @​jeffhandley
  • OpenAI Responses/Assistants/Realtime/Image/Audio integrations — assigned feature-specific experimental diagnostic IDs (OPENAI001, OPENAI002). #​7235 by @​jeffhandley
  • ImageGenerationToolCallContent and ImageGenerationToolResultContent — added to JSON serialization infrastructure. #​7275 by @​stephentoub (co-authored by @​Copilot)

What's Changed

AI

  • Add ReasoningOptions to ChatOptions #​7252 by @​stephentoub (co-authored by @​Copilot)
  • Add LoadFromAsync and SaveToAsync helper methods to DataContent #​7159 by @​stephentoub (co-authored by @​Copilot)
  • Add FunctionCallContent.InformationalOnly property #​7126, #​7262 by @​stephentoub (co-authored by @​Copilot)
  • Add server tool call support to OpenTelemetryChatClient per semantic conventions #​7240 by @​stephentoub (co-authored by @​Copilot)
  • Add ImageGenerationToolCallContent and ImageGenerationToolResultContent to JSON serialization infrastructure #​7275 by @​stephentoub (co-authored by @​Copilot)
  • Add logging to FunctionInvokingChatClient for approval flow, error handling, and loop control #​7228 by @​stephentoub (co-authored by @​Copilot)
  • Allow FunctionResultContent pass-through when CallId matches #​7229 by @​stephentoub (co-authored by @​Copilot)
  • Remove AIFunctionDeclaration tools on last iteration in FunctionInvokingChatClient #​7207 by @​stephentoub (co-authored by @​Copilot)
  • Propagate CachedInputTokenCount in OpenTelemetry telemetry #​7234 by @​stephentoub (co-authored by @​Copilot)
  • Categorize MEAI001 experimental APIs #​7116 by @​jeffhandley (co-authored by @​Copilot)
  • MEAI: Update Experimental / Preview Features #​7235 by @​jeffhandley
  • ToChatResponse: Merge AdditionalProperties into ChatMessage instead of ChatResponse #​7194 by @​stephentoub (co-authored by @​Copilot)
  • Fix FunctionInvokingChatClient to respect ChatOptions.Tools modifications by function tools #​7218 by @​stephentoub (co-authored by @​Copilot)
  • Fix FunctionInvokingChatClient invoke_agent span detection with exact match or space delimiter #​7224 by @​stephentoub (co-authored by @​Copilot)
  • Fix approval request/response correlation in FunctionInvokingChatClient #​7261 by @​stephentoub (co-authored by @​Copilot)
  • Fix DataUriParser to default to text/plain;charset=US-ASCII per RFC 2397 #​7247 by @​stephentoub (co-authored by @​Copilot)
  • Fix NRT resolution for AIFunction parameters #​7200 by @​eiriktsarpalis
  • Preserve extra JSON schema properties in ToolJson serialization #​7250 by @​stephentoub (co-authored by @​Copilot)
  • Fix token metric unit to use UCUM format {token} #​7241 by @​stephentoub
  • Fix OpenAI responses streaming to preserve encrypted reasoning content #​7266 by @​stephentoub
  • Update OpenAIResponsesChatClient to handle streaming code interpreter content #​7267 by @​stephentoub

Diagnostics, Health Checks, and Resource Monitoring

  • [5752] FakeLogCollector waiting capabilities #​6228 by @​Demo30
  • Bring new cpu.requests formula from Kubernetes #​7239 by @​amadeuszl

Service Discovery

... (truncated)

10.2.0

What's Changed

New Contributors

Full Changelog: dotnet/extensions@v10.1...v10.2.0

10.1.0

What's Changed

10.0.0

What's Changed

9.10.0

What's Changed

New Contributors

9.9.0

Highlights

AI

  • Abstractions for remote MCP servers; response/approval flow support via new experimental types
  • Function approvals via new experimental types (e.g., ApprovalRequiredAIFunction, user input/approval request & response content).
  • Reasoning text streaming for OpenAI Responses ChatClient streaming.
  • AIFunction split into a base class to improve extensibility.
  • IChatReducer moved to Microsoft.Extensions.AI.Abstractions.
  • Updated to OpenAI 2.4.0 and genai standard convention 1.37.
  • Coalescing logic now treats ChatMessage.Role changes as new messages.
  • GetResponseAsync<T> now reads only the last message (bug fix).
  • OpenTelemetry ChatClient/EmbeddingGenerator logs raw additional properties (no key mangling).
  • Fixed empty annotated text chunk handling in streaming with OpenAI Assistants.

Telemetry & Diagnostics

  • HTTP diagnostics log query string params with proper redaction (emitted on url.query).
  • server.address telemetry emits host only (per OpenTelemetry semantic conventions).
  • Heuristics added to detect well-known model hosts.
  • Resource monitoring can consider Environment.CpuUsage.

New Contributors

Full Changelog: dotnet/extensions@v9.8.0...v9.9.0

9.8.0

What's Changed

9.7.2

Packages Released

What's Changed

  • Target .NET 8 for more stable runtime requirement by @​joelverhagen in #​6617

Full Changelog: dotnet/extensions@v9.7.1...v9.7.2

9.7.1

Packages Released

What's Changed

Full Changelog: dotnet/extensions@v9.7.0...v9.7.1

9.7.0

What's Changed

New Contributors

Full Changelog: dotnet/extensions@v9.6.0...v9.7.0

9.6.0

What's Changed

New Contributors

Full Changelog: dotnet/extensions@v9.5.0...v9.6.0

9.5.0

What's Changed

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration from 10.0.1 to 10.0.5.

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.UserSecrets from 10.0.1 to 10.0.5.

Release notes

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

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.VectorData.Abstractions from 9.7.0 to 10.0.1.

Release notes

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

10.0.1

Changes:

  • e90102079382d3fb0ffeac29ab7c6d2994a2948f .Net: Bump SK and MEVD versions for release (#​13630)
  • b36a327d76f398346ca6267a1e25ed193cc95bea .Net: Fix input checking in Cosmos NoSQL, Redis and Weaviate providers (#​13629)
  • e9641a9106ba6b67909d65b882f5cf8c292106c7 .Net: Fix column nullability in SQL MEVD providers (#​13622) [ #​12560 ]
  • b712ffc98ef24c3df1004b9be99a3e952adbcf8a Python: Bump py version to 1.40.0 for a release (#​13619)
  • 781881a34f433ed4aa3bcc54cae78be0b565e392 .Net: Deduplicate embedding generation management (#​13615) [ #​12508 ]
  • 429dd1c4c0408415387a61dc294ed1fe2412e60b Python: support (Azure) OpenAI realtime audio models (#​13291) [ #​13267 ]
  • 74d4310fd44bbe555eeba532d6c9edc8e160a879 .Net: Handle installation of pgvector on PostgreSQL (#​13600)
  • f077655fd6bcd586a927f406fa767dacf03e8c5c .Net: [MEVD] Add validation for mismatched collection key (#​13594) [ #​11355 ]
  • f59e3952300b9dd3eb7f42d67d6d1040dc7d7b86 .Net: [MEVD] Make PG schema nullable (#​13593) [ #​10853 ]
  • ea864bf6976f60ddff52d9a2dcae4eadda784cbd .Net: [MEVD] Support DateTime/DateTimeOffset/DateOnly/TimeOnly across providers (#​13569) [ #​11286, #​11086 ]
See More
  • 889807dfda389a7c98c897d820f45c898a80da99 .Net: Update Microsoft.Extensions.AI dependencies to 10.3.0 and OpenAI SDK to 2.8.0 (#​13544)
  • c086d0944259ab3f28ba16f1f984a3ab2fe4fc7d .Net: [MEVD] SQL Server approximate vector search (#​13573) [ #​13270 ]
  • 9f2dafca484b125626fdbcdaf108250373bc0bff .Net: [TINY] [MEVD] Remove SupportsMultipleKeys (#​13572)

This list of changes was auto generated.

10.0.0

Changes:

  • cec0cba23cc0ce6754d9c95efc4f29c2653a0e37 .Net: Bump SK to 1.7.2 and MEVD to 10.0.0 (#​13567)
  • c86a59ae04d0ca1ec74e784388f4a0c2edafcf50 .Net: Update Microsoft.SemanticKernel packages to 1.71.0 (#​13571) [ #​13570 ]
  • 8513c2ac00fbbd61af714e15a3ca4803db570d5b .Net: [MEVD] Cosmos NoSQL provider work on keys, partition keys and point reads (#​13550)
  • 91f795605e42f0dd03ed9cdfaf4ffd8bdb1ae553 .Net: Bumping - Version 1.71.0 (#​13552)
  • 1b8b08b0ee72e6a26494009e2724c38010bd0ea3 Remove unused workflow (#​13545)
  • c6f07d65f498dca5bb74fcc72f2f96d96e0c2fa4 .Net: Implement SQL Server hybrid search (#​13512) [ #​11080 ]
  • e8b4862d0372478bfe9a26f86e5010f033e7a098 .Net: [MEVD] Map DateTime to timestamptz on PostgreSQL (#​13514) [ #​10641 ]
  • 898b9fe6916623b59540995b3d579f959aa3332a Python: Bump urllib3 from 2.3.0 to 2.6.3 in /python (#​13496) [ urllib3/urllib3#​3743, urllib3/urllib3#​3752, urllib3/urllib3#​3734, #​3731, #​3743, #​3752, #​3734, #​3755, #​3747, #​3748, #​3750, #​3749, #​3746 ]
  • 31588993aed36faab226c1b4da5dc8df1a64faa3 Python: Bump azure-core from 1.36.0 to 1.38.0 in /python (#​13495) [ #​44084, #​44609, #​44590, #​44574, #​44398, #​44343, #​44328, #​43201, #​43435 ]
  • 0d283ea9add3040b62449786bf81a1c23c66ce04 Python: Version bump and dependency updates (#​13533)
See More
  • 7a74a262272fb89c3761e1301626ba3d19f9f990 .Net: Update DirectoryObjects.yml URL from dev to main branch (#​13526)
  • 07f55e34b70baf7624418eb567dd0c4b59ee7c77 Python: Bump authlib from 1.6.5 to 1.6.6 in /python (#​13489) [ authlib/authlib#​778, authlib/authlib#​842, authlib/authlib#​844, #​844, #​778, #​743 ]
  • 6a8864f7799d87dc75f3d03770f0fe47f81e0832 Python: Bump virtualenv from 20.35.4 to 20.36.1 in /python (#​13491) [ pypa/virtualenv#​3011, pypa/virtualenv#​3013, pypa/virtualenv#​2981, pypa/virtualenv#​2982, pypa/virtualenv#​2989, pypa/virtualenv#​2990, pypa/virtualenv#​2996, pypa/virtualenv#​3001, pypa/virtualenv#​3002, pypa/virtualenv#​3007, pypa/virtualenv#​3006, pypa/virtualenv#​3008, #​3013, #​3011, #​3008, #​3, #​3007, #​2997, #​3001 ]
  • c2881501bc81032cc35d0a5c0af7720998416559 Python: Bump python-multipart from 0.0.20 to 0.0.22 in /python (#​13493) [ ludex/python-multipart#​216, ludex/python-multipart#​203, #​216, #​222, #​221, #​219, #​218, #​217, #​214, #​212, #​210 ]
  • 1a0caff234e24c6ea603185f281cfa790ab03346 Python: Bump aiohttp from 3.13.2 to 3.13.3 in /python (#​13494)
  • 4b499433e28252551f218da50a383c1797141c76 Python: Bump protobuf from 5.29.5 to 5.29.6 in /python (#​13513) [ protocolbuffers/protobuf#​25296, protocolbuffers/protobuf#​25161, #​25168, #​24115, #​23369, #​15633 ]
  • 1dcfda04aecbe385062ef1a6d661ab2ffc4d67e5 Python: Bump nbconvert from 7.16.6 to 7.17.0 in /python (#​13528) [ #​2227, #​2264, #​2261, #​2228, #​2226, #​2267, #​2238, #​2237, #​2231, #​2229, #​2224, #​2221, #​2232 ]
  • d6d4f3bc124b998da16e9e20460d9dd89a15fbbe Python: refinement of filtering (#​13505)
  • c4d0a623f22a9a138e98759127525ce9d47d3607 .Net: Update Microsoft.SemanticKernel packages from 1.68.0 to 1.70.0 (#​13524) [ #​13523 ]
  • b0d621f2a682f4d6915c4a9b44384353cbbfdbe9 .Net: Implement PostgreSQL hybrid search (#​13502) [ #​13501, #​11084, #​10359 ]
  • 7d7a6494e55b1ceb65b32bcee2e9faeb4d0c0fd8 .Net: [MEVD] Implement support for score threshold (#​13501) [ #​9566 ]
  • 838b9511723b32e34956370313d9466045f9a453 Python: Bump Python version to 1.39.3 for a release (#​13503)
  • b6f95e2c453dfae0ca41be738c30c73517c2795f Python: Add class validation for Dapr Runtime step loading (#​13499)
  • cbb1f219d072c1266e0acd4c7694482c9ae64a7c .Net: [MEVD] Introduce FilterTranslatorBase and remove duplication (#​13485)
  • a3be1fd29946a855adccba98f4360caf90273890 Bump actions/setup-dotnet from 4 to 5 (#​13137) [ actions/setup-dotnet#​654, actions/setup-dotnet#​622, actions/setup-dotnet#​591, actions/setup-dotnet#​594, actions/setup-dotnet#​639, actions/setup-dotnet#​641, actions/setup-dotnet#​652, actions/setup-dotnet#​662, actions/setup-dotnet#​647, actions/setup-dotnet#​572, actions/setup-dotnet#​566, dotnet/install-scripts#​559, actions/setup-dotnet#​615, actions/setup-dotnet#​587, actions/setup-dotnet#​585, actions/setup-dotnet#​586, actions/setup-dotnet#​590, actions/setup-dotnet#​592, actions/setup-dotnet#​596, #​654, #​662, #​652, #​641, #​639, #​594, #​591, #​647, #​622 ]
  • 8f301a1879591b7b849eefc768ca6498b495872a Bump mdast-util-to-hast from 13.2.0 to 13.2.1 in /dotnet/samples/Demos/ProcessWithCloudEvents/ProcessWithCloudEvents.Client (#​13409)
  • 33e58829a13b295067ed0fccd0a285a88d7d825c .Net: Bump form-data from 4.0.2 to 4.0.4 in /dotnet/samples/Demos/ProcessFrameworkWithSignalR (#​12979) [ #​577 ]
  • 1b9d5f142ce5d8d14c15a24fc69aa6a59597309c Bump vite from 6.2.7 to 6.4.1 in /dotnet/samples/Demos/ProcessFrameworkWithSignalR/src/ProcessFramework.Aspire.SignalR.ReactFrontend (#​13388) [ #​19878, #​19805, #​19836, #​19793, #​19792, #​19794, #​19828 ]
  • d3ac002ac9c44725f0279124eb47213c726f0252 .Net: Remove old MEVD integration tests (#​13484) [ #​12506 ]
  • 5b27a727a2190d8c251f17e0a0fbb78a3c59d96f Python: Add file upload security controls to SessionsPythonPlugin (#​13478)
  • af0761c69e4497fd759b616206899c106f0fa710 .Net: Adding copilot cli to the codespace definition (#​13479)
  • 7918395b47efba61624141f27d9848df559de79e .Net: [MEVD] Implement key auto-generation (#​13466) [ #​11485 ]
  • fe11ab6ab5452d49d5acf2a5f17a3852dab6a2e0 .Net: [MEVD] Support .Any(x => x.Contains(...)) in filters (#​13471) [ #​13470, #​13152 ]
  • 5794549af7a6908a8ad4c957f72ad6df52efb7fa .Net: [MEVD] Ensure identifiers are properly quoted (#​13470) [ #​12161 ]
  • b0a185b7fa521cd0c0aaa2e6eade297b8909c18f .Net: ItCanReturnImageUrlAsync test is flakey so skipping (#​13472)
  • 3ce1a84d3b3b66a4a3379ce706137e68c982527a .Net: Use testcontainer for SQL Server 2025 (#​13465)
  • 4e055e8fdf065e262d924830f121617da7d237de .Net: Add agentic tool registration guide to SK -> AF migration. (#​13464) [ microsoft/agent-framework#​3276 ]
  • 1fe41e17a90e002aa7f4f834f7ebd9475d80803c .Net: Version 1.70.0 (#​13468)
  • 9118743eac7600c629858d25ad2ce668f3ac3b5d .Net: Add ThoughtSignature support for Gemini function calling (#​13418) [ #​13417 ]
  • e696dc7d525b5d7dc664318bbdee6d3e008a3db5 Python: Add directory allowlist configuration for SessionsPythonTool file (#​13467)
  • f9870641542af1bc0d9dc75ace8ccc5b6321027f .Net: Use official Google.GenAI IChatClient implementation (#​13404)
  • 72bc02551fdf4c00bb2315856db5548704166438 Python: added allowed_domains to HttpPlugin (#​13462)
  • 3b61c786c9b4f9a8224f39f647859fd51af4c902 .Net: Version 1.69.0 (#​13460)
  • 1e1fb14d68eb67151473fe8a8e0cc0aef9f57ba1 Python: Bump Python version to 1.39.2 for a release (#​13459)
    ... (truncated)

Commits viewable in compare view.

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 commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase ...

Description has been truncated

Bumps Azure.Identity from 1.17.1 to 1.19.0
Bumps Microsoft.Extensions.AI.OpenAI from 9.5.0-preview.1.25265.7 to 10.4.0
Bumps Microsoft.Extensions.Configuration from 10.0.1 to 10.0.5
Bumps Microsoft.Extensions.Configuration.UserSecrets from 10.0.1 to 10.0.5
Bumps Microsoft.Extensions.VectorData.Abstractions from 9.7.0 to 10.0.1

---
updated-dependencies:
- dependency-name: Azure.Identity
  dependency-version: 1.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dotnet
- dependency-name: Microsoft.Extensions.AI.OpenAI
  dependency-version: 10.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dotnet
- dependency-name: Microsoft.Extensions.Configuration
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet
- dependency-name: Microsoft.Extensions.Configuration.UserSecrets
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dotnet
- dependency-name: Microsoft.Extensions.VectorData.Abstractions
  dependency-version: 10.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dotnet
...

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 Mar 18, 2026
@dependabot dependabot bot requested a review from gewarren as a code owner March 18, 2026 20:02
@dependabot dependabot bot added dependencies Pull requests that update a dependency file .NET Pull requests that update .net code labels Mar 18, 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.

0 participants