Skip to content

Release v2.8.0

Compare
Choose a tag to compare
@wallyqs wallyqs released this 26 Jun 05:11
· 30 commits to main since this release
v2.8.0
981e5d6

Added

  • Added publish_async method to jetstream

    ack_future = await js.publish_async("foo", b'bar')
    await ack_future
  • Added the ability to file contents as user_credentials (#546)

from nats.aio.client import RawCredentials
...
await nats.connect(user_credentials=RawCredentials("<creds file contents as string>"))

Fixed

  • Fixed a race condition that could trigger error callbacks if a timeout and a response from a request where in-conflict (#573).