Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 5, 2025

This PR contains the following updates:

Package Change Age Confidence
Microsoft.Azure.WebJobs.Extensions.SignalRService (source) 1.12.02.1.0 age confidence

Release Notes

Azure/azure-sdk-for-net (Microsoft.Azure.WebJobs.Extensions.SignalRService)

v2.1.0

Compare Source

2.1.0 (2024-12-05)

This GA library release aligns functionality with the latest 2024-10-21 stable service API label.

[!NOTE]
For consistency and reliability, GA releases of the Azure.AI.OpenAI library will always map to stable Azure OpenAI service API versions. Because stable service API versions omit volatile surfaces such as beta features, GA library releases will also not contain the full set of preview functionality. To use beta and preview features, please use the latest prerelease version of the library.

Features Added

Chat

  • [GA] The 2024-10-21 API version brings GA AOAI support for streaming token usage in chat completions; Usage is now automatically populated in StreamingChatCompletionUpdate instances.
    • Note 1: this feature is not yet compatible when using On Your Data features (after invoking the .AddDataSource() extension method on ChatCompletionOptions)
    • Note 2: this feature is not yet compatible when using image input (a ChatMessageContentPart of Kind Image)
  • [GA] The AllowParalllelToolCalls property on ChatCompletionOptions, which can be set to false to disable the invocation of multiple tools on a single chat completion response, is now supported.
  • [GA] Structured outputs, via the use of ChatResponseFormat.CreateJsonSchemaFormat(), is now supported.
  • When using o1-preview and o1-mini models, max_completion_tokens may now be configured by calling the [Experimental] SetNewMaxCompletionTokensPropertyEnabled() extension method on ChatCompletionOptions.
    • This extension method will be removed in a future service API version, when it becomes unnecessary once all models support the max_completion_tokens property

Batch

The 2024-10-21 service API label introduces stable support for batch chat completions to Azure OpenAI. This library release exposes low-level support for batch:

  • AzureOpenAIClient's GetOpenAIFileClient() will now return a valid, configured instance of FileClient that supports uploading files with FileUploadPurpose.Batch. This can be used to upload the contents of a valid .jsonl file for batch processing.
  • AzureOpenAIClient's GetBatchClient() will now return a valid, configured instance of BatchClient that can produce a CreateBatchOperation given an uploaded file ID using protocol methods.
  • Strongly typed convenience surfaces for BatchClient will arrive in a future update.
Breaking Changes

[!NOTE]
GA library releases only permit breaking changes to items marked with an [Experimental] attribute and these changes will be minimized whenever possible.

  • [Experimental] GetBatchClient(string deploymentName) on AzureOpenAIClient is removed, as the Azure OpenAI batch API now aligns with OpenAI's in not using a deployment-based request URI path. Please use GetBatchClient(), instead.
  • [Expermental] the Uri property of type System.Uri in ChatCitation and ChatRetrivedDocument has been replaced by a Url property of type string. This contains the same information but properly handles document paths that don't conform to a valid RFC 3986 identifier.

v2.0.1

Compare Source

2.0.1 (2025-03-12)

Bugs Fixed
  • Fix SignalR trigger completion message serialization for dotnet-isolated worker.

v2.0.0

Compare Source

2.0.0 (2024-09-30)

This update marks the first stable library version for Azure.AI.OpenAI. It snaps its dependency to OpenAI's matched 2.0.0 stable version and targets the latest Azure OpenAI Service stable api-version label of 2024-06-01. As a GA label, the 2.0.0 stable version exposes a subset of preview features, with preview library labels continuing to support preview features.

Specifically included in the GA library release:

  • AudioClient, supporting transcription and translation using the whisper model
  • ChatClient, supporting chat completions, including Azure-specific features:
    • Embedded request and response content filter annotations
    • Azure Search and Cosmos DB data sources for Azure OpenAI On Your Data
  • EmbeddingClient, supporting text-embedding model embedding operations
  • ImageClient, supporting dall-e-3 image generation

Assistants, Audio Generation, Batch, Files, Fine-Tuning, and Vector Stores are not yet included in the GA surface; they will continue to be available in preview library releases and the originating Azure OpenAI Service api-version labels.

Breaking Changes
  • AzureOpenAIClient constructors accepting AzureKeyCredential have been removed; please use the ApiKeyCredential constructors, instead. Note that AzureKeyCredential will inherit from ApiKeyCredential in a future update and that AzureKeyCredential has a non-browsable Key property that may be used for conversion in the interim.
  • The AzureOpenAIClientOptions ApplicationId has been renamed to a more descriptive UserAgentApplicationId.

From OpenAI 2.0.0 stable

  • Implemented ChatMessageContent to encapsulate the representation of content parts in ChatMessage, ChatCompletion, and StreamingChatCompletionUpdate. (commit_hash)
  • Changed the representation of function arguments to BinaryData in ChatToolCall, StreamingChatToolCallUpdate, ChatFunctionCall, and StreamingChatFunctionCallUpdate. (commit_hash)
  • Renamed OpenAIClientOptions's ApplicationId to UserAgentApplicationId (commit_hash)
  • Renamed StreamingChatToolCallUpdate's Id to ToolCallId (commit_hash)
  • Renamed StreamingChatCompletionUpdate's Id to CompletionId (commit_hash)
  • Replaced Auto and None in the deprecated ChatFunctionChoice with CreateAutoChoice() and CreateNoneChoice() (commit_hash)
  • Replaced the deprecated ChatFunctionChoice(ChatFunction) constructor with CreateNamedChoice(string functionName) (commit_hash)
  • Renamed FileClient to OpenAIFileClient and the corresponding GetFileClient() method in OpenAIClient to GetOpenAIFileClient(). (commit_hash)
  • Renamed ModelClient to OpenAIModelClient and the corresponding GetModelClient() method in OpenAIClient to GetOpenAIModelClient(). (commit_hash)

v1.15.0

Compare Source

1.15.0 (2025-08-07)
Breaking Changes
Behavioral Breaking Changes
  • Deprecated SharedTokenCacheCredential. The supporting credential (SharedTokenCacheCredential) was a legacy mechanism for authenticating clients using credentials provided to Visual Studio. For brokered authentication, consider using InteractiveBrowserCredential instead. The following changes have been made:
    • SharedTokenCacheCredential class is marked as [Obsolete] and [EditorBrowsable(EditorBrowsableState.Never)]
    • SharedTokenCacheCredentialOptions class is marked as [Obsolete] and [EditorBrowsable(EditorBrowsableState.Never)]
    • DefaultAzureCredentialOptions.ExcludeSharedTokenCacheCredential property is marked as [Obsolete] and [EditorBrowsable(EditorBrowsableState.Never)]
    • SharedTokenCacheUsername property is marked as [Obsolete] and [EditorBrowsable(EditorBrowsableState.Never)]
    • SharedTokenCacheCredential is no longer included in the DefaultAzureCredential authentication flow
Bugs Fixed
  • Tenant ID comparisons in credential options are now case-insensitive. This affects AdditionallyAllowedTenants values which will now be matched against tenant IDs without case sensitivity, making the authentication more resilient to case differences in tenant IDs returned from WWW-Authenticate challenges (#​51693).
Other Changes
  • BrokerAuthenticationCredential has been renamed as BrokerCredential.

  • Added the EditorBrowsable(Never) attribute to property VisualStudioCodeTenantId as TenantId is preferred. The VisualStudioCodeTenantId property exists only to provide backwards compatibility.

v1.14.1

Compare Source

1.14.1 (2025-07-08)

Bugs Fixed
  • Added support in AzurePowerShellCredential for the Az.Accounts 5.0.0+ (Az 14.0.0+) breaking change where Get-AzAccessToken returns PSSecureAccessToken with a SecureString Token property instead of plaintext.

v1.14.0

Compare Source

1.14.0 (2025-05-13)

Other Changes
  • Removed references to Username, Password, AZURE_USERNAME, and AZURE_PASSWORD in XML comments from EnvironmentCredentialOptions and EnvironmentCredential due to lack of MFA support. See MFA enforcement details.
  • Marked AZURE_USERNAME and AZURE_PASSWORD as obsolete due to lack of MFA support. See MFA enforcement details.
  • Added support for the AZURE_TOKEN_CREDENTIALS environment variable to DefaultAzureCredential, which allows for choosing between 'deployed service' and 'developer tools' credentials. Valid values are 'dev' for developer tools and 'prod' for deployed service.

v1.13.0

Compare Source

1.13.0 (2024-10-14)

Features Added
  • ManagedIdentityCredential now supports specifying a user-assigned managed identity by object ID.
Bugs Fixed
  • If DefaultAzureCredential attempts to authenticate with the MangagedIdentityCredential and it receives either a failed response that is not json, it will now fall through to the next credential in the chain. #​45184
  • Fixed the request sent in AzurePipelinesCredential so it doesn't result in a redirect response when an invalid system access token is provided.
  • Updated to version 4.65.0 of Microsoft.Identity.Client to address a bug preventing the use of alternate authority types such as dStS (4927) .
Other Changes
  • The logging level passed to MSAL now correlates to the log level configured on your configured AzureEventSourceListener. Previously, the log level was always set to Microsoft.Identity.Client.LogLevel.Info.
  • AzurePowerShellCredential now utilizes the AsSecureString parameter to Get-AzAccessToken for version 2.17.0 and greater of the Az.Accounts module.
  • Improved error logging for AzurePipelinesCredential.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Mar 5, 2025
@renovate renovate bot force-pushed the renovate/major-2-azure-azure-sdk-for-net-monorepo branch from 7106065 to 055d612 Compare March 15, 2025 10:47
@renovate renovate bot force-pushed the renovate/major-2-azure-azure-sdk-for-net-monorepo branch from 055d612 to ce4592a Compare July 28, 2025 07:08
@renovate renovate bot changed the title chore(deps): update dependency microsoft.azure.webjobs.extensions.signalrservice to v2 chore(deps): update dependency microsoft.azure.webjobs.extensions.signalrservice to v2 - autoclosed Sep 24, 2025
@renovate renovate bot closed this Sep 24, 2025
@renovate renovate bot deleted the renovate/major-2-azure-azure-sdk-for-net-monorepo branch September 24, 2025 15:10
@renovate renovate bot changed the title chore(deps): update dependency microsoft.azure.webjobs.extensions.signalrservice to v2 - autoclosed chore(deps): update dependency microsoft.azure.webjobs.extensions.signalrservice to v2 Sep 24, 2025
@renovate renovate bot reopened this Sep 24, 2025
@renovate renovate bot force-pushed the renovate/major-2-azure-azure-sdk-for-net-monorepo branch from 2e364ac to ce4592a Compare September 24, 2025 16:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants