You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
1.0.0 (2026-05-13)
Breaking Changes
Consolidated client constructors: QueueClient::from_url() has been renamed to new(), replacing the previous endpoint-plus-queue-name string overload. Each client now has a single new() that takes a fully-formed Url:
QueueClient::new(queue_url: Url, ...)
QueueServiceClient::new(service_url: Url, ...)
Renamed QueueClient::endpoint() and QueueServiceClient::endpoint() to url() for consistency with other Storage clients.
QueueClient::send_message() now returns ListOfSentMessage instead of a single SentMessage. Access the sent message via ListOfSentMessage::items.
Bugs Fixed
QueueClient::new() and QueueServiceClient::new() now reject non-base URLs (e.g. data:, mailto:).