Releases: nats-io/nats.rs
Releases · nats-io/nats.rs
0.7.0
New Features
- Support has been added for NATS Headers
via theConnection::publish_with_reply_or_headers
method.
Breaking Changes
- The underlying TLS implementation has been switched
from native-tls to rustls. The previously exported
TLS functionality has been removed, and now you can
supply certificates with the
Options::add_root_certificate
method.
0.6
0.3
New Features
- #16 Implement reconnection logic.
- #16 Buffer outbound data when in a disconnected state.
- #16 Learn about new servers using the received INFO block.
- #16 Callback functions may be provided via the new
Options::set_disconnect_callback
and
Options::set_reconnect_callback
which will be executed
when the connection to a server has been terminated
or when a new connection has been established afterward.