Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[C#] bump: (deps): Bump the production group in /dotnet/packages/Microsoft.TeamsAI with 8 updates #1213

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 29, 2024

#minor

Bumps the production group in /dotnet/packages/Microsoft.TeamsAI with 8 updates:

Package From To
Azure.AI.ContentSafety 1.0.0-beta.1 1.0.0
Azure.AI.OpenAI 1.0.0-beta.9 1.0.0-beta.12
JsonSchema.Net 5.3.1 5.5.1
Microsoft.Bot.Builder 4.21.1 4.22.0
Microsoft.Bot.Builder.Dialogs 4.21.1 4.22.0
Microsoft.Bot.Builder.Integration.AspNet.Core 4.21.1 4.22.0
Microsoft.Bot.Builder 4.21.1 4.22.0
Microsoft.Identity.Client 4.57.0 4.59.0
SharpToken 1.2.12 1.2.14

Updates Azure.AI.ContentSafety from 1.0.0-beta.1 to 1.0.0

Release notes

Sourced from Azure.AI.ContentSafety's releases.

Azure.AI.ContentSafety_1.0.0

1.0.0 (2023-12-15)

Features Added

  • Support Microsoft Entra ID Authentication
  • Support 8 severity level for AnalyzeText

Breaking Changes

Contract change for AnalyzeText, AnalyzeImage, Blocklist management related methods

AnalyzeText

  • AnalyzeTextOptions
    • Renamed BreakByBlocklists to HaltOnBlocklistHit
    • Added AnalyzeTextOutputType
  • AnalyzeTextResult
    • Renamed BlocklistsMatchResults to BlocklistsMatch
    • Replaced TextAnalyzeSeverityResult by TextCategoriesAnalysis

AnalyzeImage

  • AnalyzeImageOptions
    • Replaced ImageData by ContentSafetyImageData
    • Added AnalyzeImageOutputType
  • AnalyzeImageResult
    • Replaced ImageAnalyzeSeverityResult by ImageCategoriesAnalysis

Blocklist management

  • Added BlocklistAsyncClient
  • Renamed AddBlockItemsOptions to AddOrUpdateTextBlocklistItemsOptions
  • Renamed AddBlockItemsResult to AddOrUpdateTextBlocklistItemsResult
  • Renamed RemoveBlockItemsOptions to RemoveTextBlocklistItemsOptions
  • Renamed TextBlockItemInfo to TextBlocklistItem
Commits
  • 62633d4 fix discriminator in arc-scvmm (#40683)
  • 80eec4e Add ability to use non Json interface for json format (#40646)
  • 5dd1605 Update Generator Version 3.0.0-beta.20231211.1 (#40702)
  • 13e4829 [Core] Remove netcoreapp2.1 and net5.0 targets (#40635)
  • c47ab4d Add an opt-in AOT regression check to the CI pipeline (#40629)
  • d11bb58 Support "functions" SDKType (#40695)
  • 5aa3659 Update ConfidentialLedgerClient to pass VerifyConnection flag (#40602)
  • 5235895 [AzureMonitorLiveMetrics] poc refactor metrics (#40669)
  • d810209 [Azure Content Safety] Update readme and changelog. (#40607)
  • 609f3e4 Increment package version after release of Azure.ResourceManager.Maintenance ...
  • Additional commits viewable in compare view

Updates Azure.AI.OpenAI from 1.0.0-beta.9 to 1.0.0-beta.12

Release notes

Sourced from Azure.AI.OpenAI's releases.

Azure.AI.OpenAI_1.0.0-beta.12

1.0.0-beta.12 (2023-12-15)

Like beta.11, beta.12 is another release that brings further refinements and fixes. It remains based on the 2023-12-01-preview service API version for Azure OpenAI and does not add any new service capabilities.

Features Added

Updates for using streaming tool calls:

  • A new .NET-specific StreamingToolCallUpdate type has been added to better represent streaming tool call updates when using chat tools.
    • This new type includes an explicit ToolCallIndex property, reflecting index in the REST schema, to allow resilient deserialization of parallel function tool calling.
  • A convenience constructor has been added for ChatRequestAssistantMessage that can automatically populate from a prior ChatResponseMessage when using non-streaming chat completions.
  • A public constructor has been added for ChatCompletionsFunctionToolCall to allow more intuitive reconstruction of ChatCompletionsToolCall instances for use in ChatRequestAssistantMessage instances made from streaming responses.

Other additions:

  • To facilitate reuse of user message contents, ChatRequestUserMessage now provides a public Content property (string) as well as a public MultimodalContentItems property (IList<ChatMessageContentItem).
    • Content is the conventional plain-text content and will be populated as non-null when the a ChatRequestUserMessage() constructor accepting a string is used to instantiate the message.
    • MultimodalContentItems is the new compound content type, currently only usable with gpt-4-vision-preview, that allows hybrid use of text and image references. It will be populated when an appropriate ChatRequestUserMessage() constructor accepting a collection of ChatMessageContentItem instances is used.
    • Role is also restored to common visibility to ChatRequestUserMessage.

Breaking Changes

  • The type of ToolCallUpdate on StreamingChatCompletionsUpdate has been changed from the non-streaming ChatCompletionsToolCall to the new StreamingToolCallUpdate type. The conversion is straightforward:
    • ToolCallUpdate.Id remains unchanged.
    • Instead of casting ToolCallUpdate to ChatCompletionsFunctionToolCall, cast it to StreamingToolCallUpdate.
    • Update cast instance use of functionToolCallUpdate.Arguments to accumulate functionToolCallUpdate.ArgumentsUpdate.
  • Removed the parameterized constructor of the ChatCompletionsOptions class that only received the messages as a parameter in favor of the parameterized constructor that receives the deployment name as well. This makes it consistent with the implementation of other Options classes.
  • Removed the setter of the Input property of the EmbeddingsOptions class as per the guidelines for collection properties.

Bugs fixed

Azure.AI.OpenAI_1.0.0-beta.11

1.0.0-beta.11 (2023-12-07)

This is a fast-following bug fix update to address some of the biggest issues reported by the community. Thank you sharing your experiences!

Breaking Changes

  • The type of ChatCompletionsOptions.ToolChoice has been updated from BinaryData to a new ChatCompletionsToolChoice type. Please use ChatCompletionsToolChoice.None, ChatCompletionsToolChoice.Auto, or provide a reference to a function or function tool definition to migrate.

... (truncated)

Commits
  • ab0ae0d Azure OpenAI: changelog.md update for beta.12 release (#40815)
  • e973301 [Azure OpenAI] Revamp customizations (#40697)
  • 81f5d2b [Azure OpenAI] Revamp customizations in the audio API (#40674)
  • 899b608 Add AOT compatibility checks documentation (#40762)
  • a396f21 Increment package version after release of Azure.ResourceManager.Redis (#40803)
  • 3cc17fc Increment package version after release of Azure.ResourceManager.EventGrid (#...
  • 33a6417 Generate Eventgrid SDK for API version 2023-12-15-preview (#40714)
  • da78e04 Azure Redis .Net SDK update for new api v2023-08-01 (#39230)
  • 0519b41 Update AutoRest C# version to 3.0.0-beta.20231214.1 (#40794)
  • f6a5a36 Increment package version after release of Microsoft.Azure.Core.NewtonsoftJso...
  • Additional commits viewable in compare view

Updates JsonSchema.Net from 5.3.1 to 5.5.1

Commits

Updates Microsoft.Bot.Builder from 4.21.1 to 4.22.0

Release notes

Sourced from Microsoft.Bot.Builder's releases.

Bot Framework DotNet SDK 4.22.0

This is the January 2024 4.22.0 release for the DotNet SDK. This contains a security fixes Sharepoint support, and ASE improvements.

What's Changed

Commits

Updates Microsoft.Bot.Builder.Dialogs from 4.21.1 to 4.22.0

Release notes

Sourced from Microsoft.Bot.Builder.Dialogs's releases.

Bot Framework DotNet SDK 4.22.0

This is the January 2024 4.22.0 release for the DotNet SDK. This contains a security fixes Sharepoint support, and ASE improvements.

What's Changed

Commits

Updates Microsoft.Bot.Builder.Integration.AspNet.Core from 4.21.1 to 4.22.0

Release notes

Sourced from Microsoft.Bot.Builder.Integration.AspNet.Core's releases.

Bot Framework DotNet SDK 4.22.0

This is the January 2024 4.22.0 release for the DotNet SDK. This contains a security fixes Sharepoint support, and ASE improvements.

What's Changed

Commits

Updates Microsoft.Bot.Builder from 4.21.1 to 4.22.0

Release notes

Sourced from Microsoft.Bot.Builder's releases.

Bot Framework DotNet SDK 4.22.0

This is the January 2024 4.22.0 release for the DotNet SDK. This contains a security fixes Sharepoint support, and ASE improvements.

What's Changed

Commits

Updates Microsoft.Identity.Client from 4.57.0 to 4.59.0

Release notes

Sourced from Microsoft.Identity.Client's releases.

4.59.0

New Features

  • Removed support for deprecated Xamarin.Android 9 and Xamarin.Android 10 frameworks. MSAL.NET packages will no longer include monoandroid90 and monoandroid10.0 binaries and instead include monoandroid12.0. Xamarin.Android apps should now target framework version 12 (corresponding to Android API level 31) or above. See 3530.
  • Removed support for deprecated .NET 4.5 framework. MSAL.NET packages will no longer include net45 binary. Existing applications should target at least .NET 4.6.2. See 4314.

Bug Fixes

  • When public client apps persist cache data on Linux platforms, exceptions are now thrown, instead of just logged. This behavior is now consistent with Windows and Mac cache accessors. See 4493.
  • Downgraded System.Diagnostics.DiagnosticSource dependency to 6.0.1 from 7.0.2 to enable apps to run in .NET 6 in-process Azure Functions. Added extra checks to prevent crashing if OpenTelemetry dependencies cannot be used in the app's runtime. See 4456.
  • MSAL now throws MsalServiceException instead of MsalManagedIdentityException in managed identity flows. See 4483.
  • Background proactive token refresh operation can now be cancelled using the cancelation token passed into the parent acquire token call. See 4473.
  • Fixed SemaphoreFullException happening in managed identity flows. See 4472.
  • Improved exception messages when using non-RSA certificates. See 4407.
  • Fixed a scenario when the same tokens are cached under different cache keys when an identity provider sends scopes in a different order. See 4474.

4.58.1

New Features

  • Added WithForceRefresh support for silent flows using the Windows broker. See 4457.

Bug Fixes

  • Fixed a bug when a x-ms-pkeyauth HTTP header was incorrectly sent on Mac and Linux platforms. See 4445.
  • Fixed an issue with client capabilities and claims JSON not being merged correctly. See 4447.
  • MSAL can now be used in .NET 8 applications which use native AOT configuration binder source generator. See 4453.
  • Fixed an issue with sending an incorrect operating system descriptor in silent flows on Mac. See 4444.

4.58.0

New Features

  • Removed support for deprecated .NET 4.6.1 framework and added .NET 4.6.2 support. MSAL.NET packages will no longer include net461 binary. Existing .NET 4.6.1 apps will now reference .NET Standard 2.0 MSAL binary. See 4315.
  • MSAL.NET repository now supports Central Package Management. See 3434.
  • Added instrumentation to collect metrics with Open Telemetry. Aggregated metrics consist of successful and failed token acquisition calls, total request duration, duration in cache, and duration in a network call. See 4229.

Bug Fixes

  • Resolved the issue with dual-headed accounts that share the same UPN for both, Microsoft (MSA) and Microsoft Entra ID (Azure AD) accounts. See 4425.
  • MSAL now correctly falls back to use local cache if broker fails to return a result for AcquireTokenSilent calls. See 4395.
  • Fixed a bug when the cache level in the telemetry was not correctly set to L1 Cache when in-memory cache was used. See 4414.
  • Deprecated WithAuthority on the request builders. Set the authority on the application builders. Use WithTenantId or WithTenantIdFromAuthority on the request builder to update the tenant ID. See 4406.
  • Fixed an issue with the Windows broker dependencies when the app was targetting NativeAOT on Windows. See 4424.
  • Updated Microsoft.Identity.Client.NativeInterop reference to version 0.13.14, which includes bug fixes and stability improvements. See 4439.
Changelog

Sourced from Microsoft.Identity.Client's changelog.

4.59.0

New Features

  • Removed support for deprecated Xamarin.Android 9 and Xamarin.Android 10 frameworks. MSAL.NET packages will no longer include monoandroid90 and monoandroid10.0 binaries and instead include monoandroid12.0. Xamarin.Android apps should now target framework version 12 (corresponding to Android API level 31) or above. See 3530.
  • Removed support for deprecated .NET 4.5 framework. MSAL.NET packages will no longer include net45 binary. Existing applications should target at least .NET 4.6.2. See 4314.

Bug Fixes

  • When public client apps persist cache data on Linux platforms, exceptions are now thrown, instead of just logged. This behavior is now consistent with Windows and Mac cache accessors. See 4493.
  • Downgraded System.Diagnostics.DiagnosticSource dependency to 6.0.1 from 7.0.2 to enable apps to run in .NET 6 in-process Azure Functions. Added extra checks to prevent crashing if OpenTelemetry dependencies cannot be used in the app's runtime. See 4456.
  • MSAL now throws MsalServiceException instead of MsalManagedIdentityException in managed identity flows. See 4483.
  • Background proactive token refresh operation can now be cancelled using the cancelation token passed into the parent acquire token call. See 4473.
  • Fixed SemaphoreFullException happening in managed identity flows. See 4472.
  • Improved exception messages when using non-RSA certificates. See 4407.
  • Fixed a scenario when the same tokens are cached under different cache keys when an identity provider sends scopes in a different order. See 4474.

4.58.1

New Features

  • Added WithForceRefresh support for silent flows using the Windows broker. See 4457.

Bug Fixes

  • Fixed a bug when a x-ms-pkeyauth HTTP header was incorrectly sent on Mac and Linux platforms. See 4445.
  • Fixed an issue with client capabilities and claims JSON not being merged correctly. See 4447.
  • MSAL can now be used in .NET 8 applications which use native AOT configuration binder source generator. See 4453.
  • Fixed an issue with sending an incorrect operating system descriptor in silent flows on Mac. See 4444.

4.58.0

New Features

  • Removed support for deprecated .NET 4.6.1 framework and added .NET 4.6.2 support. MSAL.NET packages will no longer include net461 binary. Existing .NET 4.6.1 apps will now reference .NET Standard 2.0 MSAL binary. See 4315.
  • MSAL.NET repository now supports Central Package Management. See 3434.
  • Added instrumentation to collect metrics with Open Telemetry. Aggregated metrics consist of successful and failed token acquisition calls, total request duration, duration in cache, and duration in a network call. See 4229

Bug Fixes

  • Resolved the issue with dual-headed accounts that share the same UPN for both, Microsoft (MSA) and Microsoft Entra ID (Azure AD) accounts. See 4425.
  • MSAL now correctly falls back to use local cache if broker fails to return a result for AcquireTokenSilent calls. See 4395.
  • Fixed a bug when the cache level in the telemetry was not correctly set to L1 Cache when in-memory cache was used. See 4414.
  • Deprecated WithAuthority on the request builders. Set the authority on the application builders. Use WithTenantId or WithTenantIdFromAuthority on the request builder to update the tenant ID. See 4406.
  • Fixed an issue with the Windows broker dependencies when the app was targetting NativeAOT on Windows. See 4424.
  • Updated Microsoft.Identity.Client.NativeInterop reference to version 0.13.14, which includes bug fixes and stability improvements. See 4439.
Commits
  • 25a286e Low level Linux libsecret operations should throw exceptions (#4497)
  • 4c60cef Fix performance tests project and improvements (#4491)
  • f7f2faf Resolve CS0108 Warning by Explicitly Hiding Base Member in MsalManage… (#4500)
  • e345603 remove non existing maui status solution item (#4501)
  • 65d4064 Adding tests to OneBranch Build (#4319)
  • be489b5 Revert "update langVersion to 12" (#4499)
  • 38a9423 [BUILDS] Add Java SDK Version 11 in packaging step to Resolve Xamarin Build F...
  • cce9111 update langVersion to 12 (#4494)
  • ea376b4 Downgrade System.Diagnostics.DiagnosticSource to v6 and add a check if OpenTe...
  • 75dce4e Remove MonoAndroid9 and deprecated xamarin dev apps (#4481)
  • Additional commits viewable in compare view

Updates SharpToken from 1.2.12 to 1.2.14

Release notes

Sourced from SharpToken's releases.

Release 1.2.14

Release of version 1.2.14

Release 1.2.13

Release of version 1.2.13

Commits

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 will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the production group in /dotnet/packages/Microsoft.TeamsAI with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [Azure.AI.ContentSafety](https://github.com/Azure/azure-sdk-for-net) | `1.0.0-beta.1` | `1.0.0` |
| [Azure.AI.OpenAI](https://github.com/Azure/azure-sdk-for-net) | `1.0.0-beta.9` | `1.0.0-beta.12` |
| [JsonSchema.Net](https://github.com/gregsdennis/json-everything) | `5.3.1` | `5.5.1` |
| [Microsoft.Bot.Builder](https://github.com/Microsoft/botbuilder-dotnet) | `4.21.1` | `4.22.0` |
| [Microsoft.Bot.Builder.Dialogs](https://github.com/Microsoft/botbuilder-dotnet) | `4.21.1` | `4.22.0` |
| [Microsoft.Bot.Builder.Integration.AspNet.Core](https://github.com/Microsoft/botbuilder-dotnet) | `4.21.1` | `4.22.0` |
| [Microsoft.Bot.Builder](https://github.com/Microsoft/botbuilder-dotnet) | `4.21.1` | `4.22.0` |
| [Microsoft.Identity.Client](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet) | `4.57.0` | `4.59.0` |
| [SharpToken](https://github.com/dmitry-brazhenko/SharpToken) | `1.2.12` | `1.2.14` |


Updates `Azure.AI.ContentSafety` from 1.0.0-beta.1 to 1.0.0
- [Release notes](https://github.com/Azure/azure-sdk-for-net/releases)
- [Commits](Azure/azure-sdk-for-net@Azure.AI.ContentSafety_1.0.0-beta.1...Azure.AI.ContentSafety_1.0.0)

Updates `Azure.AI.OpenAI` from 1.0.0-beta.9 to 1.0.0-beta.12
- [Release notes](https://github.com/Azure/azure-sdk-for-net/releases)
- [Commits](Azure/azure-sdk-for-net@Azure.AI.OpenAI_1.0.0-beta.9...Azure.AI.OpenAI_1.0.0-beta.12)

Updates `JsonSchema.Net` from 5.3.1 to 5.5.1
- [Commits](https://github.com/gregsdennis/json-everything/commits/schema-v5.5.1)

Updates `Microsoft.Bot.Builder` from 4.21.1 to 4.22.0
- [Release notes](https://github.com/Microsoft/botbuilder-dotnet/releases)
- [Changelog](https://github.com/microsoft/botbuilder-dotnet/blob/main/Changes.md)
- [Commits](microsoft/botbuilder-dotnet@4.21.1...4.22.0)

Updates `Microsoft.Bot.Builder.Dialogs` from 4.21.1 to 4.22.0
- [Release notes](https://github.com/Microsoft/botbuilder-dotnet/releases)
- [Changelog](https://github.com/microsoft/botbuilder-dotnet/blob/main/Changes.md)
- [Commits](microsoft/botbuilder-dotnet@4.21.1...4.22.0)

Updates `Microsoft.Bot.Builder.Integration.AspNet.Core` from 4.21.1 to 4.22.0
- [Release notes](https://github.com/Microsoft/botbuilder-dotnet/releases)
- [Changelog](https://github.com/microsoft/botbuilder-dotnet/blob/main/Changes.md)
- [Commits](microsoft/botbuilder-dotnet@4.21.1...4.22.0)

Updates `Microsoft.Bot.Builder` from 4.21.1 to 4.22.0
- [Release notes](https://github.com/Microsoft/botbuilder-dotnet/releases)
- [Changelog](https://github.com/microsoft/botbuilder-dotnet/blob/main/Changes.md)
- [Commits](microsoft/botbuilder-dotnet@4.21.1...4.22.0)

Updates `Microsoft.Identity.Client` from 4.57.0 to 4.59.0
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/blob/main/CHANGELOG.md)
- [Commits](AzureAD/microsoft-authentication-library-for-dotnet@4.57.0...4.59.0)

Updates `SharpToken` from 1.2.12 to 1.2.14
- [Release notes](https://github.com/dmitry-brazhenko/SharpToken/releases)
- [Commits](dmitry-brazhenko/SharpToken@1.2.12...1.2.14)

---
updated-dependencies:
- dependency-name: Azure.AI.ContentSafety
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production
- dependency-name: Azure.AI.OpenAI
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production
- dependency-name: JsonSchema.Net
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: Microsoft.Bot.Builder
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: Microsoft.Bot.Builder.Dialogs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: Microsoft.Bot.Builder.Integration.AspNet.Core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: Microsoft.Bot.Builder
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: Microsoft.Identity.Client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: SharpToken
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from singhk97 as a code owner January 29, 2024 19:33
@dependabot dependabot bot added dependencies Pull requests that update a dependency file dotnet Change/fix applies to dotnet. If all three, use the 'JS & dotnet & Python' label labels Jan 29, 2024
@dependabot dependabot bot requested a review from a team January 29, 2024 19:33
@aacebo aacebo merged commit 62b3efb into main Jan 29, 2024
14 checks passed
@aacebo aacebo deleted the dependabot/nuget/dotnet/packages/Microsoft.TeamsAI/production-84044dd260 branch January 29, 2024 20:04
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 dotnet Change/fix applies to dotnet. If all three, use the 'JS & dotnet & Python' label
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant