Skip to content

build(deps): Bump russh from 0.61.2 to 0.62.2 - #131

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/russh-0.62.1
Closed

build(deps): Bump russh from 0.61.2 to 0.62.2#131
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/russh-0.62.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 5, 2026

Copy link
Copy Markdown
Contributor

Bumps russh from 0.61.2 to 0.62.2.

Release notes

Sourced from russh's releases.

v0.62.2

Fixes

  • 6da3f4a: fixed #733 - incorrect first kex guess handling (Eugene)

v0.62.1

Fixes

  • 6fc20b2: Reply with CHANNEL_CLOSE in server handler per RFC 4254 (#675) (Corey Leavitt) #675

v0.62.0

Breaking changes

#686 - make channel confirmations truly async

This changes the signature of the Handler::channel_open_* functions to allow you to make the channel accept/reject decision outside of the main event loop. Instead of immediately returning a bool, they take an additional reply: ChannelOpenHandle argument, which you can move into another async task to confirm or reject the channel later. After the handler function returns, the event loop is immediately unblocked.

This also lets you specify the protocol-level rejection reason.

Migrating your existing code:

    async fn channel_open_session(
        &mut self,
        channel: Channel<Msg>,
+       reply: server::ChannelOpenHandle,
        session: &mut Session,
-   ) -> Result<bool, Self::Error> {
+   ) -> Result<(), Self::Error> {
        if (...) {
-           Ok(false)
+           reply.reject(ChannelOpenFailure::AdministrativelyProhibited).await;
        } else {
-           Ok(true)
+           reply.accept().await;
        }
+       Ok(())
    }

Changes

New Contributors

Full Changelog: Eugeny/russh@v0.61.2...v0.62.0

Commits

@dependabot @github

dependabot Bot commented on behalf of github Jul 5, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot
dependabot Bot requested a review from zoza1982 as a code owner July 5, 2026 19:54
@dependabot
dependabot Bot force-pushed the dependabot/cargo/russh-0.62.1 branch from eaedd2b to 561a10c Compare July 5, 2026 23:12
@dependabot dependabot Bot changed the title build(deps): Bump russh from 0.61.2 to 0.62.1 build(deps): Bump russh from 0.61.2 to 0.62.2 Jul 8, 2026
@dependabot
dependabot Bot force-pushed the dependabot/cargo/russh-0.62.1 branch 2 times, most recently from 6a8bd4b to 6c5f661 Compare July 8, 2026 17:47
Bumps [russh](https://github.com/warp-tech/russh) from 0.61.2 to 0.62.2.
- [Release notes](https://github.com/warp-tech/russh/releases)
- [Commits](Eugeny/russh@v0.61.2...v0.62.2)

---
updated-dependencies:
- dependency-name: russh
  dependency-version: 0.62.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/cargo/russh-0.62.1 branch from 6c5f661 to 6a85a8f Compare July 9, 2026 04:27
@dependabot @github

dependabot Bot commented on behalf of github Jul 12, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #177.

@dependabot dependabot Bot closed this Jul 12, 2026
@dependabot
dependabot Bot deleted the dependabot/cargo/russh-0.62.1 branch July 12, 2026 19:55
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.

0 participants