Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release async-nats/v0.17.0 #570

Merged
merged 1 commit into from
Jul 13, 2022
Merged

Release async-nats/v0.17.0 #570

merged 1 commit into from
Jul 13, 2022

Conversation

Jarema
Copy link
Member

@Jarema Jarema commented Jul 13, 2022

Overview

This release focuses on two main things:

  • Refactor of JetStream API
  • Fix of slow connect (thanks @brooksmtownsend for reporting this!)

The changes in JetStream API make usage of builder more intuitive and seamless.
Before, you had to call

// before changes
let messages = consumer.stream().await?;
// or use a shortcut
let messages = consumer.messages().await?;

// after changes
let messages = consumer.stream().messages().await?;
// or with options
let messages = consumer.stream().max_bytes_per_bytes(1024).messages().await?;

Changed

Fixed

Other

Full Changelog: async-nats/v0.16.0...async-nats/v0.17.0
Signed-off-by: Tomasz Pietrek tomasz@nats.io

@Jarema Jarema requested a review from caspervonb July 13, 2022 09:34
Copy link
Collaborator

@caspervonb caspervonb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

async-nats/CHANGELOG.md Outdated Show resolved Hide resolved
Signed-off-by: Tomasz Pietrek <tomasz@nats.io>
@Jarema Jarema merged commit 573efa2 into main Jul 13, 2022
@Jarema Jarema deleted the release/v0.17.0 branch July 13, 2022 10:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants