diff --git a/dist/changelogs/1.7.16.md b/dist/changelogs/1.7.16.md index 70289361..8b9b2bc6 100644 --- a/dist/changelogs/1.7.16.md +++ b/dist/changelogs/1.7.16.md @@ -1,7 +1,7 @@ ## SSH Timeouts and connection time -Over time, there have always been a few complains about SSH connection timeout errors and slow SSH connection startup. These especially popped up in the latest release even though no obvious code was changed. +Over time, there have always been a few complaints about SSH connection timeout errors and slow SSH connection startup. These especially popped up in the latest release even though no obvious code was changed. As it turns out, increasing the value for `ConnectTimeout` in SSH does not actually only change the timeout after which an error is thrown, it is also used by some servers as a guideline for their response time. E.g. if you specify a 10s timeout, some servers will always take 10s to respond. @@ -10,20 +10,21 @@ This is of course not mentioned in any of the spec but is more of an implementat In the latest release this caused more errors as the timeout was set higher. It should also have affected many SSH connections basically since the release of XPipe. I don't know how many people have been affected by this, it heavily depends on which ssh server and configuration your server runs. -It for example happens on proxmox instances and my AWS EC2 instances. +It happens for example on my proxmox instances and my AWS EC2 instances. -This release should fix all of these issues simple by not specifying a connect timeout at all. Great work there. +This release should fix all of these issues simply by not specifying a connect timeout at all. Great work there. -I would like to exchange a few words with whoever thought: *A newly connected SSH client specified a 10s connect timeout, that means we can sit around idle for 9 seconds. That is a great idea.* +I would like to exchange a few words with whoever thought: *A newly connected SSH client specified a 10s connect timeout? That means we can sit around idle for 9 seconds. That is a great idea.* Load balancing my ass, this also happens if the system is completely idle. -## Changes - - - ## Fixes -- Fix actions that shut down XPipe, e.g. automatic updates and debug mode, - not correctly executing if it exited too fast +- Fix annoying log directory errors that occurred on first startup +- Fix SSH connections failing on Windows systems where the username contained non-ASCII characters + due to an OpenSSH client bug by working around it +- Fix child connection validity not updating when parent is changed from invalid to valid +- Fix some applications launched on Windows, e.g. some terminals and editors, starting in minimized mode +- Fix SSH config importer not handling file wildcards correctly when they also contained a file extension +- Fix actions that shut down XPipe, e.g. automatic updates and debug mode, not correctly executing if it exited too fast - Fix error about nonexistent logs directory on first startup - Fix possible NullPointers when checking whether current SSH session has died diff --git a/version b/version index 33e7e629..645f4d4e 100644 --- a/version +++ b/version @@ -1 +1 @@ -1.7.16 \ No newline at end of file +1.7.16-2 \ No newline at end of file