- Support Kerberos authentication callbacks.
- Add
max_inflight
option. - Respect Receive-Maximum if advertised by server.
- Support SCRAM authentication callbacks.
- Add
connect
command which only establishes connection, but does not publish or subscribe. - Add
--log-level
option to CLI. - Add timestamp to CLI logs.
- Exit with non-zero code when CLI stops due to error.
- Export emqtt:qos/0, emqtt:topic/0 and emqtt:packet_id/0 as public types.
- Release packages on OTP 26
- Stopped releasing on
- EL 8
- Ubuntu 18
- Debian 10
- Newly supported distros
- EL 9
- Debian 12
- Ubuntu 22
- Amazon Linux 2023
- Stopped releasing on
- Add
{auto_ack, never}
option fully disabling automatic QoS2 flow.
- Fix compilation warning.
- Respect reconnect option more robustly, attempting to reconnect in more cases.
- Attempt to reconnect when server sends a
DISCONNECT
packet, if reconnects are enabled.
- Allow external wrapped secrets as passwords.
- Removed 'maybe' type.
- Fix websocket transport options.
- Support OTP 26.
- Drop
reuse_sessions
andsecure_renegotiate
options when TLS 1.3 is the only version in use.
- Upgrade
quicer
lib
- Fix a race-condition caused crash when changing control process after SSL upgrade.
The race-condition is from OTP's
ssl
lib, this fix only avoidsemqtt
process to crash.
- Sensitive data obfuscation in debug logs.
- Fix ssl error messages handeling.
- Support MacOS build for QUIC
- Support
binary()
hostname.
- Support QUIC Multi-stream
-
Hide password in an anonymous function to prevent it from leaking into the (crash) logs #168
-
Added
publish_async
APIs to support asynchronous publishing. #165 Note that an incompatible update has been included, where the return format of thepublish
function has been changed took | {ok, publish_reply()} | {error, Reason}
-
Fixed inflight message retry after reconnect #166
-
Respect connect_timeout #169