Skip to content

Releases: nats-io/nats.rs

0.9.8

22 Mar 10:34
7ffd1fa
Compare
Choose a tag to compare

Bug Fixes

  • #161 When attempting to send a message with headers
    to a server that does not support headers, an error
    is now properly returned instead of silently dropping
    the message.

0.9.7

10 Mar 12:42
e3fb52d
Compare
Choose a tag to compare

Improvements

  • Improved error log output and avoid panicking
    when problems are encountered while parsing the
    JetStream reply subject.

0.9.6

09 Mar 16:06
2ed02ab
Compare
Choose a tag to compare

New Features

  • JetStream consumers are now better supported
    through the Consumer::process* methods,
    which also perform message deduplication
    backed by an interval tree.

0.9.5

08 Mar 15:13
28be344
Compare
Choose a tag to compare

New Features

  • JetStream consumer and message acknowledgement is now
    supported via the jetstream feature.

0.9.2

26 Jan 14:16
Compare
Choose a tag to compare

Bug Fixes

  • #143 Fix a bug preventing nkey authentication.

Improvements

  • #140 Optimize NATS protocol parsing.

0.9.1

12 Jan 14:10
Compare
Choose a tag to compare

Bug Fixes

  • #136 Workaround: skip native certificates that can't be loaded.

split async-nats apart from nats

11 Jan 13:12
ef1cd58
Compare
Choose a tag to compare

Breaking Changes

  • #130, #132 the async client has been split into its own crate, async-nats

0.8.6

19 Nov 16:32
51f34b2
Compare
Choose a tag to compare

Bug Fixes

  • #126 Fix port signedness issue on ServerInfo which
    prevented connecting to servers on ports over i16::MAX.

0.8.5

17 Nov 16:16
6242d68
Compare
Choose a tag to compare

Improvements

  • #125 Remove Sync requirement for the handler function
    passed to Subscription::with_handler.

0.8.4

17 Nov 15:36
5ff1173
Compare
Choose a tag to compare

Bug Fixes

  • #124 Fix regex error when parsing creds due to missing
    the unicode-perl feature flag on the regex crate.