7.5.0 (2021-11-10)
Breaking Changes
- Default
To
,ReplyTo
, andCorrelationId
properties ofServiceBusMessage
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.