github Azure/azure-sdk-for-net Azure.Messaging.ServiceBus_7.5.0

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.

Don't miss a new azure-sdk-for-net release

NewReleases is sending notifications on new releases.