Skip to content

deps: bump russh from 0.46.0 to 0.62.4#51

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/russh-0.62.4
Open

deps: bump russh from 0.46.0 to 0.62.4#51
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/russh-0.62.4

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps russh from 0.46.0 to 0.62.4.

Release notes

Sourced from russh's releases.

v0.62.4

Security fixes

Three independent bugs have allowed a client to trigger a panic in the session handler task, thereby crashing their own session.

Misc

v0.62.3

Changes

  • 2e3f1cc: Update more RustCrypto dependencies to stabilized versions (#735) (kpcyrd) #735

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(())
</tr></table> 

... (truncated)

Commits

@dependabot dependabot Bot added dependencies Dependency updates and supply-chain maintenance rust Rust toolchain, crates, or language changes labels Jul 25, 2026
@dependabot
dependabot Bot requested a review from MiChongs as a code owner July 25, 2026 20:19
Bumps [russh](https://github.com/warp-tech/russh) from 0.46.0 to 0.62.4.
- [Release notes](https://github.com/warp-tech/russh/releases)
- [Commits](Eugeny/russh@v0.46.0...v0.62.4)

---
updated-dependencies:
- dependency-name: russh
  dependency-version: 0.62.4
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/cargo/russh-0.62.4 branch from bd81bce to fc579ce Compare July 25, 2026 20:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency updates and supply-chain maintenance rust Rust toolchain, crates, or language changes

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants