v1.8.11
Please read the Release notes before upgrading
Deprecation
1.8.10 Introduces a deprecretation on ReliableConsumer and ReliableProducer StatusChanged
event. See #406
The struct now contains:
public record StatusInfo(
ReliableEntityStatus From, // init
ReliableEntityStatus To, // open
string Stream,
string Identifier,
// deprecated since more partitions can be affected
// and the partition is not enough. For example super-stream startup or super-stream close
[property: Obsolete("Partition is deprecated. Use Partitions instead", false)]
string Partition, // <<-- Deprecated filed
List<string> Partitions, //// <<<----- New filed should be used
ChangeStatusReason Reason = ChangeStatusReason.None
);
Partition
is left for compatibility and takes the first item from Partitions
.
We highly suggest using Partitions
Bug Fixes
- Fix for
ToString
function in case partitions is null. by @Gsantomaggio in #410
Full Changelog: v1.8.10...v1.8.11