1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
Version 1.10
* Convert repo to git
* Remove sig unsafe functions from signal handler (Ticket #22).
* Allow -e to explicitly specify the environment variable to use
(Ticket #5).
* Unset the variable specified with -e before calling subprogram
(Ticket #25).
* Change the logic for setting a controlling TTY. Fixes compatibility
issues with OpenSolaris and MSYS/Cygwin. Thanks Marcin Olszewski for
the fix.
Version 1.09
* Explicitly set the controlling TTY (SF patch #7)
Version 1.08
* Report when IP key has changed (Closes Debian bug #730101)
* Scrub the environment variable for -e (Closes Ubuntu bug #1649374)
Version 1.07
* Pass signals that should terminate to ssh
* Fix race around signal handling
* Report IPC errors to stderr
* Report if can't open -f password file (closes #3)
Version 1.06
* Add -P for overriding the password prompt we search for
* Add -v for verbose logging of the prompt detection prompt.
* Allow packagers and compilers to change the default password prompt.
* When giving -V, also print the default password prompt.
Version 1.05
* OpenSSH version 5.6 closed our leaked slave PTY fd, breaking sshpass.
This reverted the "better detection of child exit", unfortunately.
* Update the manual page about changes.
* Print usage information if no arguments given.
Version 1.04
* Fix crash when "-e" is given but environment variable is not set -
based on patch suggested by Samuel Rios Carvalho.
* Fix 100% CPU usage during session. Reported by anonymous on the
SourceForge bug tracking system.
* Attempt to hide a password provided on the command line. It does
expose the password length. Base on a patch by anonymous from the
sourceforge bug tracking system.
Version 1.03
* Sshpass will now exit if ssh is asking to confirm a host key
* Sshpass now has verbose reporting of what error occured through the
program's return codes.
Version 1.02
* Various updates to the tests done by the configure script
* Broader platform support (cygwin)
Version 1.01
* Make sshpass pass along tty window resize events to the inner tty
Version 1.00
* Make sure that authentication failures are terminated early.
* Better detect when the child has exited.
* Improve error reporting.
Version 0.03
* Change the match string from "Password: " to "assword:", as some ssh
usage uses a different prompt ("foo@bar's password:" instead of a
clean "Password:").
* Add the "-V" option to display the version information
Version 0.02
* Add the "-e" option.
|