Azure SDK for Java (August 2026)
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
AzureUserSecurityContextandAzureCreateResponseOptions.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(valuesACTIVEandDISABLED) andAgentIdentity.getStatus()to expose the status of an agent’s instance identity or blueprint identity. - Added an
allowedCallersproperty to many tool models, backed by the newCallableToolAllowedCallerenum (DIRECT,PROGRAMMATIC), so callers can restrict how a tool may be invoked. Supported types includeApplyPatchToolParameter,CodeInterpreterTool,CodeInterpreterToolboxTool,CustomToolParameter,FunctionShellToolParameter,FunctionTool,McpTool, andMcpToolboxTool. - Added programmatic tool calling support: new
ProgrammaticToolCallingParametertool andToolType.PROGRAMMATIC_TOOL_CALLINGvalue. - Toolbox Search graduated to general availability. Added
ToolSearchToolboxToolandToolboxToolType.TOOLBOX_SEARCHfor the GA tool; the previewToolboxSearchPreviewToolboxTool(toolbox_search_preview) is retained alongside for backward compatibility. - Added
McpTool.setTunnelId(...)/getTunnelId()and the same onMcpToolboxToolto route MCP calls through a Secure MCP Tunnel as an alternative toserverUrlorconnectorId. - 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)andcreateOptimizationJob(OptimizationJob, String)were replaced by long-running operationsbeginCreateOptimizationJob(OptimizationJob)andbeginCreateOptimizationJob(OptimizationJob, String), which returnSyncPoller<OptimizationJob, OptimizationJobResult>instead ofOptimizationJob. The correspondingBetaAgentsAsyncClientmethods now returnPollerFlux<OptimizationJob, OptimizationJobResult>. The protocol method was likewise replaced bybeginCreateOptimizationJob(BinaryData, RequestOptions)returningSyncPoller<BinaryData, BinaryData>/PollerFlux<BinaryData, BinaryData>.ResponseUsageInputTokensDetailsnow also carries acacheWriteTokensfield. 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: newDataGenerationJobType.TASK_GENERATIONvalue and newTaskGenerationDataGenerationJobOptionssubtype for thetask_generationdata 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()andEvaluatorVersion.getWarnings()provide the read-only link back to theEvaluatorGenerationJobthat produced the version and the categories of warnings surfaced on it.- New models
GenerationWarningType,RubricGenerationInputQualityWarning,RubricGenerationInputQualityWarningCode,RubricGenerationInputQualityWarningSeverity, andRubricGenerationInputQualityWarningSource. - Marked
HumanEvaluationPreviewRuleActionwith@Betaso preview surface area is explicit in generated API docs.
Breaking Changes
BetaDatasetsClient/BetaDatasetsAsyncClientdata generation job creation is now a long-running operation.createGenerationJob(DataGenerationJob, String),createGenerationJob(DataGenerationJob), andcreateGenerationJobWithResponse(BinaryData, RequestOptions)were removed and replaced bybeginCreateGenerationJoboverloads returningSyncPoller<DataGenerationJob, DataGenerationJobResult>/PollerFlux<DataGenerationJob, DataGenerationJobResult>. Call.poll().getValue()(or the async equivalent) to obtain the createdDataGenerationJob.BetaEvaluatorsClient/BetaEvaluatorsAsyncClientevaluator generation job creation is now a long-running operation.createEvaluatorGenerationJob(EvaluatorGenerationJob, String),createEvaluatorGenerationJob(EvaluatorGenerationJob), andcreateEvaluatorGenerationJobWithResponse(BinaryData, RequestOptions)were removed and replaced bybeginCreateEvaluatorGenerationJoboverloads returningSyncPoller<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’sSendLinkHandleremits 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
InputStreamcould 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
AccessTokenCacheto a public API in thecom.azure.core.credentialpackage. This class provides a thread-safe, proactively refreshing token cache that wraps aTokenCredential, supporting both synchronous and asynchronous token retrieval.
Core - Client - Core Experimental 1.0.0-beta.69 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-corefrom1.58.1to1.58.2. - Upgraded Reactor from
3.7.18to3.7.19.
Core - Client - Core Serializer Apache Avro 1.0.0-beta.66 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-corefrom1.58.1to1.58.2. - Upgraded Reactor from
3.7.18to3.7.19.
Core - Client - Core Serializer GSON JSON 1.4.6 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-corefrom1.58.1to1.58.2.
Core - Client - Core Serializer Jackson JSON 1.6.6 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-corefrom1.58.1to1.58.2. - Upgraded Jackson from
2.18.7to2.18.9.
Core - Client - HTTP Netty 1.16.6 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-corefrom1.58.1to1.58.2. - Upgraded Reactor from
3.7.18to3.7.19. - Upgraded Netty dependencies from
4.1.135.Finalto4.1.137.Final. - Upgraded Netty TcNative dependencies from
2.0.78.Finalto2.0.81.Final.
Core - Client - HTTP OkHttp 1.13.6 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-corefrom1.58.1to1.58.2. - Upgraded Reactor from
3.7.18to3.7.19. - Upgraded
okio-jvmfrom3.16.0to3.18.1.
Core - Client - Test 1.27.0-beta.17 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-corefrom1.58.1to1.58.2. - Upgraded Reactor from
3.7.18to3.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-corefrom1.58.1to1.58.2.
Cosmos Spark 3.4 4.49.2 Changelog
Bugs Fixed
- Fixed
ItemPatch/ItemPatchIfExistswrite strategies to skip documents excluded by a conditionalspark.cosmos.write.patch.filterinstead of failing the write with412 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/ItemPatchIfExistswrite strategies to skip documents excluded by a conditionalspark.cosmos.write.patch.filterinstead of failing the write with412 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/ItemPatchIfExistswrite strategies to skip documents excluded by a conditionalspark.cosmos.write.patch.filterinstead of failing the write with412 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/ItemPatchIfExistswrite strategies to skip documents excluded by a conditionalspark.cosmos.write.patch.filterinstead of failing the write with412 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_01was added
Document Translation 2.0.0 Changelog
Breaking Changes
- Renamed
DocumentStatusResult.getCharacterCharged()togetCharacterChargedCount()for naming consistency with the other count properties. Existing callers must update to the new method name. - Replaced the
SingleDocumentTranslationClient.translateandSingleDocumentTranslationAsyncClient.translateconvenience overloadtranslate(String, DocumentTranslateContent, String, String, Boolean)withtranslate(String, DocumentTranslateContent, String, String, String, Boolean, Boolean), adding thedeploymentNameandtranslateTextWithinImageparameters (positioned aftercategoryandallowFallbackrespectively). Existing callers of the previous overload must update their call sites to the new signature. - Made the
typeparameter required ongetSupportedFormats, matching the service contract. Removed the no-argumentgetSupportedFormats()overload fromDocumentTranslationClientandDocumentTranslationAsyncClient; callers must now pass aFileFormatType(for example,getSupportedFormats(FileFormatType.DOCUMENT)). - Changed the underlying values of
FileFormatType.DOCUMENTandFileFormatType.GLOSSARYfromdocument/glossarytoDocument/Glossaryto match the service. The enum constant names are unchanged.
Features Added
- Added support for the
2026-03-01service API version, which is now the default. - Added image translation support:
- Added the
BatchOptionsmodel with thetranslateTextWithinImageproperty, and theoptionsproperty onTranslationBatch, to enable translation of text embedded within images for batch requests. - Added
beginTranslation(List<DocumentTranslationInput>, Boolean)convenience overloads toDocumentTranslationClientandDocumentTranslationAsyncClientto enable batch image translation without constructing aTranslationBatch/BatchOptions. - Added the
translateTextWithinImageparameter toSingleDocumentTranslationClient.translateandSingleDocumentTranslationAsyncClient.translatefor single document requests. - Added image scan reporting to
DocumentStatusResult:imageCharacterDetectedCount,imageChargedCount,totalImageScansSucceededCount, andtotalImageScansFailedCount. - Added image scan totals to
TranslationStatusSummary:totalImageScansSucceededCount,totalImageScansFailedCount, andtotalImagesChargedCount. - Added custom translation model support:
- Added the
deploymentNameproperty toTranslationTargetto specify the deployment name of the custom translation model for a batch translation request. - Added the
deploymentNameproperty toDocumentStatusResult, exposing the deployment name of the custom translation model used for the translation. - Added the
deploymentNameparameter toSingleDocumentTranslationClient.translateandSingleDocumentTranslationAsyncClient.translatefor single document translation requests. - Added the
DocumentTranslateOptionsmodel andtranslate(String, DocumentTranslateContent, DocumentTranslateOptions)convenience overloads toSingleDocumentTranslationClientandSingleDocumentTranslationAsyncClient, grouping the optionalsourceLanguage,category,deploymentName,allowFallback, andtranslateTextWithinImagesettings into a single options bag.
OLTP Spark 3.3 Connector for Azure Cosmos DB SQL API 4.49.2 Changelog
Bugs Fixed
- Fixed
ItemPatch/ItemPatchIfExistswrite strategies to skip documents excluded by a conditionalspark.cosmos.write.patch.filterinstead of failing the write with412 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
- Updated Azure SDK dependency versions to the latest releases.
- Added new library entries to the BOM:
azure-ai-speech-transcriptionazure-ai-voicelive
Storage - Blobs 12.36.0-beta.1 Changelog
Bugs Fixed
- Fixed an issue where
BlobClientBase.openSeekableByteChannelReadissued 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
AccessTierheaders toBlobDownloadHeaders. - Added support for
PutBloboperations returning both the existing MD5 content hash and the new CRC64 checksum. - Added support for Apache Arrow response format for
ListBlobsflat andListBlobshierarchical options. - Added support for content validation with structured message and CRC64 via
ContentValidationAlgorithm. Supported forGetBlob,PutBlob,PutBlock,PutPage, andAppendBlockoperations.
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()andShareFileClient.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) andClientEventInputTextDone(input_text.done), each with optionalcontentIndex - New
ClientEventType.INPUT_TEXT_DELTAandClientEventType.INPUT_TEXT_DONEvalues - Echo cancellation reference source:
AudioEchoCancellationis now@Fluentand exposesreferenceSource(newEchoCancellationReferenceSourceenum withSERVER/CLIENT) andchannelsfor stereo input where channel 1 is the client-supplied echo reference - Azure realtime native voices: new
AzureRealtimeNativeVoice(typeazure-realtime-native) andAzureRealtimeNativeVoiceNameexpandable enum (AARTI,ANDREW,AVA,DENISE,DIYA,ELSA,FLORIAN,FRANCISCA,MEERA,XIAOXIAO,YUNXI,XIMENA) for use with theazure-realtimemodel - Parallel tool calls:
VoiceLiveSessionOptions.setParallelToolCalls(Boolean)/isParallelToolCalls()(and matching accessors onVoiceLiveSessionResponse) 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) andServerEventType.RESPONSE_INVOCATION_DELTApass 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-corefrom1.58.1to1.58.2. - Upgraded Reactor from
3.7.18to3.7.19.
azure-core-http-vertx 1.1.6 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-corefrom1.58.1to1.58.2. - Upgraded Reactor from
3.7.18to3.7.19. - Upgraded
vertx-codegenfrom4.5.27to4.5.32. - Upgraded
vertx-corefrom4.5.27to4.5.32.
azure-core-metrics-opentelemetry 1.0.0-beta.38 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-corefrom1.58.1to1.58.2.
unknown 4.49.2 Changelog
Bugs Fixed
- Fixed
ItemPatch/ItemPatchIfExistswrite strategies to skip documents excluded by a conditionalspark.cosmos.write.patch.filterinstead of failing the write with412 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
- For reference documentation visit the Azure SDK for Java documentation.
- For tutorials, samples, quick starts and other documentation, visit Azure for Java Developers.
- For build reports on code quality, test coverage, etc, visit Azure Java SDK.
- File an issue via Github Issues.
- Check previous questions or ask new ones on StackOverflow using
azure-java-sdktag.
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.