Skip to content

deps(nuget): Bump the azure group with 1 update#102

Closed
dependabot[bot] wants to merge 1 commit intodevfrom
dependabot/nuget/azure-c5f9374a35
Closed

deps(nuget): Bump the azure group with 1 update#102
dependabot[bot] wants to merge 1 commit intodevfrom
dependabot/nuget/azure-c5f9374a35

Conversation

@dependabot
Copy link
Contributor

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

Updated Azure.AI.OpenAI from 1.0.0-beta.14 to 2.1.0.

Release notes

Sourced from Azure.AI.OpenAI's releases.

2.0.0-beta.1

2.0.0-beta.1 (2026-01-08)

Features Added

  • Added support for the Azure AI Translator API 2025-10-01-preview, including translations using LLM models, adaptive custom translation, tone variant translations, and gender-specific language translations.
  • Added TranslationTarget class for configuring translation options.
  • Exposed JsonModelWriteCore for model serialization procedure.

Breaking Changes

  • Added Models property to GetSupportedLanguagesResult to include the list of LLM models available for translations.
  • Changed the name of the model factory AITranslationTextModelFactory to TranslationTextModelFactory matching the new project structure.
  • Changed the name of TargetLanguage property to Language in TranslationText.
  • Changed the name of Confidence property to Score in DetectedLanguage.
  • Removed TextTranslationTranslateOptions and TextTranslationTransliterateOptions.
  • SourceText property in TranslatedTextItem deprecated and marked as obsolete.
  • Dictionary, sentence boundaries and text alignments features have been removed and relevant classes and properties have been marked as deprecated.

1.51.1

1.51.1 (2026-02-04)

Features Added

  • Update the APIs for Microsoft.Extensions.Configuration and Microsoft.Extensions.DependencyInjection to enable Azure.Identity use cases.
  • Updated BCL dependencies to 10.x.

1.51.0

1.51.0 (2026-01-29)

Features Added

  • Added core support for Microsoft.Extensions.Configuration and Microsoft.Extensions.DependencyInjection.
  • Implements support for client certificate rotation in the Azure.Core transport layer to enable dynamic token binding scenarios. The changes allow transport instances to be updated with new client certificate configurations at runtime without requiring full pipeline reconstruction.

Bugs Fixed

  • Fixed NullReferenceException when calling GetHashCode() on default(AzureLocation).

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.

1.15.0

1.15.0 (2026-02-02)

Features Added

  • Upgraded api-version to 2025-05-01.

1.14.0

1.14.0 (2026-01-16)

Features Added

  • Added new resource type GalleryScript.
  • Added StorageAccountStrategy property to GalleryArtifactPublishingProfileBase class.

1.10.0

1.10.0 (2026-01-19)

Features Added

  • Support identity-based connection.

1.9.0

1.9.0 (2026-01-27)

Features Added

  • Added core support for Microsoft.Extensions.Configuration and Microsoft.Extensions.DependencyInjection.
  • Added JsonModel<T> abstract base class that provides a simplified way to implement IJsonModel<T> for JSON serialization and deserialization.

Bugs Fixed

  • Fixed an issue with ClientRetryPolicy where delays were being calculated using the retry count instead of the attempt count, causing the initial retry to occur without delay and subsequent retries to be performed more quickly than intended.

1.8.0

1.8.0 (2026-01-27)

Features Added

  • Added new methods, CheckConfigurationSettings and CheckConfigurationSettingsAsync, which can be used to check settings from the Azure App Configuration store using HEAD requests, returning only headers without the response body. #​54669

Other Changes

  • Added internal pipeline policy to handle audience error and surface up an improved error message. #​53834

1.6.0

1.6.0 (2026-01-16)

Features Added

  • Upgraded api-verion to 2025-09-01.
  • Make Azure.ResourceManager.Avs AOT-compatible.

1.6.0-beta.2

1.6.0-beta.2 (2026-01-12)

Breaking Changes

  • Default Sampler Changed (#​54942): The default sampling behavior has been changed from
    ApplicationInsightsSampler with 100% sampling (all traces sampled) to
    RateLimitedSampler with 5.0 traces per second. This change significantly
    reduces telemetry volume for high-traffic applications and provides better
    cost optimization out of the box.
    Impact: Applications with more than 5 requests per second will see fewer
    traces exported by default.
    Migration: To maintain the previous behavior (100% sampling), explicitly
    configure the sampler:
    // Option 1: Set SamplingRatio and clear TracesPerSecond
    builder.Services.AddOpenTelemetry()
        .UseAzureMonitorExporter(options =>
        {
            options.SamplingRatio = 1.0f;
            options.TracesPerSecond = null;
        });
    // Option 2: Use environment variables
    // OTEL_TRACES_SAMPLER=microsoft.fixed_percentage
    // OTEL_TRACES_SAMPLER_ARG=1.0

Bugs Fixed

  • Fixed performance counter metrics not using configured resource attributes
    (cloud_RoleName and cloud_RoleInstance), which previously showed
    "unknown_service:appName" instead of the configured values.
    (#​54944)

1.5.1

1.5.1 (2026-01-29)

Features Added

  • Support for MicrosoftTeamsAppIdentifier CommunicationIdentifier

1.5.0-beta.1

1.5.0-beta.1 (2026-01-23)

Features Added

  • Added BicepMetadata class that provides a clean, type-safe way to set Bicep metadata on resources:
    • Description - Adds @​description('...') decorator
    • BatchSize - Adds @​batchSize(n) decorator for loop deployments
    • OnlyIfNotExists - Adds @​onlyIfNotExists() decorator
  • Added BicepMetadata property on ProvisionableResource

Bugs Fixed

  • Fixed PropertyName in Self reference for IBicepValue instances of collection items to include its index (for list) or its key (for dictionary) to avoid colliding with its enclosing collection's property name. (#​54802)

1.4.1

1.4.1 (2026-02-12)

Other Changes

  • Removed show-serialized-names debug configuration to clean up unnecessary serialized name annotations from XML docs.

1.4.1-beta.3

1.4.1-beta.3 (2026-02-17)

Features Added

  • Added ConfidentialLedgerRedirectPolicy to automatically follow HTTP 307/308 redirects while preserving the Authorization header. Previously, the SDK did not follow redirects by default, and even when redirects were enabled, the Authorization header was stripped on cross-domain redirects between ACL nodes, causing write operations to fail when routed to non-primary nodes.

1.4.0

1.4.0 (2026-01-30)

Features Added

Other Changes

  • Upgraded Azure.Core from 1.47.1 to 1.50.0

1.4.0-beta.2

1.4.0-beta.2 (2026-03-02)

Features Added

  • StaticSiteBasicAuthProperty.Name now defaults to "default" and is read-only, matching the only accepted Bicep value.
  • SiteNetworkConfig.Name now defaults to "virtualNetwork" and is read-only, matching the only accepted Bicep value.

Breaking Changes

  • StaticSiteBasicAuthProperty.Name is now read-only (setter removed). The property only accepts "default".
  • SiteNetworkConfig.Name is now read-only (setter removed). The property only accepts "virtualNetwork".
  • Removed generated enum StaticSiteBasicAuthName. A backward-compatible version is preserved but hidden from IntelliSense.

Bugs Fixed

  • Fixed SiteNetworkConfig.Name not having a default value (#​54629).

1.4.0-beta.1

1.4.0-beta.1 (2026-02-27)

Features Added

  • Regenerated from the latest Azure.ResourceManager.AppService package.

1.3.1

1.3.1 (2025-12-16)

Features Added

  • Make Azure.ResourceManager.StorageSync AOT compatible

1.3.0

1.3.0 (2025-12-18)

Features Added

Other Changes

  • Upgraded Azure.Core from 1.47.1 to 1.50.0

1.2.0

1.2.0 (2026-02-27)

Features Added

1.2.0-beta.9

1.2.0-beta.9 (2026-02-23)

Features Added

  • Added support for CodeInterpreterToolCallContent from Microsoft.Extensions.AI abstractions when executing HostedCodeInterpreterTool tool.

Bugs Fixed

  • Fixed a performance issue in PersistentAgentsChatClient.GetStreamingResponseAsync issue.

1.2.0-beta.2

1.2.0-beta.2 (2026-03-02)

Features Added

  • ServerThreatProtectionSettingsModel.Name now defaults to "Default" and is read-only.
  • PostgreSqlServerSecurityAlertPolicy.Name now defaults to "Default" and is read-only.

Breaking Changes

  • ServerThreatProtectionSettingsModel.Name is now read-only (setter removed). The property only accepts "Default".
  • PostgreSqlServerSecurityAlertPolicy.Name is now read-only (setter removed). The property only accepts "Default".
  • PostgreSqlFlexibleServerActiveDirectoryAdministrator.ObjectId type changed from BicepValue<Guid> to BicepValue<string> to match the service API.
  • Removed generated enums PostgreSqlSecurityAlertPolicyName and ThreatProtectionName. Backward-compatible versions are preserved but hidden from IntelliSense.
  • ServerThreatProtectionSettingsModel.ThreatProtectionName property is deprecated. Use Name instead.

1.2.0-beta.1

1.2.0-beta.1 (2026-02-05)

Features Added

  • Added new resource versions including V2025_07_01 and V2026_01_01.
  • Added Auto value to ContainerAppCustomDomainBindingType enum for automatic certificate binding.
  • Added new resources: ContainerAppHttpRouteConfig, ContainerAppMaintenanceConfiguration, ContainerAppPrivateEndpointConnection, and LogicApp.

1.1.0-beta.3

1.1.0-beta.3 (2026-02-26)

Bugs Fixed

  • Added public InterimResponseConfigBase InterimResponse

1.1.0-beta.2

1.1.0-beta.2 (2026-02-19)

Features Added

  • MCP (Model Context Protocol) Support: Added comprehensive support for MCP server integration

    • Added VoiceLiveMcpServerDefinition for configuring external MCP servers as tools
    • Added MCPApprovalType enum for controlling tool execution approval workflows ("always", "never")
    • Added VoiceLiveMcpTool class for representing MCP tool definitions with JSON schemas
    • Added MCP-specific session update events:
      • SessionUpdateMcpListToolsInProgress - Tool discovery started
      • SessionUpdateMcpListToolsCompleted - Tool discovery completed
      • SessionUpdateMcpListToolsFailed - Tool discovery failed
      • SessionUpdateResponseMcpCallArgumentsDelta - Tool call arguments streaming
      • SessionUpdateResponseMcpCallArgumentsDone - Tool call arguments complete
      • SessionUpdateResponseMcpCallInProgress - Tool execution started
      • SessionUpdateResponseMcpCallCompleted - Tool execution completed
      • SessionUpdateResponseMcpCallFailed - Tool execution failed
    • Added MCP-specific response items:
      • SessionResponseMcpListToolItem - Contains list of available tools from MCP server
      • SessionResponseMcpCallItem - Represents an MCP tool call with optional approval request
      • SessionResponseMcpApprovalRequestItem - Human-in-the-loop approval request
      • SessionResponseMcpApprovalResponseItem - Approval decision response
    • MCP configuration properties on VoiceLiveMcpServerDefinition:
      • ServerLabel - Unique identifier for the MCP server
      • ServerUrl - HTTP endpoint for the MCP server
      • Authorization - Optional authorization header value
      • Headers - Custom HTTP headers for MCP server requests
      • AllowedTools - Optional list of tool names to enable (whitelist)
      • RequireApproval - Approval policy for tool execution
  • Enhanced Avatar Configuration: Extended avatar capabilities with new configuration options

    • Added AvatarConfigTypes enum for avatar type selection ("photo_avatar", "video_avatar")
    • Added PhotoAvatarBaseModes enum for photo avatar model selection ("vasa1")
    • Added AvatarOutputProtocol enum for output protocol selection ("webrtc", "websocket")
    • New properties on AvatarConfiguration:
      • Type - Avatar type (photo or video)
      • Model - Base model for photo avatars
      • OutputProtocol - Protocol for avatar data streaming
  • Personal Voice Enhancements: Added prosody and localization controls for Azure Personal Voice

    • New properties on AzurePersonalVoice:
      • Locale - Primary locale for speech synthesis
      • PreferLocales - List of preferred fallback locales
      • Rate - Speech rate adjustment (e.g., "+10%", "-15%")
      • Pitch - Pitch adjustment (e.g., "+2st", "-1st")
      • Volume - Volume adjustment (e.g., "+6dB", "-3dB")
      • Style - Speaking style selection
        ... (truncated)

1.1.0-beta.1

1.1.0-beta.1 (2025-09-09)

Features Added

Upgrade to api-version 2025-07-01-preview:

  • Connector Templates: Create reusable templates to streamline connector configuration and deployment across Azure IoT Operations clusters.
  • ADR Namespaces: Enable logical isolation and security boundaries for managing assets and devices at scale.
  • Devices: Support for devices with inbound endpoints, including cross-connector capabilities.
  • ONVIF Connector: Integrate ONVIF-compliant cameras and devices for video and surveillance scenarios.
  • Media Connector: Ingest and process media streams from diverse sources with enhanced flexibility.
  • REST Connector: Connect to any RESTful endpoint, enabling seamless integration with external systems and APIs.
  • Enrich: Enhance incoming data with contextual metadata from REST endpoints to support advanced analytics.
  • Discovery of Devices and Assets: Automatically detect and onboard devices and assets, reducing manual configuration.
  • Regional Expansion: Azure IoT Operations is now deployable to Arc-connected clusters in the Germany West Central region. This support is available in the latest preview and backported to GA version 1.1.59
  • Advanced Dataflow Operations: Dataflow graphs allow for definitions of custom workflows and transformations. Custom operations can now be performed using WASMmodules provided by customers .

Other Changes

ExtendedLocation is now optional in the following resources:

  • IotOperationsBroker
  • IotOperationsBrokerListener
  • IotOperationsBrokerAuthentication
  • IotOperationsBrokerAuthorization
  • IotOperationsDataflowEndpoint
  • IotOperationsDataflowProfile
  • IotOperationsDataflow

1.0.3-beta.5815175

1.0.3-beta.5815175 (2026-01-29)

Other Changes

  • Release DPG library
  • Add Grow-up story

1.0.3-beta.5814383

1.0.3-beta.5814383 (2026-01-29)

Other Changes

  • Release DPG library
  • Add Grow-up story

1.0.3-beta.5814063

1.0.3-beta.5814063 (2026-01-29)

Other Changes

  • Release DPG library
  • Add Grow-up story

1.0.3-beta.5775447

1.0.3-beta.5775447 (2026-01-20)

Other Changes

  • Release DPG library
  • Add Grow-up story

1.0.0

1.0.0 (2025-12-30)

This is the first stable release of the Dell Storage Management client library.

Features Added

This package follows the new Azure SDK guidelines, and provides many core capabilities:

- Support MSAL.NET, Azure.Identity is out of box for supporting MSAL.NET.
- Support [OpenTelemetry](https://opentelemetry.io/) for distributed tracing.
- HTTP pipeline with custom policies.
- Better error-handling.
- Support uniform telemetry across all languages.

NOTE: For more information about unified authentication, please refer to Microsoft Azure Identity documentation for .NET.

Commits viewable in compare view.

Dependabot compatibility score

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 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

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 3, 2026

Labels

The following labels could not be found: nuget. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Copy link

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your free trial has ended. If you'd like to continue receiving code reviews, you can add a payment method here.

Bumps Azure.AI.OpenAI from 1.0.0-beta.14 to 2.1.0

---
updated-dependencies:
- dependency-name: Azure.AI.OpenAI
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: azure
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot changed the base branch from main to dev March 10, 2026 01:36
@dependabot dependabot bot force-pushed the dependabot/nuget/azure-c5f9374a35 branch from 821164a to 1aa5f2d Compare March 10, 2026 01:36
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 10, 2026

Looks like Azure.AI.OpenAI is no longer updatable, so this is no longer needed.

@dependabot dependabot bot closed this Mar 10, 2026
@dependabot dependabot bot deleted the dependabot/nuget/azure-c5f9374a35 branch March 10, 2026 01:57
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