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

Bump async-nats from 0.26.0 to 0.29.0 #40

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 24, 2023

Bumps async-nats from 0.26.0 to 0.29.0.

Release notes

Sourced from async-nats's releases.

Release async-nats/v0.29.0

Overview

This release focuses on preparing for the 1.0.0 release.

The main highlight is Core NATS concrete errors. There are also security improvements (@​paolobarbolini thanks for your help!) and JetStream API improvements.

Concrete Errors

New errors returned by Core NATS methods are not boxed anymore. They themselves are not enums, but follow more flexible approach of std::io::Error and expose kind() method to get the enum. All enums implement PartialEq for more straightforward assertions.

Example:

        match client.request("test".into(), "payload".into()).await {
            Ok(response) => println!("response: {:?}", response),
            Err(err) => match err.kind() {
                RequestErrorKind::TimedOut => todo!(),
                RequestErrorKind::NoResponders => todo!(),
                RequestErrorKind::Other => todo!(),
            },
        }

Added

Fixed

Changed

New Contributors

Once again, thanks @​abalmos & @​NorbertBodziony for helping out with replicating the issues around fetch.

... (truncated)

Commits
  • 1a28323 Release async-nats/v0.29.0
  • b6896a5 Use tokio-rustls fork
  • 3d92ce2 Fix reconnect burst on auth failure
  • e8a5912 Add retaining server list order option
  • ea5a07d Use MissedTickBehavior::Delay for ping interval
  • 5a04c7d Reset ping_interval when handling Command::Ping
  • 405fced Use MissedTickBehavior::Skip for flush interval
  • 5fd12c5 Update async-nats features in README.md
  • e550b7d Make Stream a ref in Purge
  • 817a7b9 Improve TLS connection resilience
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.
> **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Mar 24, 2023
@MatthieuCoder
Copy link
Member

@n1c00o can you look at the issue ? Did tokio change, signal seems to not exist anymore

@ncs-pl
Copy link
Member

ncs-pl commented Apr 12, 2023

Hm strange, I will take a look at the issue later in the day!
I will also upgrade h2 as it suffers from a critical security issue

@MatthieuCoder
Copy link
Member

Sure I wasn't aware of the h2 issue

@MatthieuCoder
Copy link
Member

@dependabot rebase

Bumps [async-nats](https://github.com/nats-io/nats.rs) from 0.26.0 to 0.29.0.
- [Release notes](https://github.com/nats-io/nats.rs/releases)
- [Commits](nats-io/nats.rs@async-nats/v0.26.0...async-nats/v0.29.0)

---
updated-dependencies:
- dependency-name: async-nats
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/async-nats-0.29.0 branch from 3c5ae22 to d1f3be7 Compare April 22, 2023 11:50
@sonarqubecloud
Copy link

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Development

Successfully merging this pull request may close these issues.

2 participants