7.3.0 (2021-06-08)
New Features
- Support for sending AMQP annotated message which allows full access to the AMQP message fields is now GA.
- Introduced new namespace
azure.servicebus.amqp
. - Introduced new classes
azure.servicebus.amqp.AmqpMessageHeader
andazure.servicebus.amqp.AmqpMessageProperties
for accessing amqp header and properties.
- Introduced new namespace
Breaking Changes from 7.2.0b1
- Renamed and moved
azure.servicebus.AMQPAnnotatedMessage
toazure.servicebus.amqp.AmqpAnnotatedMessage
. - Renamed and moved
azure.servicebus.AMQPMessageBodyType
toazure.servicebus.amqp.AmqpMessageBodyType
. AmqpAnnotatedMessage.header
returnsazure.servicebus.amqp.AmqpMessageHeader
instead ofuamqp.message.MessageHeader
.AmqpAnnotatedMessage.properties
returnsazure.servicebus.amqp.AmqpMessageProperties
instead ofuamqp.message.MessageProperties
.raw_amqp_message
onServiceBusMessage
andServiceBusReceivedMessage
is now a read-only property instead of an instance variable.
Bug Fixes
- Fixed a bug that
ServiceBusReceiver
iterator stops iteration after recovery from connection error (#18795).