You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Added HostConfig class and tests. Added parallel client implementation for new host config type and tests.
* Added HostConfig documentation
* Updated paramiko client for new host config type.
* Updated changelog
* Added remote channel closing to scp recv/send.
* Re-did session init and authentication methods to avoid sharing session in threads.
* Moved thread pool to offload handshake for native client.
* Updated tunnel del
Copy file name to clipboardexpand all lines: Changelog.rst
+13-6
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,23 @@
1
1
Change Log
2
2
============
3
3
4
-
1.12.2 (unreleased)
5
-
+++++++++++++++++++
4
+
1.13.0 (unreleased)
5
+
++++++++++++++++++++
6
+
7
+
Changes
8
+
--------
9
+
10
+
* Added ``pssh.config.HostConfig`` for providing per-host configuration. Replaces dictionary ``host_config`` which is now deprecated. See `per-host configuration <https://parallel-ssh.readthedocs.io/en/latest/advanced.html#per-host-configuration>`_ documentation.
11
+
* ``ParallelSSHClient.scp_send`` and ``scp_recv`` with directory target path will now copy source file to directory keeping existing name instead of failing when recurse is off - #183.
6
12
7
13
Fixes
8
14
------
9
15
10
-
* `ParallelSSHClient.copy_file` with recurse enabled and absolute destination path would create empty directory in home directory of user - #197.
11
-
* `ParallelSSHClient.copy_file` and `scp_recv` with recurse enabled would not create remote directories when copying empty local directories.
12
-
* `ParallelSSHClient.scp_send` would require SFTP when recurse is off and remote destination path contains directory - #157.
13
-
* `ParallelSSHClient.scp_recv` could block infinitely on large - 200-300MB or more - files.
16
+
* ``ParallelSSHClient.copy_file`` with recurse enabled and absolute destination path would create empty directory in home directory of user - #197.
17
+
* ``ParallelSSHClient.copy_file`` and ``scp_recv`` with recurse enabled would not create remote directories when copying empty local directories.
18
+
* ``ParallelSSHClient.scp_send`` would require SFTP when recurse is off and remote destination path contains directory - #157.
19
+
* ``ParallelSSHClient.scp_recv`` could block infinitely on large - 200-300MB or more - files.
0 commit comments