Releases: zonyitoo/mqtt-rs
Releases · zonyitoo/mqtt-rs
v0.12.0
What's Changed
- Remove regex dependency by @JonathanPhenixGeotab in #59
New Contributors
- @JonathanPhenixGeotab made their first contribution in #59
Full Changelog: v1.11.2...v0.12.0
v0.11.0
BREAKING Changes
- #54 Make
PacketType
the size ofu8
- #53 Remove the concept of packet payloads from the public API
- #52 Refactored Packet trait, replaced with DecodablePacket
- Splits
Packet
intoEncodablePacket
andDecodablePacket
- Removes default
payload()
andpayload_ref()
methods - Fixes
encoded_length()
implementations for all packets - Add
PublishPacketRef
for performance optimization
- Splits
Features
- Add a
tokio_util::codec::Encoder
/Decoder
implementation