Releases: sclausen/ngx-mqtt
Releases · sclausen/ngx-mqtt
6.7.0
Bug Fixes
- #117 Removed standard keepalive (10s) in favor of mqtt.js keepalive (60s). (cbc9574)
6.6.0
Features
- #113 Implemented missing mqtt.js client events
end
, packetsend
and packetreceive
. (c1dc67e)
6.5.1
Features
- #111 Implements the onOffline observable which will emit a message, if the client goes offline. (a10d632)
6.5.0
Bug Fixes
- #112 connect/reconnect event handlers now check if
connectOnCreate
is true
before subscribing/resubscribing all filters. (5887ea6)
6.4.0
Features
- c9ab883 Added option to
observe
and observeRetained
to set the QoS.
6.3.1
Bug Fixes
- 5dfea9a
observeRetained
now emits just the latest received message on subscribe.
6.3.0
BREAKING CHANGES
- #95 Added new method , which will send the last received message to all new subscribers. (ec800f1)
The observable returned by observe
won't send the latest message to a new subscriber. For retained behavior the new method observeRetained
should be used. The returned observable will always send the latest message on subscribe.
6.2.0
Bug Fixes
- #92 Publish just retained messages to all current and subsequent subscribers. (da14af8, 20f1322)