ssh-config
Advanced tools
Comparing version 4.0.0 to 4.0.1
@@ -0,1 +1,7 @@ | ||
4.0.1 / 2020-02-01 | ||
================== | ||
* Fix: parsing `Host` values with trailing spaces | ||
4.0.0 / 2020-01-09 | ||
@@ -2,0 +8,0 @@ ================== |
@@ -22,3 +22,3 @@ 'use strict' | ||
'CertificateFile' | ||
]; | ||
] | ||
@@ -340,3 +340,3 @@ class SSHConfig extends Array { | ||
} | ||
results.push(val) | ||
if (val) results.push(val) | ||
return results.length > 1 ? results : results[0] | ||
@@ -372,3 +372,2 @@ } | ||
while (chr) { | ||
@@ -375,0 +374,0 @@ let node = line() |
{ | ||
"name": "ssh-config", | ||
"description": "SSH config parser and stringifier", | ||
"version": "4.0.0", | ||
"version": "4.0.1", | ||
"author": "Chen Yangjian (https://www.cyj.me)", | ||
@@ -6,0 +6,0 @@ "repository": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18503