@mongodb-js/devtools-proxy-support
Advanced tools
Comparing version 0.3.8 to 0.3.9
@@ -69,6 +69,6 @@ "use strict"; | ||
keepaliveInterval: 20000, | ||
host: this.url.hostname, | ||
host: decodeURIComponent(this.url.hostname), | ||
port: +this.url.port || 22, | ||
username: this.url.username || undefined, | ||
password: this.url.password || undefined, | ||
username: decodeURIComponent(this.url.username) || undefined, | ||
password: decodeURIComponent(this.url.password) || undefined, | ||
privateKey: this.proxyOptions.sshOptions?.identityKeyFile | ||
@@ -82,3 +82,3 @@ ? await fs_1.promises.readFile(this.proxyOptions.sshOptions.identityKeyFile) | ||
port: sshConnectConfig.port, | ||
password: !!sshConnectConfig.passphrase, | ||
password: !!sshConnectConfig.password, | ||
privateKey: !!sshConnectConfig.privateKey, | ||
@@ -85,0 +85,0 @@ passphrase: !!sshConnectConfig.passphrase, |
@@ -16,3 +16,3 @@ { | ||
"homepage": "https://github.com/mongodb-js/devtools-shared", | ||
"version": "0.3.8", | ||
"version": "0.3.9", | ||
"repository": { | ||
@@ -92,3 +92,3 @@ "type": "git", | ||
}, | ||
"gitHead": "904f3a454cd52112cdb5eaf749b8489abda0902e" | ||
"gitHead": "ca8aea2deb73026172732c1cf5cd8d36208ec440" | ||
} |
Sorry, the diff of this file is not supported yet
120254