The Azure SDK team is pleased to announce our August 2026 client library releases.

65 packages released this month.

Stable Packages (16)

  • AI Agents

  • AI Projects

  • Core - Client - Core

  • Device Update

  • Document Translation

  • Resource Management - App Service

  • Resource Management - Compute

  • Resource Management - Computelimit

  • Resource Management - Connected Cache

  • Resource Management - Container Service

  • Resource Management - Container Service Fleet

  • Resource Management - Cosmos DB

  • Resource Management - IoT Operations

  • Resource Management - NetApp Files

  • Voice Live

  • unknown

Patch Updates (15)

  • Core - Client - AMQP

  • Core - Client - Core Serializer GSON JSON

  • Core - Client - Core Serializer Jackson JSON

  • Core - Client - HTTP Netty

  • Core - Client - HTTP OkHttp

  • Core - Management - Core

  • Cosmos Spark 3.4

  • Cosmos Spark 3.5

  • Cosmos Spark 4.0

  • OLTP Spark 3.3 Connector for Azure Cosmos DB SQL API

  • Resource Management - Authorization

  • SDK - Bill of Materials

  • azure-core-http-jdk-httpclient

  • azure-core-http-vertx

  • unknown

Beta Packages (32)

  • Core - Client - Core Experimental

  • Core - Client - Core Serializer Apache Avro

  • Core - Client - Test

  • Core - Plugin - Tracing OpenTelemetry Plugin

  • Resource Management - Compute Fleet

  • Resource Management - Compute Recommender

  • Resource Management - Compute-Bulkactions

  • Resource Management - Container Registry

  • Resource Management - Container Service

  • Resource Management - Containerserviceaimanager

  • Resource Management - Containerservicepreparedimgspec

  • Resource Management - Datadog

  • Resource Management - Device Provisioning Services

  • Resource Management - Discovery

  • Resource Management - Enclave

  • Resource Management - Hardware Security Module

  • Resource Management - Hybrid Compute

  • Resource Management - IoT Hub

  • Resource Management - NetApp Files

  • Resource Management - Redis Enterprise

  • Resource Management - Test

  • Storage - Blobs

  • Storage - Blobs Batch

  • Storage - Blobs Changefeed

  • Storage - Blobs Cryptography

  • Storage - Blobs NIO

  • Storage - Common

  • Storage - Files Data Lake

  • Storage - Files Share

  • Storage - Internal Avro

  • Storage - Queues

  • azure-core-metrics-opentelemetry

Release highlights

AI Agents 2.3.0 Changelog

Features Added

  • Added AzureUserSecurityContext and AzureCreateResponseOptions.setUserSecurityContext(...) for supplying application and end-user context to Microsoft Defender for Cloud when creating an Azure response. See Protecting AI applications for details.
  • Added AgentIdentityStatus (values ACTIVE and DISABLED) and AgentIdentity.getStatus() to expose the status of an agent’s instance identity or blueprint identity.
  • Added an allowedCallers property to many tool models, backed by the new CallableToolAllowedCaller enum (DIRECT, PROGRAMMATIC), so callers can restrict how a tool may be invoked. Supported types include ApplyPatchToolParameter, CodeInterpreterTool, CodeInterpreterToolboxTool, CustomToolParameter, FunctionShellToolParameter, FunctionTool, McpTool, and McpToolboxTool.
  • Added programmatic tool calling support: new ProgrammaticToolCallingParameter tool and ToolType.PROGRAMMATIC_TOOL_CALLING value.
  • Toolbox Search graduated to general availability. Added ToolSearchToolboxTool and ToolboxToolType.TOOLBOX_SEARCH for the GA tool; the preview ToolboxSearchPreviewToolboxTool (toolbox_search_preview) is retained alongside for backward compatibility.
  • Added McpTool.setTunnelId(...) / getTunnelId() and the same on McpToolboxTool to route MCP calls through a Secure MCP Tunnel as an alternative to serverUrl or connectorId.
  • Added FunctionTool.setOutputSchema(...) / getOutputSchema() for declaring the JSON schema of a function tool’s return payload.
  • Added OptimizationOptions.setMaxStalls(...) / getMaxStalls() for configuring early-stop behavior of preview agent-optimization jobs.
  • Added ResponseUsageInputTokensDetails.getCacheWriteTokens() to expose the number of tokens written to the prompt cache in a response.

Breaking Changes

  • BetaAgentsClient.createOptimizationJob(OptimizationJob) and createOptimizationJob(OptimizationJob, String) were replaced by long-running operations beginCreateOptimizationJob(OptimizationJob) and beginCreateOptimizationJob(OptimizationJob, String), which return SyncPoller<OptimizationJob, OptimizationJobResult> instead of OptimizationJob. The corresponding BetaAgentsAsyncClient methods now return PollerFlux<OptimizationJob, OptimizationJobResult>. The protocol method was likewise replaced by beginCreateOptimizationJob(BinaryData, RequestOptions) returning SyncPoller<BinaryData, BinaryData> / PollerFlux<BinaryData, BinaryData>.
  • ResponseUsageInputTokensDetails now also carries a cacheWriteTokens field. Deserialized instances continue to work, but any code depending on the previous single-field structure should be updated to read the new value.

AI Projects 2.3.0 Changelog

Features Added

  • Added task-generation support to BetaDatasetsClient / BetaDatasetsAsyncClient: new DataGenerationJobType.TASK_GENERATION value and new TaskGenerationDataGenerationJobOptions subtype for the task_generation data generation scenario, intended for multi-turn evaluation with prompt, file, or agent sources.
  • Added rubric-generation input-quality warnings on BetaEvaluatorsClient / BetaEvaluatorsAsyncClient:
  • EvaluatorGenerationJob.getInputQualityWarnings() returns any non-fatal input-quality advisories produced by the rubric generation pipeline.
  • EvaluatorVersion.getGenerationJobId() and EvaluatorVersion.getWarnings() provide the read-only link back to the EvaluatorGenerationJob that produced the version and the categories of warnings surfaced on it.
  • New models GenerationWarningType, RubricGenerationInputQualityWarning, RubricGenerationInputQualityWarningCode, RubricGenerationInputQualityWarningSeverity, and RubricGenerationInputQualityWarningSource.
  • Marked HumanEvaluationPreviewRuleAction with @Beta so preview surface area is explicit in generated API docs.

Breaking Changes

  • BetaDatasetsClient / BetaDatasetsAsyncClient data generation job creation is now a long-running operation. createGenerationJob(DataGenerationJob, String), createGenerationJob(DataGenerationJob), and createGenerationJobWithResponse(BinaryData, RequestOptions) were removed and replaced by beginCreateGenerationJob overloads returning SyncPoller<DataGenerationJob, DataGenerationJobResult> / PollerFlux<DataGenerationJob, DataGenerationJobResult>. Call .poll().getValue() (or the async equivalent) to obtain the created DataGenerationJob.
  • BetaEvaluatorsClient / BetaEvaluatorsAsyncClient evaluator generation job creation is now a long-running operation. createEvaluatorGenerationJob(EvaluatorGenerationJob, String), createEvaluatorGenerationJob(EvaluatorGenerationJob), and createEvaluatorGenerationJobWithResponse(BinaryData, RequestOptions) were removed and replaced by beginCreateEvaluatorGenerationJob overloads returning SyncPoller<EvaluatorGenerationJob, EvaluatorVersion> / PollerFlux<EvaluatorGenerationJob, EvaluatorVersion>.

Core - Client - AMQP 2.12.1 Changelog

Bugs Fixed

  • Fixed a memory leak in RequestResponseChannel (used by management/request-response operations such as lock renewal, peek, schedule, and session state). The channel’s SendLinkHandler emits a link-credit value on every AMQP flow frame into a unicast, unbounded-buffer sink, but the channel never subscribed to it, so the credits buffered indefinitely and the heap grew steadily for long-lived, cached channels. The channel now drains the credit flux. (#47261)

Core - Client - Core 1.59.0 Changelog

Bugs Fixed

  • Fixed a bug where retrying requests with bodies created from a mark/reset-capable InputStream could fail because the stream was closed between retry attempts. (#49650)
  • Fixed GraalVM native-image compilation with SLF4J 2 by no longer forcing Azure Core logging and logging provider classes to initialize at image build time. (#49844)

Features Added

  • Promoted AccessTokenCache to a public API in the com.azure.core.credential package. This class provides a thread-safe, proactively refreshing token cache that wraps a TokenCredential, supporting both synchronous and asynchronous token retrieval.

Core - Client - Core Experimental 1.0.0-beta.69 Changelog

Other Changes

Dependency Updates
  • Upgraded azure-core from 1.58.1 to 1.58.2.
  • Upgraded Reactor from 3.7.18 to 3.7.19.

Core - Client - Core Serializer Apache Avro 1.0.0-beta.66 Changelog

Other Changes

Dependency Updates
  • Upgraded azure-core from 1.58.1 to 1.58.2.
  • Upgraded Reactor from 3.7.18 to 3.7.19.

Core - Client - Core Serializer GSON JSON 1.4.6 Changelog

Other Changes

Dependency Updates
  • Upgraded azure-core from 1.58.1 to 1.58.2.

Core - Client - Core Serializer Jackson JSON 1.6.6 Changelog

Other Changes

Dependency Updates
  • Upgraded azure-core from 1.58.1 to 1.58.2.
  • Upgraded Jackson from 2.18.7 to 2.18.9.

Core - Client - HTTP Netty 1.16.6 Changelog

Other Changes

Dependency Updates
  • Upgraded azure-core from 1.58.1 to 1.58.2.
  • Upgraded Reactor from 3.7.18 to 3.7.19.
  • Upgraded Netty dependencies from 4.1.135.Final to 4.1.137.Final.
  • Upgraded Netty TcNative dependencies from 2.0.78.Final to 2.0.81.Final.

Core - Client - HTTP OkHttp 1.13.6 Changelog

Other Changes

Dependency Updates
  • Upgraded azure-core from 1.58.1 to 1.58.2.
  • Upgraded Reactor from 3.7.18 to 3.7.19.
  • Upgraded okio-jvm from 3.16.0 to 3.18.1.

Core - Client - Test 1.27.0-beta.17 Changelog

Other Changes

Dependency Updates
  • Upgraded azure-core from 1.58.1 to 1.58.2.
  • Upgraded Reactor from 3.7.18 to 3.7.19.

Core - Management - Core 1.19.6 Changelog

Core - Plugin - Tracing OpenTelemetry Plugin 1.0.0-beta.65 Changelog

Other Changes

Dependency Updates
  • Upgraded azure-core from 1.58.1 to 1.58.2.

Cosmos Spark 3.4 4.49.2 Changelog

Bugs Fixed

  • Fixed ItemPatch/ItemPatchIfExists write strategies to skip documents excluded by a conditional spark.cosmos.write.patch.filter instead of failing the write with 412 Precondition Failed. - See PR 49700
  • Fixed bounded change feed reads hanging after partition splits when stale feed-range metadata collapsed child continuation LSNs into a single endLsn. - See PR 49883

Cosmos Spark 3.5 4.49.2 Changelog

Bugs Fixed

  • Fixed ItemPatch/ItemPatchIfExists write strategies to skip documents excluded by a conditional spark.cosmos.write.patch.filter instead of failing the write with 412 Precondition Failed. - See PR 49700
  • Fixed bounded change feed reads hanging after partition splits when stale feed-range metadata collapsed child continuation LSNs into a single endLsn. - See PR 49883

Cosmos Spark 3.5 4.49.2 Changelog

Bugs Fixed

  • Fixed ItemPatch/ItemPatchIfExists write strategies to skip documents excluded by a conditional spark.cosmos.write.patch.filter instead of failing the write with 412 Precondition Failed. - See PR 49700
  • Fixed bounded change feed reads hanging after partition splits when stale feed-range metadata collapsed child continuation LSNs into a single endLsn. - See PR 49883

Cosmos Spark 4.0 4.49.2 Changelog

Bugs Fixed

  • Fixed ItemPatch/ItemPatchIfExists write strategies to skip documents excluded by a conditional spark.cosmos.write.patch.filter instead of failing the write with 412 Precondition Failed. - See PR 49700
  • Fixed bounded change feed reads hanging after partition splits when stale feed-range metadata collapsed child continuation LSNs into a single endLsn. - See PR 49883

Device Update 1.1.0 Changelog

Features Added

DeviceUpdateServiceVersion was modified
  • V2026_06_01 was added

Document Translation 2.0.0 Changelog

Breaking Changes

  • Renamed DocumentStatusResult.getCharacterCharged() to getCharacterChargedCount() for naming consistency with the other count properties. Existing callers must update to the new method name.
  • Replaced the SingleDocumentTranslationClient.translate and SingleDocumentTranslationAsyncClient.translate convenience overload translate(String, DocumentTranslateContent, String, String, Boolean) with translate(String, DocumentTranslateContent, String, String, String, Boolean, Boolean), adding the deploymentName and translateTextWithinImage parameters (positioned after category and allowFallback respectively). Existing callers of the previous overload must update their call sites to the new signature.
  • Made the type parameter required on getSupportedFormats, matching the service contract. Removed the no-argument getSupportedFormats() overload from DocumentTranslationClient and DocumentTranslationAsyncClient; callers must now pass a FileFormatType (for example, getSupportedFormats(FileFormatType.DOCUMENT)).
  • Changed the underlying values of FileFormatType.DOCUMENT and FileFormatType.GLOSSARY from document/glossary to Document/Glossary to match the service. The enum constant names are unchanged.

Features Added

  • Added support for the 2026-03-01 service API version, which is now the default.
  • Added image translation support:
  • Added the BatchOptions model with the translateTextWithinImage property, and the options property on TranslationBatch, to enable translation of text embedded within images for batch requests.
  • Added beginTranslation(List<DocumentTranslationInput>, Boolean) convenience overloads to DocumentTranslationClient and DocumentTranslationAsyncClient to enable batch image translation without constructing a TranslationBatch/BatchOptions.
  • Added the translateTextWithinImage parameter to SingleDocumentTranslationClient.translate and SingleDocumentTranslationAsyncClient.translate for single document requests.
  • Added image scan reporting to DocumentStatusResult: imageCharacterDetectedCount, imageChargedCount, totalImageScansSucceededCount, and totalImageScansFailedCount.
  • Added image scan totals to TranslationStatusSummary: totalImageScansSucceededCount, totalImageScansFailedCount, and totalImagesChargedCount.
  • Added custom translation model support:
  • Added the deploymentName property to TranslationTarget to specify the deployment name of the custom translation model for a batch translation request.
  • Added the deploymentName property to DocumentStatusResult, exposing the deployment name of the custom translation model used for the translation.
  • Added the deploymentName parameter to SingleDocumentTranslationClient.translate and SingleDocumentTranslationAsyncClient.translate for single document translation requests.
  • Added the DocumentTranslateOptions model and translate(String, DocumentTranslateContent, DocumentTranslateOptions) convenience overloads to SingleDocumentTranslationClient and SingleDocumentTranslationAsyncClient, grouping the optional sourceLanguage, category, deploymentName, allowFallback, and translateTextWithinImage settings into a single options bag.

OLTP Spark 3.3 Connector for Azure Cosmos DB SQL API 4.49.2 Changelog

Bugs Fixed

  • Fixed ItemPatch/ItemPatchIfExists write strategies to skip documents excluded by a conditional spark.cosmos.write.patch.filter instead of failing the write with 412 Precondition Failed. - See PR 49700
  • Fixed bounded change feed reads hanging after partition splits when stale feed-range metadata collapsed child continuation LSNs into a single endLsn. - See PR 49883

Resource Management - App Service 2.56.0 Changelog

Resource Management - Authorization 2.53.11 Changelog

Resource Management - Compute 2.59.0 Changelog

Resource Management - Compute Fleet 1.1.0-beta.4 Changelog

Resource Management - Compute Recommender 1.0.0-beta.2 Changelog

Resource Management - Compute-Bulkactions 1.0.0-beta.1 Changelog

Resource Management - Compute-Bulkactions 1.0.0-beta.2 Changelog

Resource Management - Computelimit 1.4.0 Changelog

Resource Management - Connected Cache 1.0.0 Changelog

Resource Management - Container Registry 2.56.0-beta.2 Changelog

Resource Management - Container Service 2.62.0 Changelog

Resource Management - Container Service 2.63.0-beta.1 Changelog

Resource Management - Container Service Fleet 1.3.0 Changelog

Resource Management - Containerserviceaimanager 1.0.0-beta.1 Changelog

Resource Management - Containerservicepreparedimgspec 1.0.0-beta.1 Changelog

Resource Management - Cosmos DB 2.55.0 Changelog

Resource Management - Datadog 1.2.0-beta.1 Changelog

Resource Management - Device Provisioning Services 1.2.0-beta.2 Changelog

Resource Management - Discovery 1.0.0-beta.1 Changelog

Resource Management - Enclave 1.0.0-beta.1 Changelog

Resource Management - Hardware Security Module 1.2.0-beta.1 Changelog

Resource Management - Hybrid Compute 1.1.0-beta.3 Changelog

Resource Management - IoT Hub 1.4.0-beta.3 Changelog

Resource Management - IoT Operations 1.2.0 Changelog

Resource Management - NetApp Files 2.4.0 Changelog

Resource Management - NetApp Files 2.5.0-beta.1 Changelog

Resource Management - Redis Enterprise 2.2.0-beta.1 Changelog

Resource Management - Test 2.0.0-beta.3 Changelog

SDK - Bill of Materials 1.3.8 Changelog

Dependency Updates

Storage - Blobs 12.36.0-beta.1 Changelog

Bugs Fixed

  • Fixed an issue where BlobClientBase.openSeekableByteChannelRead issued an unnecessary HTTP request (resulting in an HTTP 416 response) after the entire blob had already been returned in the initial range download. When the channel is opened with ETag consistency control (the default), the read behavior now short-circuits to end-of-file once the known resource length is reached, avoiding the extra round trip.
  • Fixed an issue where a transport-level failure while streaming the body of the trailing HTTP 416 response from BlobClientBase.openSeekableByteChannelRead (for example “Connection reset by peer”) could propagate out of the channel even though all of the blob’s content had already been delivered to the caller. The read behavior now logs a warning and signals end-of-file when such an error occurs at or past the known end of the resource.

Features Added

  • Added support for service version 2026-10-06.
  • Added support for retrieving AccessTier headers to BlobDownloadHeaders.
  • Added support for PutBlob operations returning both the existing MD5 content hash and the new CRC64 checksum.
  • Added support for Apache Arrow response format for ListBlobs flat and ListBlobs hierarchical options.
  • Added support for content validation with structured message and CRC64 via ContentValidationAlgorithm. Supported for GetBlob, PutBlob, PutBlock, PutPage, and AppendBlock operations.

Storage - Blobs Batch 12.32.0-beta.1 Changelog

Features Added

  • Added support for service version 2026-10-06.

Storage - Blobs Changefeed 12.0.0-beta.39 Changelog

Features Added

  • Added support for service version 2026-10-06.

Storage - Blobs Cryptography 12.35.0-beta.1 Changelog

Features Added

  • Added support for service version 2026-10-06.

Storage - Blobs NIO 12.0.0-beta.40 Changelog

Features Added

  • Added support for service version 2026-10-06.

Storage - Common 12.35.0-beta.1 Changelog

Bugs Fixed

  • Fixed an async retry hang that could occur when draining a retryable response body after the response was closed.

Features Added

  • Added support for service version 2026-10-06.

Storage - Files Data Lake 12.29.0-beta.1 Changelog

Features Added

  • Added support for service version 2026-10-06.

Storage - Files Share 12.32.0-beta.1 Changelog

Features Added

  • Added support for service version 2026-10-06.
  • Added support for ShareFileClient.listAllRanges() and ShareFileClient.listAllRangesDiff() APIs.

Storage - Internal Avro 12.21.0-beta.1 Changelog

Features Added

  • Added support for service version 2026-10-06.

Storage - Queues 12.31.0-beta.1 Changelog

Features Added

  • Added support for service version 2026-10-06.

Voice Live 1.1.0 Changelog

Features Added

  • Streaming input text into a conversation item:
  • New ClientEventInputTextDelta (input_text.delta) and ClientEventInputTextDone (input_text.done), each with optional contentIndex
  • New ClientEventType.INPUT_TEXT_DELTA and ClientEventType.INPUT_TEXT_DONE values
  • Echo cancellation reference source: AudioEchoCancellation is now @Fluent and exposes referenceSource (new EchoCancellationReferenceSource enum with SERVER / CLIENT) and channels for stereo input where channel 1 is the client-supplied echo reference
  • Azure realtime native voices: new AzureRealtimeNativeVoice (type azure-realtime-native) and AzureRealtimeNativeVoiceName expandable enum (AARTI, ANDREW, AVA, DENISE, DIYA, ELSA, FLORIAN, FRANCISCA, MEERA, XIAOXIAO, YUNXI, XIMENA) for use with the azure-realtime model
  • Parallel tool calls: VoiceLiveSessionOptions.setParallelToolCalls(Boolean) / isParallelToolCalls() (and matching accessors on VoiceLiveSessionResponse) to control whether the model may invoke tools in parallel
  • Hosted agent invocation passthrough:
  • ResponseCreateParams.setInvokeInput(Map<String, BinaryData>) / getInvokeInput() to attach input data for a hosted agent invocation on a single response request
  • New ServerEventResponseInvocationDelta (response.invocation.delta) and ServerEventType.RESPONSE_INVOCATION_DELTA pass through non-speech SSE events from the hosted agent
  • Session expiration: VoiceLiveSessionResponse.getExpiresAt() / setExpiresAt(OffsetDateTime) expose the server-assigned session expiration time (serialized on the wire as seconds since epoch)

azure-core-http-jdk-httpclient 1.1.6 Changelog

Other Changes

Dependency Updates
  • Upgraded azure-core from 1.58.1 to 1.58.2.
  • Upgraded Reactor from 3.7.18 to 3.7.19.

azure-core-http-vertx 1.1.6 Changelog

Other Changes

Dependency Updates
  • Upgraded azure-core from 1.58.1 to 1.58.2.
  • Upgraded Reactor from 3.7.18 to 3.7.19.
  • Upgraded vertx-codegen from 4.5.27 to 4.5.32.
  • Upgraded vertx-core from 4.5.27 to 4.5.32.

azure-core-metrics-opentelemetry 1.0.0-beta.38 Changelog

Other Changes

Dependency Updates
  • Upgraded azure-core from 1.58.1 to 1.58.2.

unknown 4.49.2 Changelog

Bugs Fixed

  • Fixed ItemPatch/ItemPatchIfExists write strategies to skip documents excluded by a conditional spark.cosmos.write.patch.filter instead of failing the write with 412 Precondition Failed. - See PR 49700
  • Fixed bounded change feed reads hanging after partition splits when stale feed-range metadata collapsed child continuation LSNs into a single endLsn. - See PR 49883

unknown 1.0.0 Changelog

Features Added

  • Initial GA release of the Azure Planetary Computer client library for Java targeting API version 2026-04-15.

Need help

Latest Releases

View all the latest versions of Java packages here.

Installation Instructions

To use the GA and beta libraries, refer to the Maven dependency information below, which may be copied into your projects Maven pom.xml file as appropriate. If you are using a different build tool, refer to its documentation on how to specify dependencies.

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-ai-agents</artifactId>
  <version>2.3.0</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-ai-projects</artifactId>
  <version>2.3.0</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-ai-translation-document</artifactId>
  <version>2.0.0</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-ai-voicelive</artifactId>
  <version>1.1.0</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-analytics-planetarycomputer</artifactId>
  <version>1.0.0</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-core</artifactId>
  <version>1.59.0</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-core-amqp</artifactId>
  <version>2.12.1</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-core-experimental</artifactId>
  <version>1.0.0-beta.69</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-core-http-jdk-httpclient</artifactId>
  <version>1.1.6</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-core-http-netty</artifactId>
  <version>1.16.6</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-core-http-okhttp</artifactId>
  <version>1.13.6</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-core-http-vertx</artifactId>
  <version>1.1.6</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-core-management</artifactId>
  <version>1.19.6</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-core-metrics-opentelemetry</artifactId>
  <version>1.0.0-beta.38</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-core-serializer-avro-apache</artifactId>
  <version>1.0.0-beta.66</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-core-serializer-json-gson</artifactId>
  <version>1.4.6</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-core-serializer-json-jackson</artifactId>
  <version>1.6.6</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-core-test</artifactId>
  <version>1.27.0-beta.17</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-core-tracing-opentelemetry</artifactId>
  <version>1.0.0-beta.65</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-iot-deviceupdate</artifactId>
  <version>1.1.0</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-sdk-bom</artifactId>
  <version>1.3.8</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-storage-blob</artifactId>
  <version>12.36.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-storage-blob-batch</artifactId>
  <version>12.32.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-storage-blob-changefeed</artifactId>
  <version>12.0.0-beta.39</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-storage-blob-cryptography</artifactId>
  <version>12.35.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-storage-blob-nio</artifactId>
  <version>12.0.0-beta.40</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-storage-common</artifactId>
  <version>12.35.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-storage-file-datalake</artifactId>
  <version>12.29.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-storage-file-share</artifactId>
  <version>12.32.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-storage-internal-avro</artifactId>
  <version>12.21.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>com.azure+azure-storage-queue</artifactId>
  <version>12.31.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure.cosmos.spark</groupId>
  <artifactId>com.azure.cosmos.spark+azure-cosmos-spark_3-3_2-12</artifactId>
  <version>4.49.2</version>
</dependency>

<dependency>
  <groupId>com.azure.cosmos.spark</groupId>
  <artifactId>com.azure.cosmos.spark+azure-cosmos-spark_3-4_2-12</artifactId>
  <version>4.49.2</version>
</dependency>

<dependency>
  <groupId>com.azure.cosmos.spark</groupId>
  <artifactId>com.azure.cosmos.spark+azure-cosmos-spark_3-5_2-12</artifactId>
  <version>4.49.2</version>
</dependency>

<dependency>
  <groupId>com.azure.cosmos.spark</groupId>
  <artifactId>com.azure.cosmos.spark+azure-cosmos-spark_3-5_2-13</artifactId>
  <version>4.49.2</version>
</dependency>

<dependency>
  <groupId>com.azure.cosmos.spark</groupId>
  <artifactId>com.azure.cosmos.spark+azure-cosmos-spark_4-0_2-13</artifactId>
  <version>4.49.2</version>
</dependency>

<dependency>
  <groupId>com.azure.cosmos.spark</groupId>
  <artifactId>com.azure.cosmos.spark+azure-cosmos-spark_4-1_2-13</artifactId>
  <version>4.49.2</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-appservice</artifactId>
  <version>2.56.0</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-authorization</artifactId>
  <version>2.53.11</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-compute</artifactId>
  <version>2.59.0</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-compute-bulkactions</artifactId>
  <version>1.0.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-compute-bulkactions</artifactId>
  <version>1.0.0-beta.2</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-compute-recommender</artifactId>
  <version>1.0.0-beta.2</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-computefleet</artifactId>
  <version>1.1.0-beta.4</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-computelimit</artifactId>
  <version>1.4.0</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-connectedcache</artifactId>
  <version>1.0.0</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-containerregistry</artifactId>
  <version>2.56.0-beta.2</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-containerservice</artifactId>
  <version>2.62.0</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-containerservice</artifactId>
  <version>2.63.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-containerserviceaimanager</artifactId>
  <version>1.0.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-containerservicefleet</artifactId>
  <version>1.3.0</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-containerservicepreparedimgspec</artifactId>
  <version>1.0.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-cosmos</artifactId>
  <version>2.55.0</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-datadog</artifactId>
  <version>1.2.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-deviceprovisioningservices</artifactId>
  <version>1.2.0-beta.2</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-discovery</artifactId>
  <version>1.0.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-enclave</artifactId>
  <version>1.0.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-hardwaresecuritymodules</artifactId>
  <version>1.2.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-hybridcompute</artifactId>
  <version>1.1.0-beta.3</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-iothub</artifactId>
  <version>1.4.0-beta.3</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-iotoperations</artifactId>
  <version>1.2.0</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-netapp</artifactId>
  <version>2.4.0</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-netapp</artifactId>
  <version>2.5.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-redisenterprise</artifactId>
  <version>2.2.0-beta.1</version>
</dependency>

<dependency>
  <groupId>com.azure.resourcemanager</groupId>
  <artifactId>com.azure.resourcemanager+azure-resourcemanager-test</artifactId>
  <version>2.0.0-beta.3</version>
</dependency>

Feedback

If you have a bug or feature request for one of the libraries, please post an issue to GitHub.