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.
The key has expired.
7.4.0 (2021-11-09)
Features Added
GA the support to create and update queues and topics of large message size to ServiceBusAdministrationClient. This feature is only available for Service Bus of Premium Tier.
Methodscreate_queue, create_topic, update_queue, update_topic on ServiceBusAdministrationClient now take a new keyword argument max_message_size_in_kilobytes.
QueueProperties and TopicProperties now have a new instance variable max_message_size_in_kilobytes.
The constructor ofServiceBusAdministrationClient as well as ServiceBusAdministrationClient.from_connection_string now take keyword argument api_version to configure the Service Bus API version. Supported service versions are "2021-05" and "2017-04".
Added new enum class azure.servicebus.management.ApiVersion to represent the supported Service Bus API versions.
Bugs Fixed
Fixed bug that ServiceBusReceiver can not connect to sessionful entity with session id being empty string.
Fixed bug that ServiceBusMessage.partition_key can not parse empty string properly.