Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-ssh

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-ssh - npm Package Compare versions

Comparing version 4.2.2 to 4.2.3

4

CHANGELOG.md

@@ -0,1 +1,5 @@

#### 4.3.3
- Fix passing options in `execCommand`
#### 4.2.2

@@ -2,0 +6,0 @@

4

lib/index.js

@@ -204,3 +204,3 @@ 'use strict';

return new Promise(function (resolve, reject) {
connection.exec(command, Helpers.generateCallback(function (stream) {
connection.exec(command, options.options || {}, Helpers.generateCallback(function (stream) {
stream.on('data', function (chunk) {

@@ -219,3 +219,3 @@ output.stdout.push(chunk);

});
}, reject), options.options || {});
}, reject));
});

@@ -222,0 +222,0 @@ });

{
"name": "node-ssh",
"version": "4.2.2",
"version": "4.2.3",
"description": "SS2 with Promises",

@@ -36,3 +36,3 @@ "main": "lib/index.js",

"eslint-config-steelbrain": "^3.0.1",
"flow-bin": "^0.44.0",
"flow-bin": "^0.46.0",
"jasmine-fix": "^1.0.1",

@@ -39,0 +39,0 @@ "pty.js": "^0.3.1",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc