Releases: Azure/azure-sdk-for-rust
Releases · Azure/azure-sdk-for-rust
typespec_macros@0.9.1
0.9.1 (2025-11-09)
Other Changes
- Increment version for re-release following a fix to publishing.
typespec_client_core@0.9.1
0.9.1 (2025-11-09)
Other Changes
- Increment version for re-release following a fix to publishing.
typespec@0.10.1
0.10.1 (2025-11-09)
Other Changes
- Increment version for re-release following a fix to publishing.
azure_storage_queue@0.2.0
0.2.0 (2025-11-11)
Breaking Changes
- Changed
QueueServiceClientListQueuesOptions::method_optionsfromClientMethodOptionstoPagerOptions - Renamed
Response<T, F>::into_body(self) -> Result<Response<T>>tointo_model(self) -> Result<Response<T>>.into_body(self)now returns aResponseBody.
azure_storage_blob@0.7.0
0.7.0 (2025-11-11)
Features Added
- Added support for client construction directly from URLs:
AppendBlobClient::from_url()BlobClient::from_url()BlobContainerClient::from_url()BlockBlobClient::from_url()PageBlobClient::from_url()
- Added support for SAS (shared access signature) URLs via the new
from_url()methods.
Breaking Changes
-
Changed the following options structs'
method_optionsfromClientMethodOptionstoPagerOptions:BlobContainerClientListBlobFlatSegmentOptionsBlobContainerClientListBlobHierarchySegmentOptionsBlobServiceClientListContainersSegmentOptions
-
Removed the
container_name()andblob_name()accessors on relevant clients. -
Removed the
endpointstruct field on all clients, as this value is now returned directly from the underlying generated client. -
Changed the
container_nameandblob_nameparameters from ownedStringto&strreference on relevant client constructor methods (new()). -
The
credentialparameter is nowOptionalonnew()client constructors, allowing for construction of public access clients. -
Renamed
Response<T, F>::into_body(self) -> Result<Response<T>>tointo_model(self) -> Result<Response<T>>.into_body(self)now returns aResponseBody.
Bugs Fixed
Other Changes
azure_security_keyvault_secrets@0.9.0
0.9.0 (2025-11-10)
Breaking Changes
SecretClientListDeletedSecretPropertiesOptions::method_optionsis nowPagerOptions.SecretClientListSecretPropertiesOptions::method_optionsis nowPagerOptions.SecretClientListSecretPropertiesVersionsOptions::method_optionsis nowPagerOptions.- Renamed
Response<T, F>::into_body(self) -> Result<Response<T>>tointo_model(self) -> Result<Response<T>>.into_body(self)now returns aResponseBody.
azure_security_keyvault_keys@0.9.0
0.9.0 (2025-11-10)
Breaking Changes
KeyClientListDeletedKeyPropertiesOptions::method_optionsis nowPagerOptions.KeyClientListKeyPropertiesOptions::method_optionsis nowPagerOptions.KeyClientListKeyPropertiesVersionsOptions::method_optionsis nowPagerOptions.- Renamed
Response<T, F>::into_body(self) -> Result<Response<T>>tointo_model(self) -> Result<Response<T>>.into_body(self)now returns aResponseBody.
azure_security_keyvault_certificates@0.8.0
0.8.0 (2025-11-10)
Breaking Changes
CertificateClient::create_certificate()now returns aPoller<CertificateOperation>.CertificateClientListCertificatePropertiesOptions::method_optionsis nowPagerOptions.CertificateClientListCertificatePropertiesVersionsOptions::method_optionsis nowPagerOptions.CertificateClientListDeletedCertificatePropertiesOptions::method_optionsis nowPagerOptions.CertificateClientListIssuerPropertiesOptions::method_optionsis nowPagerOptions.- Changed
PollerOptions::frequencyfromOption<Duration>toDuration. - Removed
CertificateClient::begin_create_certificate(). - Removed
CertificateClient::resume_create_certificate(). - Removed
wait()function fromPoller<CertificateOperation>. - Renamed
Response<T, F>::into_body(self) -> Result<Response<T>>tointo_model(self) -> Result<Response<T>>.into_body(self)now returns aResponseBody.
azure_messaging_eventhubs_checkpointstore_blob@0.3.0
0.3.0 (2025-11-11)
Other Changes
- Updated dependencies.
azure_messaging_eventhubs@0.9.0
0.9.0 (2025-11-11)
Breaking Changes
- All Event Hubs APIs now return an
azure_messaging_eventhubs::EventHubErrorinstead of anazure_core::Error. - Several
azure_messaging_eventhubs::error::ErrorKindenumerations have been removed because they are no longer needed. - Modified several errors which previously used
azure_core::Error::with_messageto useazure_messaging_eventhubs::EventHubsError::with_message, changing their underlying type.
Other Changes
- Added
azure_messaging_eventhubs::error::ErrorKind::AmqpError,azure_messaging_eventhubs::error::ErrorKind::AzureCore, andazure_messaging_eventhubs::error::ErrorKind::SimpleMessageto describe AMQP originated messages, Azure Core originated messages, and messages which just have a string value respectively. - Added
azure_messaging_eventhubs::Error::with_messageto enable simple error returns with a text message.