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.- Methods
create_queue
,create_topic
,update_queue
,update_topic
onServiceBusAdministrationClient
now take a new keyword argumentmax_message_size_in_kilobytes
. QueueProperties
andTopicProperties
now have a new instance variablemax_message_size_in_kilobytes
.
- Methods
- The constructor of
ServiceBusAdministrationClient
as well asServiceBusAdministrationClient.from_connection_string
now take keyword argumentapi_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.