v0.3.0
What's Changed
- Updated
serde_amqp
to 0.2.1 which introduced breaking bug fixesArray<T>
deserializes a single standalone instance ofT
(one that is not encoded inside anArray
) into anArray
of one element (#75)- Fixed
IoReader::forward_read_bytes
andIoReader::forward_read_str
not clearing buffer after forwarding
- Breaking changes
- Receiver no longers checks whether local and remote SenderSettleMode are the same. It now simply takes the value given by the sending link.
- Removed
ReceiverAttachError::SndSettleModeNotSupported
- Removed
- Set the link credit to zero before
Receiver
sends out a closing detach. - Removed
DetachError::NonDetachFrameReceived
error. Non-detach frame received while detaching will simply be logged withtracing::debug
and then dropped
- Receiver no longers checks whether local and remote SenderSettleMode are the same. It now simply takes the value given by the sending link.
- Added Service Bus example
Full Changelog: v0.2.7...v0.3.0