Skip to content

azure-servicebus_7.4.0

Choose a tag to compare

@azure-sdk azure-sdk released this 10 Nov 01:04
7e269cd

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.