Update Dev Tunnels SSH dependency to 3.12.42 - #666
Merged
Conversation
Bumps the SSH library reference across both SDKs: - cs/build/build.props: 3.12.40 -> 3.12.42 - ts/package.json: ^3.12.36 -> ^3.12.42 - ts/src/connections/package.json (peerDependencies): ^3.12.29 -> ^3.12.42 - ts/package-lock.json: regenerated The peerDependencies range had drifted behind the root dependency, allowing consumers of @microsoft/dev-tunnels-connections to resolve an older SSH library than the one built and tested against. Validated: C# build clean and 136 tests passing; TypeScript compile clean and 81 tests passing. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
Azure Pipelines: There may be pipelines that require an authorized user to comment /azp run to run. |
Member
Author
|
/azp run |
|
Azure Pipelines: Successfully started running 2 pipeline(s). |
Juan Pablo Acosta (jpablo2002)
approved these changes
Aug 24, 2026
Nagaraju Kotcharlakota (klvnraju)
approved these changes
Aug 24, 2026
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.
Summary
Updates the Dev Tunnels SSH dependency to 3.12.42 across the C# and TypeScript SDKs.
Changes
cs/build/build.props(DevTunnelsSshPackageVersion)3.12.403.12.42ts/package.json(dependencies)^3.12.36^3.12.42ts/src/connections/package.json(peerDependencies)^3.12.29^3.12.42ts/package-lock.jsonThe
peerDependenciesrange ints/src/connections/package.jsonhad drifted well behindthe root dependency, so consumers of
@microsoft/dev-tunnels-connectionswere free toresolve a considerably older SSH library than the one we build and test against. Aligning
it keeps consumers on the same minimum.
Validation
dotnet restoreresolves 3.12.42;dotnet buildclean (0 warnings, 0 errors);dotnet test136 passed, 0 failed.npm ciclean against the regenerated lockfile;tsc --buildclean;npm test81 passing, 0 failing.