Releases: mqttjs/mqtt-packet
Releases · mqttjs/mqtt-packet
v3.4.5
- Fixed crash when parsing invalid messages #8 by @psorowka
v4.0.2
- Removed node v0.8 compatibility.
v4.0.1
- Support for node v0.10 and v0.12 when cork() is available.
v4.0.0
- Added
writeToStream()
for writing directly to the stream, vs generating the packet. This leads to great performance gains, see #6. By @mcollina
- Rewrote
generate()
on top of writeToStream()
.
v3.4.3
- Support for node v0.10 and v0.8 of the changes in 3.4.2.
v3.4.2
- Correctly generate UTF-8 chars in the CONNECT packet.
v3.4.0
- 10% performance increase in packet generation.
v3.3.1
- Removed weird characters that caused chrome to fail #4 by @pmorjan
v3.3.0
- Accept empty
clientId
if protocolVersion
is 4 #2 by @psorowka.