7.2.0b1 (2021-04-07)
New Features
- Added support for using
azure.core.credentials.AzureSasCredential
as credential for authenticating the clients. - Added support for sending AMQP annotated message which allows full access to the AMQP message fields.
-azure.servicebus.AMQPAnnotatedMessage
is now made public and could be instantiated for sending. - Added new enum class
azure.servicebus.AMQPMessageBodyType
to represent the body type of the message message which includes:DATA
: The body of message consists of one or more data sections and each section contains opaque binary data.SEQUENCE
: The body of message consists of one or more sequence sections and each section contains an arbitrary number of structured data elements.VALUE
: The body of message consists of one amqp-value section and the section contains a single AMQP value.
- Added new property
body_type
onazure.servicebus.ServiceBusMessage
andazure.servicebus.ReceivedMessage
which returnsazure.servicebus.AMQPMessageBodyType
.