Skip to content

Azure.Messaging.ServiceBus_7.5.0

Compare
Choose a tag to compare
@azure-sdk azure-sdk released this 10 Nov 21:41
2520326

7.5.0 (2021-11-10)

Breaking Changes

  • Default To, ReplyTo, and CorrelationId properties of ServiceBusMessage to null, rather than empty string.
    To retain the old behavior, you can set the properties to empty string when constructing your message:
var message = new ServiceBusMessage
{
    ReplyTo = "",
    To = "",
    CorrelationId = ""
};

Bugs Fixed

  • Fixed memory leak in ServiceBusSessionProcessor.
  • Fixed bug where AMQP sequence/value messages could not be created from a received message.
  • Fixed bug where a named session of empty string could not be accepted.