Skip to content

Releases: PowerShell/Win32-OpenSSH

v0.0.12.0

16 Apr 20:58
Compare
Choose a tag to compare

This is a pre-release (non-production ready)

Includes:

  • Fixes to several redirection related issues with ssh.exe and sftp.exe
    • Following will now work
      • ssh ... > out.txt
      • $o = ssh ... (in Powershell)
      • sftp -b .... > out.txt
  • Removal of ssh-lsa.dll. There is now no reboot restriction on setup.

and other misc issues listed here

Note
It seems that the key based authentication is not working for docker containers. For docker scenarios, continue using v0.0.11.0 until this issue is fixed.

v0.0.11.0

04 Apr 19:50
Compare
Choose a tag to compare

This is a pre-release (non-production ready)

Includes:

  • Latest changes from OpenSSH main repo (synced to 7.5p1)
  • Fix to Sshfs issue introduced in 0.0.9.0
  • Support for ssh redirection in Powershell ($o = ssh ... )
  • Install-sshd.ps1 support for Nano

and other misc issues listed here

NOTE - Breaking Change

  • Due to a security issue that got fixed in this release, SSHD account now needs read access to "authorized_keys. Otherwise pubkey authentication will fail. Do the following:
   $authorizedKeyPath = "c:\users\user\.ssh\authorized_keys"
   $acl = get-acl $authorizedKeyPath
   $ar = New-Object  System.Security.AccessControl.FileSystemAccessRule("NT Service\sshd", "Read", "Allow")
   $acl.SetAccessRule($ar)
   Set-Acl  $authorizedKeyPath $acl

v0.0.10.0

14 Mar 19:40
Compare
Choose a tag to compare

This is a pre-release (non-production ready)

Includes:

  • Fix to remote commadline issue introduced in 0.0.9.0
  • Various terminal related issues

Wiki added to help understand TTY/PTY implementation in Windows

List of closed issues here

v0.0.9.0

16 Feb 06:50
Compare
Choose a tag to compare

This is a pre-release (non-production ready)

Includes :

  • Double hop support for password auth
  • Support for Allow/Deny Users and Allow/Deny Groups
  • Removed restriction on SCP file size
  • Fixes to other issues listed here

v0.0.8.0

30 Jan 08:31
Compare
Choose a tag to compare

This is a pre-release (non-production ready)

Includes fixes to intermittent failures with key based authentication, issue with ssh.exe exit code, and other miscellaneous issues listed here

v0.0.7.0

16 Jan 00:50
Compare
Choose a tag to compare

_This is a pre-release (non-production ready)_

Includes fixes to intermittent crashes in sshd, issues in sftp and scp, and other miscellaneous issues listed here

v0.0.6.0

03 Jan 22:48
Compare
Choose a tag to compare

_This is a pre-release (non-production ready)_

Includes fixes to regression in v0.0.5.0 and minor issues in scp and sftp.

v0.0.5.0

18 Dec 07:13
Compare
Choose a tag to compare

_This is a pre-release (non-production ready)_

Regression Alert - installation will be broken if installed in "Program Files"

This release integrates all the latest changes in OpenSSH-Portable master into Win32 port. As detailed in Project Status, all development is being done in https://github.com/PowerShell/openssh-portable. For any contributions, please submit pull requests to PowerShell/openssh-portable.

This release also includes general fixes to reliability issues in scp and sftp scenarios. Wild cards now work in sftp as well as Windows styled paths.

Note: Log files are now populated in a "logs" folder in bin root.

See other improvements here

v0.0.4.0

29 Nov 22:56
Compare
Choose a tag to compare

_This is a pre-release (non-production ready)_

This release integrates all the latest changes in OpenSSH-Portable V7.3 into Win32 port. As detailed in Project Status, all development is being done in https://github.com/PowerShell/openssh-portable. For any contributions, please submit pull requests to PowerShell/openssh-portable.

See other improvements here

v0.0.3.0

06 Nov 23:16
Compare
Choose a tag to compare

_This is a pre-release (non-production ready)_

This release adds Unicode support in interactive shell, scp and sftp.

  • Interactive TTY ssh session now accurately transmits and renders Unicode characters (cmd.exe code page may need to be changed for the appropriate locale)
  • sftp and scp now supports Unicode directories and file names.

See other improvements here