chore(deps): bump russh to 0.62.6 - #2305
Merged
Merged
Conversation
Picks up the upstream channel-open reply priority queue, server-side max_auth_attempts enforcement, and the OpenSSH name-list trailing-comma interop fix. Records the 0.62.5 -> 0.62.6 cargo-vet delta audit as safe-to-deploy so `cargo vet` passes without a blanket exemption bump. Keeps the lockfile edit scoped to russh: a plain `cargo update -p russh` also re-unifies unrelated crates onto windows-sys 0.52.0 / getrandom 0.3.4, which is churn unrelated to this bump. russh 0.62.6 declares the same requirements as 0.62.5, so the two-line edit stays consistent under --locked.
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
bashkit | 63d586c | Commit Preview URL Branch Preview URL |
Aug 16 2026, 09:22 AM |
CI installs cargo-vet@latest via taiki-e/install-action, which currently resolves to 0.10.0, while cargo-binstall ships 0.10.2. The two disagree on how to format a TOML string containing double quotes (0.10.0 escapes them in a basic string, 0.10.2 emits a literal string), so a note quoting name-list examples fails `cargo vet` on whichever version did not write it. Phrasing the note without embedded quotes formats identically under both.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Supersedes #2301.
What changed
Bumps
russh0.62.5 -> 0.62.6 and records the correspondingcargo-vetdelta audit.Upstream changes picked up:
try_send, so a confirmation could be silently dropped when the queue was full, and channel data could overtake the confirmation for a channel that was not registered yet (dropping that data). This is a direct follow-up to the backpressure work audited in 0.62.4 -> 0.62.5.max_auth_attemptsis actually enforced, disconnecting withNoMoreAuthMethodsAvailableonce the cap is exceeded; publickey probes answered withPK_OKexplicitly do not count toward it.","and"a,,".Why
cargo vetgates the bump:russh:0.62.6 missing ["safe-to-deploy"]is the only real failure on #2301. Rather than widening the blanket exemption, this records a reviewed delta audit, keeping the existing 0.62.4 exemption + delta-audit chain intact.The lockfile edit is deliberately scoped to russh alone. Running
cargo update -p russh --precise 0.62.6also re-unifies unrelated crates (tempfile,rustix,socket2, ...) ontowindows-sys0.52.0 andgetrandom0.3.4 — churn that has nothing to do with this bump and that silently downgrades Windows bindings. That churn is what #2301 carries. russh 0.62.6 declares exactly the same dependency requirements as 0.62.5 (only the version line differs in its manifest), so the two-line lockfile edit is sufficient and stays consistent.Before / After
Vet gate:
Lockfile blast radius:
Lock consistency and SSH behavior:
No behavior change in bashkit itself — this is a dependency patch bump plus a supply-chain record.
Risk
ssh/scp/sftpbuiltins), and the priority-queue change strictly reduces the chance of a dropped channel-open confirmation. The server-side auth cap does not apply to bashkit's client usage. All 24 SSH builtin tests pass.unsafe(unchanged single occurrence), no new dependencies, no ambient capability changes.Checklist
Generated by Claude Code