Azure SDK for Java (February 2022)
The Azure SDK team is pleased to announce our February 2022 client library releases.
152 packages released this month.
Stable Packages (66)
-
App Configuration
-
Attestation
-
Azure Identity Spring
-
Azure Spring Boot AutoConfigure
-
Azure Spring Boot BOM
-
Azure Spring Boot Starter
-
Azure Spring Boot Starter Active Directory
-
Azure Spring Boot Starter Active Directory B2C
-
Azure Spring Boot Starter Cosmos
-
Azure Spring Boot Starter Key Vault Certificates
-
Azure Spring Boot Starter Key Vault Secrets
-
Azure Spring Boot Starter Service bus Jms
-
Azure Spring Boot Starter Storage
-
Azure Spring Cloud Autoconfigure
-
Azure Spring Cloud Context
-
Azure Spring Cloud Dependencies
-
Azure Spring Cloud Integration Core
-
Azure Spring Cloud Integration Event Hubs
-
Azure Spring Cloud Integration Service Bus
-
Azure Spring Cloud Integration Storage Queue
-
Azure Spring Cloud Integration Test
-
Azure Spring Cloud Messaging
-
Azure Spring Cloud Starter Cache
-
Azure Spring Cloud Starter Event Hubs
-
Azure Spring Cloud Starter Event Hubs Kafka
-
Azure Spring Cloud Starter Service bus
-
Azure Spring Cloud Starter Storage Queue
-
Azure Spring Cloud Storage
-
Azure Spring Cloud Stream Binder Event Hubs
-
Azure Spring Cloud Stream Binder Service bus Core
-
Azure Spring Cloud Stream Binder Service bus Queue
-
Azure Spring Cloud Stream Binder Service bus Topic
-
Azure Spring Cloud Stream Binder Test
-
Core
-
Core - AMQP
-
Cosmos DB
-
Event Grid
-
Key Vault - JCA
-
Resource Management
-
Resource Management - App Service
-
Resource Management - Authorization
-
Resource Management - Cognitive Search
-
Resource Management - Compute
-
Resource Management - Container Instances
-
Resource Management - Container Registry
-
Resource Management - Container Service
-
Resource Management - Content Delivery Network
-
Resource Management - Cosmos DB
-
Resource Management - DNS
-
Resource Management - Event Grid
-
Resource Management - Event Hubs
-
Resource Management - Key Vault
-
Resource Management - Managed Service Identity
-
Resource Management - Monitor
-
Resource Management - Network
-
Resource Management - Private DNS
-
Resource Management - Redis
-
Resource Management - Resources
-
Resource Management - SQL
-
Resource Management - Service Bus
-
Resource Management - Spring Cloud
-
Resource Management - Storage
-
Resource Management - Traffic Manager
-
SDK - Bill of Materials
-
Spring Data Cosmos
-
Tables
Patch Updates (37)
-
App Configuration
-
Azure Mixed Reality Authentication
-
Azure Remote Rendering
-
Cognitive Search
-
Communication Chat
-
Communication Common
-
Communication Identity
-
Communication Phone Numbers
-
Communication Sms
-
Container Registry
-
Core - HTTP Netty
-
Core - HTTP OkHttp
-
Core - Test
-
Core Serializer GSON JSON
-
Core Serializer Jackson JSON
-
Digital Twins - Core
-
Event Hubs
-
Event Hubs - Azure Blob Storage Checkpoint Store
-
Form Recognizer
-
Identity
-
Management - Core
-
Metrics Advisor
-
Monitor Query
-
Resource Management - MySQL
-
Resource Management - PostgreSQL
-
Schema Registry
-
Service Bus
-
Storage - Blobs
-
Storage - Blobs Batch
-
Storage - Blobs Cryptography
-
Storage - Common
-
Storage - Files Data Lake
-
Storage - Files Shares
-
Storage - Internal Avro
-
Storage - Queues
-
Text Analytics
-
Web PubSub
Beta Packages (33)
-
Anomaly Detector
-
Cognitive Search
-
Communication Phone Numbers
-
Core Experimental
-
Core Serializer Apache Avro
-
Cosmos DB
-
Form Recognizer
-
IoT Device Update
-
Key Vault - Administration
-
Key Vault - Certificates
-
Key Vault - Keys
-
Key Vault - Secrets
-
Resource Management - Application Insights
-
Resource Management - Bot Service
-
Resource Management - Communication
-
Resource Management - Data Factory
-
Resource Management - Device Provisioning Services
-
Resource Management - IoT Hub
-
Resource Management - Lab Services
-
Resource Management - Synapse Analytics
-
Schema Registry - Avro
-
Storage - Blobs
-
Storage - Blobs Batch
-
Storage - Blobs Changefeed
-
Storage - Blobs Cryptography
-
Storage - Blobs NIO
-
Storage - Common
-
Storage - Files Data Lake
-
Storage - Files Shares
-
Storage - Internal Avro
-
Storage - Queues
-
Synapse - Artifacts
-
Tracing OpenTelemetry Plugin
Release highlights
Anomaly Detector 3.0.0-beta.4 Changelog
- Fix release issues
App Configuration 1.2.5 Changelog
Other Changes
Dependency Updates
- Updated
azure-core
from1.22.0
to1.24.1
. - Updated
azure-core-http-netty
from1.11.2
to1.11.6
.
App Configuration 1.3.0 Changelog
Features Added
- Added interfaces from
com.azure.core.client.traits
toConfigurationClientBuilder
. - Added a new method
retryOptions
toConfigurationClientBuilder
.
Attestation 1.0.0 Changelog
Bugs Fixed
- Attestation tests now all pass when run in Live mode.
Breaking Changes
- Removed
buildSigningCertificatesClient
andbuildSigningCertificatesAsyncClient
replaced withgetAttestationSigners
andgetAttestationSignersWithResponse
onAttestationClient
andAttestationAsyncClient
. - Removed
buildMetadataConfigurationClient
andbuildMetadataConfigurationAsyncClient
API get
API becomesgetMetadataConfiguration
onAttestationClient
getWithResponse
becomesgetMetadataConfigurationWithResponse
getAsync
becomesgetMetadataConfiguration
onAttestationAsyncClient
.getWithResponseAsync
becomesgetMetadataConfigurationWithResponse
onAttestationAsyncClient
.- Removed
InitTimeData
,RunTimeData
, andDataType
types - All functionality incorporated into
AttestOpenEnclaveRequest
andAttestSgxEnclaveRequest
- Changed function signature for
AttestOpenEnclaveRequest
andAttestSgxEnclaveRequest
. - Changed
setInitTimeData
to accept abyte[]
instead of aInitTimeData
.setInitTimeData
sets a binaryInitTime
data value. - Added
setInitTimeJson
which takes abyte[]
and sets theInitTime
data as JSON. - Similarly,
setRunTimeData
was changed to accept abyte[]
. - And
setRunTimeJson
was added to set theRunTimeData
as JSON. - Renamed
AttestOpenEnclaveRequest
toAttestOpenEnclaveOptions
andAttestSgxEnclaveRequest
toAttestSgxEnclaveOptions
. - Instead of being directly instantiated,
AttestOpenEnclaveOptions
andAttestSgxEnclaveOptions
are instantiated via a factory method:AttestSgxEnclaveOptions options = AttestSgxEnclaveOptions .fromQuote(decodedSgxEnclaveReport) .setRunTimeData(new byte[] { 1, 2, 3, 4, 5});
or
AttestOpenEnclaveOptions options = AttestOpenEnclaveOptions .fromQuote(decodedOpenEnclaveReport) .setRunTimeJson("{ \"xxx\": 123 }".getBytes(StandardCharsets.UTF_8))
attestSgxEnclave
andattestOpenEnclave
return anAttestationResponse
type instead of aResponse
type to get access to theAttestationToken
returned from the attestation service.- Converted the
AttestationToken
andAttestationSigner
types to interfaces since there are no scenarios where customers will instantiate them directly. - Renamed
buildAttestationClient
tobuildClient
andbuildAsyncAttestationClient
tobuildAsyncClient
to match API design guidelines. - Removed
buildPolicyClient
,buildPolicyAsyncClient
,buildPolicyCertificatesClient
andbuildPolicyCertificatesAsyncClient
methods on theAttestationClientBuilder
class and implemented a newAttestationAdministrationClient
class which contains the administrative APIs. - Removed
buildPolicyCertificatesClient
andbuildPolicyCertificatesAsyncClient
, andPolicyCertificatesClient
andPolicyCertificatesAsyncClient
replacing the functionality with thelistPolicyManagementCertificates
,addPolicyManagementCertificate
andremovePolicyManagementCertificate
APIs on theAttestationAdministrationClient
object. - Removed
JsonWebKey
,JsonWebKeySet
,PolicyCertificatesModificationResult
,PolicyCertificatesModifyResponse
, andCertificatesResponse
objects because they are no longer a part of the public API surface. - Refactored
AttestationSigningKey
class to require certificate and signing key parameters in constructor. - listAttestationSigners now returns an
AttestationSignersCollection
object instead of a rawList<AttestationSigner>
Azure Identity Spring 1.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Mixed Reality Authentication 1.1.4 Changelog
Other Changes
Dependency updates
- Updated azure-core to 1.24.1.
- Updated azure-identity to 1.4.3.
- Updated azure-core-http-netty to 1.11.6.
Azure Remote Rendering 1.1.3 Changelog
Dependency updates
- Updated azure-core to 1.24.1.
- Updated azure-identity to 1.4.3.
Azure Spring Boot AutoConfigure 3.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Boot BOM 3.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Boot Starter 3.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Boot Starter Active Directory 3.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Boot Starter Active Directory B2C 3.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Boot Starter Cosmos 3.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Boot Starter Key Vault Certificates 3.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Boot Starter Key Vault Secrets 3.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Boot Starter Service bus Jms 3.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Boot Starter Storage 3.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Autoconfigure 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Context 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Dependencies 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Integration Core 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Integration Event Hubs 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Integration Service Bus 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Integration Storage Queue 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Integration Test 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Messaging 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Starter Cache 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Starter Event Hubs 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Starter Event Hubs Kafka 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Starter Service bus 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Starter Storage Queue 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Storage 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Stream Binder Event Hubs 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Stream Binder Service bus Core 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Stream Binder Service bus Queue 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Stream Binder Service bus Topic 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Azure Spring Cloud Stream Binder Test 2.13.0 Changelog
This release is compatible with Spring Boot 2.5.5-2.5.8, 2.6.0-2.6.2.
Dependency Upgrades
- Upgrade to spring-boot-dependencies:2.6.2.
Cognitive Search 11.4.6 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.22.0
to version1.24.1
. - Upgraded
azure-core-http-netty
from1.11.2
to version1.11.6
. - Upgraded
azure-core-serializer-json-jackson
from1.2.9
to version1.2.12
.
Cognitive Search 11.5.0-beta.6 Changelog
Features Added
- Added
Unk
as anOcrSkillLanguage
value. The values are used to set the default language code for the OCR cognitive skill. - Support for
AzureMachineLearningSkill
. The AML skill allows you to extend AI enrichment with a custom Azure Machine Learning (AML) model. Once an AML model is trained and deployed, an AML skill integrates it into AI enrichment. - Added interfaces from
com.azure.core.client.traits
toSearchIndexerClientBuilder
,SearchIndexClientBuilder
andSearchClientBuilder
Cognitive Search 11.4.7 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to version1.25.0
. - Upgraded
azure-core-http-netty
from1.11.6
to version1.11.7
. - Upgraded
azure-core-serializer-json-jackson
from1.2.12
to version1.2.13
.
Communication Chat 1.1.3 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-communication-common
to 1.0.7 - Upgraded
azure-core
to 1.24.1
Communication Common 1.0.7 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.22.0
to version1.24.1
. - Upgraded
azure-core-http-netty
from1.11.2
to version1.11.6
.
Communication Common 1.0.8 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to version1.25.0
. - Upgraded
azure-core-http-netty
from1.11.6
to version1.11.7
.
Communication Identity 1.1.5 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.22.0
to version1.24.1
. - Upgraded
azure-communication-common
from1.0.6
to version1.0.7
.
Communication Identity 1.1.6 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to version1.25.0
. - Upgraded
azure-communication-common
from1.0.7
to version1.0.8
.
Communication Phone Numbers 1.1.0-beta.1 Changelog
Features Added
- Users can now purchase United Kingdom (GB) toll free and geographic phone numbers for PSTN Calling
- Users can now purchase Denmark (DK) toll free and geographic phone numbers for PSTN Calling
Communication Phone Numbers 1.0.7 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.22.0
to version1.24.1
. - Upgraded
azure-communication-common
from1.0.6
to version1.0.7
.
Communication Sms 1.0.7 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.22.0
to version1.24.1
. - Upgraded
azure-communication-common
from1.0.6
to version1.0.7
.
Container Registry 1.0.1 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to version1.25.0
. - Upgraded
azure-core-http-netty
from1.11.6
to version1.11.7
.
Core 1.25.0 Changelog
Features Added
- Added
AzureKeyCredentialTrait
,AzureNamedKeyCredentialTrait
,AzureSasCredentialTrait
,ConfigurationTrait
,ConnectionStringTrait
,EndpointTrait
,HttpTrait
, andTokenCredentialTrait
interfaces that represent common cross-cutting aspects of functionality offered by libraries in the Azure SDK for Java. - Added a static method
toRfc1123String
which converts anOffsetDateTime
to an RFC1123 datetime string.
Core - AMQP 2.4.0 Changelog
Bugs Fixed
- Fixed a bug which resulted in higher than needed memory consumption when sending messages. (#26373)
Features Added
- Added
AmqpTrait
interface that represent common cross-cutting (and AMQP-related) aspects of functionality offered by libraries in the Azure SDK for Java. - Added structured logging to generate more easily queried log messages. (#26561)
Core - HTTP Netty 1.11.7 Changelog
Bugs Fixed
- Fixed a bug where proxying clients wouldn’t use the no-op resolver. (#26611)
Core - HTTP OkHttp 1.7.9 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to1.25.0
.
Core - Test 1.7.8 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to1.25.0
.
Core Experimental 1.0.0-beta.24 Changelog
Features Added
- Added
com.azure.core.experimental.models.MessageWithMetadata
.
Core Serializer Apache Avro 1.0.0-beta.20 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to1.25.0
.
Core Serializer GSON JSON 1.1.12 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to1.25.0
.
Core Serializer Jackson JSON 1.2.13 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to1.25.0
.
Cosmos DB 4.25.0 Changelog
Key Bug Fixes
- Fixed
NullPointerException
in bulk mode for deleted/recreated containers. - Added missing exception cause in case of
InternalServerException
.
Cosmos DB 4.26.0-beta.1 Changelog
Features Added
- Added support to resume a “multi order by query” from a continuation token - See PR 26267
Cosmos DB 4.26.0 Changelog
Features Added
- Added support to resume a “multi order by query” from a continuation token - See PR 26267
- Added
RNTBD - open connections
information inClientTelemetry
. - Added Beta API to set custom
Reactor
scheduler to be used by theChangeFeedProcessor
implementation - See PR 26750 - Added support for correlating queries executed via the Cosmos Spark connector with service-telemetry based on the
correlationActivityId
- See PR 26908
Digital Twins - Core 1.1.5 Changelog
Other Changes
Dependency updates
- Upgraded
azure-core
dependency from1.22.0
to1.24.1
. - Upgraded
azure-core-http-netty
dependency from1.11.2 to
1.11.6`. - Upgraded
azure-core-serializer-json-jackson
dependency from1.2.7
to1.2.12
. - Upgraded
jackson-annotations
dependency from2.12.5
to2.13.1
.
Event Grid 4.8.0 Changelog
Features Added
- Added new properties
deleteLocation
toAcsRecordingChunkInfoProperties
recordingChannelType
,recordingContentType
,recordingFormatType
toAcsRecordingFileStatusUpdatedEventData
-
connectedRegistry
,location
toContainerRegistryImagePushedEventData
,ContainerRegistryImageDeletedEventData
,ContainerRegistryEventConnectedRegistry
,ContainerRegistryChartPushedEventData
,ContainerRegistryChartDeletedEventData
,ContainerResistryArtifactEventData
- Added new model types,
ContainerRegistryEventConnectedRegistry
,RecordingChannelType
,RecordingContentType
,RecordingFormatType
Event Grid 4.9.0 Changelog
Features Added
- Added interfaces from
com.azure.core.client.traits
toEventGridPublisherClientBuilder
. - Added a new method
retryOptions
toEventGridPublisherClientBuilder
. - Updated ARM events,
ResourceActionCancelEventData
,ResourceActionFailureEventData
,ResourceActionSuccessEventData
,ResourceDeleteCancelEventData
,ResourceDeleteFailureEventData
,ResourceDeleteSuccessEventData
,ResourceWriteCancelEventData
,ResourceWriteFailureEventData
,ResourceWriteSuccessEventData
. - Added new type
ResourceAuthorization
andResourceHttpRequest
. - Deprecated
getHttpRequest()
and replaced it withgetResourceAuthorization()
,setHttpRequest(String httpRequest)
and replaced it withsetResourceAuthorization(ResourceAuthorization authorization)
,getClaims()
and replaced it withgetResourceClaims()
,setClaims(String claims)
and replaced it withsetResourceClaims(Map<String, String> claims)
,getAuthorization()
and replaced it withgetResourceHttpRequest()
,setAuthorization(String authorization)
and replaced it withsetResourceHttpRequest(ResourceHttpRequest httpRequest)
.
Event Hubs 5.10.4 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.22.0
to1.24.1
. - Upgraded
azure-core-amqp
from2.3.3
to2.3.7
.
Event Hubs - Azure Blob Storage Checkpoint Store 1.10.3 Changelog
Other Changes
Dependency Updates
- Update
azure-messaging-eventhubs
dependency to5.10.4
. - Update
azure-storage-blob
dependency to12.14.3
.
Form Recognizer 4.0.0-beta.4 Changelog
Breaking Changes
- Added
DocumentBuildMode
onbeginBuildModel
APIs to support building models with techniques for diverse templates.
Features Added
- Added interfaces from
com.azure.core.client.traits
toDocumentAnalysisClientBuilder
andDocumentModelAdministrationClientBuilder
- Added support for currency type field value.
- Added support for users to optionally specify tags when building, copying
or creating a composed a model using
tags
attribute onBuildModelOptions
,CreateComposedModelOptions
andCopyAuthorizationOptions
model. - Added
languages
property onAnalyzeResult
. - Added model
DocumentLanguage
that includes information about the detected languages found in a document.
Form Recognizer 3.1.8 Changelog
Other Changes
Dependency Updates
- Updated
azure-core
to1.25.0
. - Updated
azure-core-http-netty
to1.11.7
.
Identity 1.4.4 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
dependency to 1.25.0
IoT Device Update 1.0.0-beta.2 Changelog
Breaking Changes
This is a new version of client SDK. Changes are:
- Remove models, use
BinaryData
as request and response payload. - A sync client and an async client for each operation group.
- Add
RequestOptions
to client method parameters. - Return type of client method is always
Response
except paging and long-running operations. - Allow users to set
ServiceVersion
in client builder.
Key Vault - Administration 4.1.0-beta.4 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
dependency to1.24.1
- Upgraded
azure-core-http-netty
dependency to1.11.6
Key Vault - Certificates 4.3.0-beta.4 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
dependency to1.24.1
- Upgraded
azure-core-http-netty
dependency to1.11.6
Key Vault - JCA 2.5.0 Changelog
Dependency Upgrades
Regular updates for dependency versions.
Key Vault - Keys 4.4.0-beta.6 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
dependency to1.24.1
- Upgraded
azure-core-http-netty
dependency to1.11.6
Key Vault - Secrets 4.4.0-beta.4 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
dependency to1.24.1
- Upgraded
azure-core-http-netty
dependency to1.11.6
Management - Core 1.5.2 Changelog
Metrics Advisor 1.0.5 Changelog
Other Changes
Dependency Updates
- Updated
azure-core
to1.24.1
. - Updated
azure-core-http-netty
to1.11.6
.
Monitor Query 1.0.2 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
to1.24.1
- Upgraded
azure-core-http-netty
to1.11.6
Monitor Query 1.0.3 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to version1.25.0
. - Upgraded
azure-core-http-netty
from1.11.6
to version1.11.7
.
Resource Management 2.11.0 Changelog
Resource Management - App Service 2.11.0 Changelog
Resource Management - Application Insights 1.0.0-beta.3 Changelog
Resource Management - Authorization 2.11.0 Changelog
Resource Management - Bot Service 1.0.0-beta.3 Changelog
Resource Management - Cognitive Search 2.11.0 Changelog
Resource Management - Communication 1.1.0-beta.1 Changelog
Resource Management - Compute 2.11.0 Changelog
Resource Management - Container Instances 2.11.0 Changelog
Resource Management - Container Registry 2.11.0 Changelog
Resource Management - Container Service 2.11.0 Changelog
Resource Management - Content Delivery Network 2.11.0 Changelog
Resource Management - Cosmos DB 2.11.0 Changelog
Resource Management - DNS 2.11.0 Changelog
Resource Management - Data Factory 1.0.0-beta.10 Changelog
Resource Management - Device Provisioning Services 1.1.0-beta.1 Changelog
Resource Management - Event Grid 1.1.0 Changelog
Resource Management - Event Hubs 2.11.0 Changelog
Resource Management - IoT Hub 1.2.0-beta.1 Changelog
Resource Management - Key Vault 2.11.0 Changelog
Resource Management - Lab Services 1.0.0-beta.2 Changelog
Resource Management - Managed Service Identity 2.11.0 Changelog
Resource Management - Monitor 2.11.0 Changelog
Resource Management - MySQL 1.0.2 Changelog
Resource Management - Network 2.11.0 Changelog
Resource Management - PostgreSQL 1.0.2 Changelog
Resource Management - Private DNS 2.11.0 Changelog
Resource Management - Redis 2.11.0 Changelog
Resource Management - Resources 2.11.0 Changelog
Resource Management - SQL 2.11.0 Changelog
Resource Management - Service Bus 2.11.0 Changelog
Resource Management - Spring Cloud 2.11.0 Changelog
Resource Management - Storage 2.11.0 Changelog
Resource Management - Synapse Analytics 1.0.0-beta.5 Changelog
Resource Management - Traffic Manager 2.11.0 Changelog
SDK - Bill of Materials 1.1.0 Changelog
Dependency Updates
- Updated Azure SDK dependency versions to more recent releases.
- Removed non-Azure SDK dependencies from the Azure SDK BOM. Azure SDK BOM used to include external dependencies till now however this let to dependency conflicts in situations where our libraries were used along side other frameworks. Given the above we are removing 3rd party dependencies from the BOM and letting the Azure SDK Client implementation libraries bring them in at runtime. We continue to ensure all our client libraries have unified set of external dependencies to prevents conflicts when used together.
Breaking Changes
If you depend on Azure SDK BOM to get versions for external libraries you would now see compilation errors in your project. Please explicitly add the required versions of your external dependencies to your project POM files. Depending on implicit version for transitive dependencies should be avoided as it is not a recommended practice.
Schema Registry 1.0.1 Changelog
Bugs Fixed
- Fixed double serialization of JSON when publishing/reading schemas. #25789
Schema Registry - Avro 1.0.0-beta.8 Changelog
Other Changes
Dependency Updates
- Update
azure-data-schemaregistry
dependency to1.0.1
. - Update
azure-core-serializer-avro-apache
dependency to1.0.0-beta.17
.
Service Bus 7.5.2 Changelog
Bugs Fixed
- Fixed lock renewal delay behavior, renewal delay is more relaxed, with it happening at half the remaining time now. Issue 25259.
Dependency Updates
- Upgraded
azure-core
from1.23.1
to1.24.1
. - Upgraded
azure-core-amqp
from2.3.5
to2.3.7
.
Spring Data Cosmos 3.17.0 Changelog
Features Added
- Updated
Spring Boot
to version2.6.2
. - Updated
azure-cosmos
to version4.25.0
.
Spring Data Cosmos 3.18.0 Changelog
Features Added
- Updated
azure-cosmos
to version4.26.0
.
Storage - Blobs 12.14.3 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.22.0
to version1.24.1
. - Upgraded
azure-core-http-netty
from1.11.2
to version1.11.6
. - Upgraded
azure-storage-common
from12.14.1
to version12.14.2
. - Upgraded
azure-storage-internal-avro
from12.1.2
to version12.1.3
.
Storage - Blobs 12.15.0-beta.3 Changelog
Bugs Fixed
- Fixed a bug in builders that would cause container or blobName to be erased if specified before the connection string.
Features Added
- Added support for 2021-04-10 service version.
- Added support for filterBlobs api on container clients.
Storage - Blobs 12.14.4 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to version1.25.0
. - Upgraded
azure-core-http-netty
from1.11.6
to version1.11.7
. - Upgraded
azure-storage-common
from12.14.2
to version12.14.3
. - Upgraded
azure-storage-internal-avro
from12.1.3
to version12.1.4
.
Storage - Blobs Batch 12.11.3 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.22.0
to version1.24.1
. - Upgraded
azure-core-http-netty
from1.11.2
to version1.11.6
. - Upgraded
azure-storage-blob
from12.14.2
to version12.14.3
.
Storage - Blobs Batch 12.12.0-beta.3 Changelog
Features Added
- Added support for 2021-04-10 service version.
Storage - Blobs Changefeed 12.0.0-beta.14 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.23.0
to version1.24.1
. - Upgraded
azure-core-http-netty
from1.11.3
to version1.11.6
. - Upgraded
azure-storage-blob
from12.15.0-beta.2
to version12.14.3
.
Storage - Blobs Changefeed 12.0.0-beta.15 Changelog
Features Added
- Added support for 2021-04-10 service version.
Storage - Blobs Cryptography 12.14.3 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.22.0
to version1.24.1
. - Upgraded
azure-core-http-netty
from1.11.2
to version1.11.6
. - Upgraded
azure-storage-blob
from12.14.2
to version12.14.3
.
Storage - Blobs Cryptography 12.15.0-beta.3 Changelog
Bugs Fixed
- Fixed a bug in builders that would cause container or blobName to be erased if specified before the connection string.
Features Added
- Added support for 2021-04-10 service version.
Storage - Blobs NIO 12.0.0-beta.14 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.23.0
to version1.24.1
. - Upgraded
azure-core-http-netty
from1.11.3
to version1.11.6
. - Upgraded
azure-storage-blob
from12.15.0-beta.2
to version12.14.3
.
Storage - Blobs NIO 12.0.0-beta.15 Changelog
Bugs Fixed
- Fixed a bug that would prevent deleting an empty directory in the case where one directory name was a prefix of the other.
Features Added
- Added support for 2021-04-10 service version.
- Added
AzurePath.fromBlobUrl
to help convert from a blob url to an AzurePath - Added a configuration option
AZURE_STORAGE_SKIP_INITIAL_CONTAINER_CHECK
to skip the initial container check in cases where the authentication method used will not have necessary permissions.
Storage - Common 12.14.2 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.22.0
to version1.24.1
. - Upgraded
azure-core-http-netty
from1.11.2
to version1.11.6
.
Storage - Common 12.15.0-beta.3 Changelog
Features Added
- Added support for 2021-04-10 service version.
Storage - Common 12.14.3 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to version1.25.0
. - Upgraded
azure-core-http-netty
from1.11.6
to version1.11.7
.
Storage - Files Data Lake 12.7.3 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.22.0
to version1.24.1
. - Upgraded
azure-core-http-netty
from1.11.2
to version1.11.6
. - Upgraded
azure-storage-blob
from12.14.2
to version12.14.3
.
Storage - Files Data Lake 12.8.0-beta.3 Changelog
Bugs Fixed
- Fixed a bug in builders that would cause fileSystem or path name to be erased if specified before the connection string.
Features Added
- Added support for 2021-04-10 service version.
Storage - Files Shares 12.11.3 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.22.0
to version1.24.1
. - Upgraded
azure-core-http-netty
from1.11.2
to version1.11.6
. - Upgraded
azure-storage-common
from12.14.1
to version12.14.2
.
Storage - Files Shares 12.12.0-beta.3 Changelog
Features Added
- Added support for the 2021-04-10 service version.
- Added support for renaming files and directories.
Storage - Files Shares 12.11.4 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to version1.25.0
. - Upgraded
azure-core-http-netty
from1.11.6
to version1.11.7
. - Upgraded
azure-storage-common
from12.14.2
to version12.14.3
.
Storage - Internal Avro 12.1.3 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.22.0
to version1.24.1
. - Upgraded
azure-core-http-netty
from1.11.2
to version1.11.6
. - Upgraded
azure-storage-common
from12.14.1
to version12.14.2
.
Storage - Internal Avro 12.2.0-beta.3 Changelog
Features Added
- Added support for the 2021-04-10 service version.
- Added support for renaming files and directories.
Storage - Internal Avro 12.1.4 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to version1.25.0
. - Upgraded
azure-core-http-netty
from1.11.6
to version1.11.7
. - Upgraded
azure-storage-common
from12.14.2
to version12.14.3
.
Storage - Queues 12.11.3 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.22.0
to version1.24.1
. - Upgraded
azure-core-http-netty
from1.11.2
to version1.11.6
. - Upgraded
azure-storage-common
from12.14.1
to version12.14.2
.
Storage - Queues 12.12.0-beta.3 Changelog
Bugs Fixed
- Fixed a bug in builders that would cause queue name to be erased if specified before the connection string.
Features Added
- Added support for 2021-04-10 service version.
Storage - Queues 12.11.4 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to version1.25.0
. - Upgraded
azure-core-http-netty
from1.11.6
to version1.11.7
. - Upgraded
azure-storage-common
from12.14.2
to version12.14.3
.
Synapse - Artifacts 1.0.0-beta.8 Changelog
Features Added
- Added
MetaStoreClient
andMetaStoreAsyncClient
- Added
MetastoreRegistrationResponse
,MetastoreRequestSuccessResponse
,MetastoreUpdateObject
,MetastoreUpdationResponse
,NotebookParameter
,NotebookParameterType
,RequestStatus
,ResourceStatus
model classes.
Tables 12.2.0 Changelog
Features added
- Implemented new traits (micro-interfaces) in
TableClientBuiler
andTableServiceClientBuilder
. This makes the experience of using client builders more consistent across libraries in the Azure SDK for Java.
Text Analytics 5.1.5 Changelog
Other Changes
Dependency Updates
- Updated
azure-core
from1.22.0
to1.24.1
. - Updated
azure-core-http-netty
from1.11.2
to1.11.6
.
Text Analytics 5.1.6 Changelog
Other Changes
Dependency Updates
- Updated
azure-core
to1.25.0
. - Updated
azure-core-http-netty
to1.11.7
.
Tracing OpenTelemetry Plugin 1.0.0-beta.20 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to1.25.0
.
Web PubSub 1.0.1 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.23.0
to1.24.1
. - Upgraded
azure-core-http-netty
from1.11.3
to1.11.6
.
Web PubSub 1.0.2 Changelog
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.24.1
to1.25.0
. - Upgraded
azure-core-http-netty
from1.11.6
to1.11.7
.
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-sdk
tag.
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>azure-ai-anomalydetector</artifactId>
<version>3.0.0-beta.4</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-ai-formrecognizer</artifactId>
<version>4.0.0-beta.4</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-ai-formrecognizer</artifactId>
<version>3.1.8</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-ai-metricsadvisor</artifactId>
<version>1.0.5</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-ai-textanalytics</artifactId>
<version>5.1.5</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-ai-textanalytics</artifactId>
<version>5.1.6</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-analytics-synapse-artifacts</artifactId>
<version>1.0.0-beta.8</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-communication-chat</artifactId>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-communication-common</artifactId>
<version>1.0.7</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-communication-common</artifactId>
<version>1.0.8</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-communication-identity</artifactId>
<version>1.1.5</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-communication-identity</artifactId>
<version>1.1.6</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-communication-phonenumbers</artifactId>
<version>1.1.0-beta.1</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-communication-phonenumbers</artifactId>
<version>1.0.7</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-communication-sms</artifactId>
<version>1.0.7</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-containers-containerregistry</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core</artifactId>
<version>1.25.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-amqp</artifactId>
<version>2.4.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-experimental</artifactId>
<version>1.0.0-beta.24</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-http-netty</artifactId>
<version>1.11.7</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-http-okhttp</artifactId>
<version>1.7.9</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-management</artifactId>
<version>1.5.2</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-serializer-avro-apache</artifactId>
<version>1.0.0-beta.20</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-serializer-json-gson</artifactId>
<version>1.1.12</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-serializer-json-jackson</artifactId>
<version>1.2.13</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-test</artifactId>
<version>1.7.8</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-tracing-opentelemetry</artifactId>
<version>1.0.0-beta.20</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-cosmos</artifactId>
<version>4.25.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-cosmos</artifactId>
<version>4.26.0-beta.1</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-cosmos</artifactId>
<version>4.26.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-data-appconfiguration</artifactId>
<version>1.2.5</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-data-appconfiguration</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-data-schemaregistry</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-data-schemaregistry-apacheavro</artifactId>
<version>1.0.0-beta.8</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-data-tables</artifactId>
<version>12.2.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-digitaltwins-core</artifactId>
<version>1.1.5</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
<version>1.4.4</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-identity-spring</artifactId>
<version>1.13.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-iot-deviceupdate</artifactId>
<version>1.0.0-beta.2</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-messaging-eventgrid</artifactId>
<version>4.8.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-messaging-eventgrid</artifactId>
<version>4.9.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-messaging-eventhubs</artifactId>
<version>5.10.4</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-messaging-eventhubs-checkpointstore-blob</artifactId>
<version>1.10.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-messaging-servicebus</artifactId>
<version>7.5.2</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-messaging-webpubsub</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-messaging-webpubsub</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-mixedreality-authentication</artifactId>
<version>1.1.4</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-mixedreality-remoterendering</artifactId>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-monitor-query</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-monitor-query</artifactId>
<version>1.0.3</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-applicationinsights</artifactId>
<version>1.0.0-beta.3</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-appplatform</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-appservice</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-authorization</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-botservice</artifactId>
<version>1.0.0-beta.3</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-cdn</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-communication</artifactId>
<version>1.1.0-beta.1</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-compute</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-containerinstance</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-containerregistry</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-containerservice</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-cosmos</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-datafactory</artifactId>
<version>1.0.0-beta.10</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-deviceprovisioningservices</artifactId>
<version>1.1.0-beta.1</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-dns</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-eventgrid</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-eventhubs</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-iothub</artifactId>
<version>1.2.0-beta.1</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-keyvault</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-labservices</artifactId>
<version>1.0.0-beta.2</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-monitor</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-msi</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-mysql</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-network</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-postgresql</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-privatedns</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-redis</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-resources</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-search</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-servicebus</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-sql</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-storage</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-synapse</artifactId>
<version>1.0.0-beta.5</version>
</dependency>
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-trafficmanager</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-sdk-bom</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-search-documents</artifactId>
<version>11.4.6</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-search-documents</artifactId>
<version>11.5.0-beta.6</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-search-documents</artifactId>
<version>11.4.7</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-security-attestation</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-security-keyvault-administration</artifactId>
<version>4.1.0-beta.4</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-security-keyvault-certificates</artifactId>
<version>4.3.0-beta.4</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-security-keyvault-jca</artifactId>
<version>2.5.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-security-keyvault-keys</artifactId>
<version>4.4.0-beta.6</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-security-keyvault-secrets</artifactId>
<version>4.4.0-beta.4</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-boot</artifactId>
<version>3.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-boot-bom</artifactId>
<version>3.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-boot-starter</artifactId>
<version>3.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-boot-starter-active-directory</artifactId>
<version>3.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-boot-starter-active-directory-b2c</artifactId>
<version>3.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-boot-starter-cosmos</artifactId>
<version>3.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-boot-starter-keyvault-certificates</artifactId>
<version>3.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-boot-starter-keyvault-secrets</artifactId>
<version>3.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-boot-starter-servicebus-jms</artifactId>
<version>3.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-boot-starter-storage</artifactId>
<version>3.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-cloud-autoconfigure</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-cloud-context</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-cloud-dependencies</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-cloud-messaging</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-cloud-starter-cache</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-cloud-starter-eventhubs</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-cloud-starter-eventhubs-kafka</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-cloud-starter-servicebus</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-cloud-starter-storage-queue</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-cloud-storage</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-cloud-stream-binder-eventhubs</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-cloud-stream-binder-servicebus-core</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-cloud-stream-binder-servicebus-queue</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-cloud-stream-binder-servicebus-topic</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-cloud-stream-binder-test</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-spring-data-cosmos</artifactId>
<version>3.17.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-spring-data-cosmos</artifactId>
<version>3.18.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-integration-core</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-integration-eventhubs</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-integration-servicebus</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-integration-storage-queue</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-integration-test</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob</artifactId>
<version>12.14.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob</artifactId>
<version>12.15.0-beta.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob</artifactId>
<version>12.14.4</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob-batch</artifactId>
<version>12.11.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob-batch</artifactId>
<version>12.12.0-beta.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob-changefeed</artifactId>
<version>12.0.0-beta.14</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob-changefeed</artifactId>
<version>12.0.0-beta.15</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob-cryptography</artifactId>
<version>12.14.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob-cryptography</artifactId>
<version>12.15.0-beta.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob-nio</artifactId>
<version>12.0.0-beta.14</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob-nio</artifactId>
<version>12.0.0-beta.15</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-common</artifactId>
<version>12.14.2</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-common</artifactId>
<version>12.15.0-beta.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-common</artifactId>
<version>12.14.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-file-datalake</artifactId>
<version>12.7.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-file-datalake</artifactId>
<version>12.8.0-beta.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-file-share</artifactId>
<version>12.11.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-file-share</artifactId>
<version>12.12.0-beta.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-file-share</artifactId>
<version>12.11.4</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-internal-avro</artifactId>
<version>12.1.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-internal-avro</artifactId>
<version>12.2.0-beta.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-internal-avro</artifactId>
<version>12.1.4</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-queue</artifactId>
<version>12.11.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-queue</artifactId>
<version>12.12.0-beta.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-queue</artifactId>
<version>12.11.4</version>
</dependency>
Feedback
If you have a bug or feature request for one of the libraries, please post an issue to GitHub.