We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe.
When connecting to newer versions of Linux (e.g. Ubuntu 22.04 and higher), connection is not possible.
macOS Ventura 13.6.4
Describe the solution you'd like
You need to update the ssh2 library to the latest version.
Describe alternatives you've considered
The current "on-the-fly" temporary solution is as follows:
In the user directory, delete the line from the ~/.vscode/extensions/liximomo.remotefs-0.0.16/package.json file:
~/.vscode/extensions/liximomo.remotefs-0.0.16/package.json
"ssh2": "^v0.8.2", <--- REMOVE THIS
Install a new package of the current version Must have nodejs installed (I used version 20.11.0), as well as yarn
nodejs
20.11.0
yarn
cd ~/.vscode/extensions/liximomo.remotefs-0.0.16 yarn add ssh2
Done!
The extension now works with current encryption versions!
The text was updated successfully, but these errors were encountered:
Thank you!
Sorry, something went wrong.
Thank you as well!
p.s. you can use npm for adding ssh2 instead of yarn
npm install ssh2
This also fixes not being able to parse ed25519 private keys!
No branches or pull requests
Is your feature request related to a problem? Please describe.
When connecting to newer versions of Linux (e.g. Ubuntu 22.04 and higher), connection is not possible.
macOS Ventura 13.6.4
Describe the solution you'd like
You need to update the ssh2 library to the latest version.
Describe alternatives you've considered
The current "on-the-fly" temporary solution is as follows:
In the user directory, delete the line from the
~/.vscode/extensions/liximomo.remotefs-0.0.16/package.json
file:Install a new package of the current version
Must have
nodejs
installed (I used version20.11.0
), as well asyarn
Done!
The extension now works with current encryption versions!
The text was updated successfully, but these errors were encountered: