Skip to content

[C#] bump: (deps): Bump the production group across 1 directory with 4 updates#1972

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/dotnet/packages/Microsoft.TeamsAI/production-6d14f9e933
Closed

[C#] bump: (deps): Bump the production group across 1 directory with 4 updates#1972
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/dotnet/packages/Microsoft.TeamsAI/production-6d14f9e933

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Sep 2, 2024

Bumps the production group with 4 updates in the /dotnet/packages/Microsoft.TeamsAI directory: Microsoft.Identity.Client, Microsoft.NET.Test.Sdk, OpenAI and Microsoft.ML.Tokenizers.

Updates Microsoft.Identity.Client from 4.61.3 to 4.64.0

Release notes

Sourced from Microsoft.Identity.Client's releases.

4.64.0

New Features

Bug Fixes

4.63.0

New Features

Bug Fixes

4.62.0

New Features

Bug Fixes

Changelog

Sourced from Microsoft.Identity.Client's changelog.

4.64.0

New Features

Bug Fixes

4.63.0

New Features

Bug Fixes

4.62.0

New Features

Bug Fixes

Commits
  • 8fe46a8 Changing the handling of client claims to use JSON (#4886)
  • 867f5cf Disabling arlinton test case for "WithSecret_TestAsync" (#4906)
  • 4ad6276 Update interop package to 0.16.2 (#4903)
  • c7eb345 Changed consent handler to find element by name instead of ID (#4897)
  • 5ff5d21 Remove the links to Azure SDK for managed identity since these will be update...
  • 6956f26 Update the logic to add file based detection for azure arc for linux env (#4856)
  • adf5dab Enabling ROPC on CCA (#4799)
  • 89dba0a Update CHANGELOG for MSAL 4.63.0 Release (#4885)
  • fd0ffad Update KerberosConsole.csproj to use latest Kerberos.NET package (#4883)
  • 978bc89 Update with NuGet README (#4865)
  • Additional commits viewable in compare view

Updates Microsoft.NET.Test.Sdk from 17.10.0 to 17.11.0

Release notes

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

v17.11.0

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v17.10.0...v17.11.0-release-24352-06

v17.11.0-release-24373-02

What's Changed

... (truncated)

Commits

Updates OpenAI from 2.0.0-beta.7 to 2.0.0-beta.10

Release notes

Sourced from OpenAI's releases.

OpenAI_2.0.0-beta.10

What's Changed

Full Changelog: openai/openai-dotnet@OpenAI_2.0.0-beta.9...OpenAI_2.0.0-beta.10

OpenAI_2.0.0-beta.9

What's Changed

New Contributors

Full Changelog: openai/openai-dotnet@OpenAI_2.0.0-beta.8...OpenAI_2.0.0-beta.9

OpenAI_2.0.0-beta.8

What's Changed

... (truncated)

Changelog

Sourced from OpenAI's changelog.

2.0.0-beta.10 (2024-08-26)

Breaking Changes

  • Renamed AudioClient's GenerateSpeechFromText methods to simply GenerateSpeech. (d84bf54)
  • Changed the type of OpenAIFileInfo's SizeInBytes property from long? to int?. (d84bf54)

Bugs Fixed

  • Fixed a newly introduced bug (#185) where providing OpenAIClientOptions to a top-level OpenAIClient did not carry over to scenario clients (e.g. ChatClient) created via that top-level client (d84bf54)

Other Changes

  • Removed the version path parameter "v1" from the default endpoint URL. (d84bf54)

2.0.0-beta.9 (2024-08-23)

Features Added

  • Added support for the new structured outputs response format feature, which enables chat completions, assistants, and tools on each of those clients to provide a specific JSON Schema that generated content should adhere to. (3467b53)
    • To enable top-level structured outputs for response content, use ChatResponseFormat.CreateJsonSchemaFormat() and AssistantResponseFormat.CreateJsonSchemaFormat() as the ResponseFormat in method options like ChatCompletionOptions
    • To enable structured outputs for function tools, set StrictParameterSchemaEnabled to true on the tool definition
    • For more information, please see the new section in readme.md
  • Chat completions: the request message types of AssistantChatMessage, SystemChatMessage, and ToolChatMessage now support array-based content part collections in addition to simple string input. (3467b53)
  • Added the following model factories (static classes that can be used to instantiate OpenAI models for mocking in non-live test scenarios):
    • OpenAIAudioModelFactory in the OpenAI.Audio namespace (3284295)
    • OpenAIEmbeddingsModelFactory in the OpenAI.Embeddings namespace (3284295)
    • OpenAIFilesModelFactory in the OpenAI.Files namespace (b1ce397)
    • OpenAIImagesModelFactory in the OpenAI.Images namespace (3284295)
    • OpenAIModelsModelFactory in the OpenAI.Models namespace (b1ce397)
    • OpenAIModerationsModelFactory in the OpenAI.Moderations namespace (b1ce397)

Breaking Changes

  • Removed client constructors that do not explicitly take an API key parameter or an endpoint via an OpenAIClientOptions parameter, making it clearer how to appropriately instantiate a client. (13a9c68)
  • Removed the endpoint parameter from all client constructors, making it clearer that an alternative endpoint must be specified via the OpenAIClientOptions parameter. (13a9c68)
  • Removed OpenAIClient's Endpoint protected property. (13a9c68)
  • Made OpenAIClient's constructor that takes a ClientPipeline parameter protected internal instead of just protected. (13a9c68)
  • Renamed the User property in applicable Options classes to EndUserId, making its purpose clearer. (13a9c68)

Bugs Fixed

  • The Assistants namespace VectorStoreCreationHelper type now properly includes a ChunkingStrategy property. (3467b53)

Other Changes

  • ChatCompletion.ToString() will no longer throw an exception when no content is present, as is the case for tool calls. Additionally, if a tool call is present with no content, ToString() will return the serialized form of the first available tool call. (3467b53)

2.0.0-beta.8 (2024-07-31)

... (truncated)

Commits
  • 9664ef8 2.0.0-beta.10 prep part 2 (#189)
  • d84bf54 Preparation for small 2.0.0-beta.10 release (code updates) (#186)
  • 4897e23 add structured outputs information to readme (#181)
  • 65a9468 Prepare 2.0.0-beta.9 release (#168)
  • 3467b53 prep files for release (#180)
  • 3ce26bd Downgrade the diagnostics source package to fix version mismatch issues (#174)
  • 13a9c68 Remove constructors that do not explicitly take a credential parameter (#175)
  • b1ce397 [ModelFactory] Implemented Files, Models, and Moderations factories (#172)
  • 32bfd2b Temporarily override 'W' format check in deserialization (#171)
  • 065e51c Fix Telemetry and Assistant tests (#165)
  • Additional commits viewable in compare view

Updates Microsoft.ML.Tokenizers from 0.22.0-preview.24271.1 to 0.22.0-preview.24378.1

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

…4 updates

Bumps the production group with 4 updates in the /dotnet/packages/Microsoft.TeamsAI directory: [Microsoft.Identity.Client](https://github.com/AzureAD/microsoft-authentication-library-for-dotnet), [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest), [OpenAI](https://github.com/openai/openai-dotnet) and [Microsoft.ML.Tokenizers](https://github.com/dotnet/machinelearning).


Updates `Microsoft.Identity.Client` from 4.61.3 to 4.64.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.61.3...4.64.0)

Updates `Microsoft.NET.Test.Sdk` from 17.10.0 to 17.11.0
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.10.0...v17.11.0)

Updates `OpenAI` from 2.0.0-beta.7 to 2.0.0-beta.10
- [Release notes](https://github.com/openai/openai-dotnet/releases)
- [Changelog](https://github.com/openai/openai-dotnet/blob/main/CHANGELOG.md)
- [Commits](openai/openai-dotnet@OpenAI_2.0.0-beta.7...OpenAI_2.0.0-beta.10)

Updates `Microsoft.ML.Tokenizers` from 0.22.0-preview.24271.1 to 0.22.0-preview.24378.1
- [Release notes](https://github.com/dotnet/machinelearning/releases)
- [Commits](https://github.com/dotnet/machinelearning/commits)

---
updated-dependencies:
- dependency-name: Microsoft.Identity.Client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: OpenAI
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production
- dependency-name: Microsoft.ML.Tokenizers
  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 aacebo as a code owner September 2, 2024 19:13
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Sep 2, 2024
@dependabot dependabot Bot requested a review from corinagum as a code owner September 2, 2024 19:13
@dependabot dependabot Bot added the dotnet Change/fix applies to dotnet. If all three, use the 'JS & dotnet & Python' label label Sep 2, 2024
@dependabot dependabot Bot requested a review from a team September 2, 2024 19:13
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Sep 9, 2024

Superseded by #1994.

@dependabot dependabot Bot closed this Sep 9, 2024
@dependabot dependabot Bot deleted the dependabot/nuget/dotnet/packages/Microsoft.TeamsAI/production-6d14f9e933 branch September 9, 2024 19:16
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.

0 participants