summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRed_M <1468433+Red-M@users.noreply.github.com>2018-04-10 02:22:18 +1000
committerGitHub <noreply@github.com>2018-04-10 02:22:18 +1000
commitdf1d14fb2d70db2810a4c60266bf569bf82d2d6e (patch)
tree3902d0a8b6c9d4d5d58c2eba5b3c8023fa8bd571
parentcad8b12086d9f94796b8ce9a896920e986600167 (diff)
downloadpexpect-df1d14fb2d70db2810a4c60266bf569bf82d2d6e.tar.gz
pxssh changelog for release 4.5 (#484)
* Update release changelog.
-rw-r--r--doc/history.rst19
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/history.rst b/doc/history.rst
index bafd98b..4041b7d 100644
--- a/doc/history.rst
+++ b/doc/history.rst
@@ -11,6 +11,25 @@ Version 4.5
This change allows the use of select.poll() on file descriptors.
It allows for > 1024 file descriptors on the system, and, it is not used by
default due to compatibility concerns and must be explicitly enabled.
+* :mod:`pexpect.pxssh` now has several new options in :meth:`pxssh.pxssh.login`.
+* :meth:`pxssh.pxssh.login` has `password_regex` which allows changing the password
+ prompt regex for servers that include ``password:`` somewhere before a command
+ line is reached.(:ghpull:`468`)
+* :meth:`pxssh.pxssh.login` now allows for setting up SSH tunnels to be requested once
+ logged in to the rmeote server. (:ghpull:`473`)
+ The structure should be like this::
+
+ { 'local': ['2424:localhost:22'], # Local SSH tunnels
+ 'remote': ['2525:localhost:22'], # Remote SSH tunnels
+ 'dynamic': [8888] } # Dynamic/SOCKS tunnels
+
+* :meth:`pxssh.pxssh.login` allows subsequent logins from the remote session and treats
+ the session as if it was local. (:ghpull:`472`)
+* :meth:`pxssh.pxssh.login` can allow the the prompt to not be set to something unique
+ incase the remote server is sensetive to new lines at login. (:ghpull:`468`)
+* :meth:`pxssh.pxssh.login` has had a change with an SSH key being provided which is
+ if ``ssh_key`` is set to ``True`` then the SSH client forces forwarding the authentication
+ agent to the remote server. (:ghpull:`473`)
Version 4.4
```````````