From e66c3d38b1ed8de25db2171c4b3a1bd855783286 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Tue, 24 Jul 2018 14:28:10 -0700 Subject: [PATCH] Improve changelog entry --- sites/www/changelog.rst | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst index 92ab45a1b6..ffc4098876 100644 --- a/sites/www/changelog.rst +++ b/sites/www/changelog.rst @@ -5,12 +5,11 @@ Changelog .. note:: Looking for the Fabric 1.x changelog? See :doc:`/changelog-v1`. -- :bug:`1749` Improve detection of - `~fabric.transfer.Transfer.put`/`~fabric.transfer.Transfer.get` argument - handling re: directory paths on the receiving end; previously, calls like - ``c.put("file.txt", "/some/directory/")`` weren't correctly constructing a - full file path, typically triggering ``IOError``. Thanks to Peter Uhnak for - the report. +- :bug:`1749` Improve `~fabric.transfer.Transfer.put` behavior when uploading + to directory (vs file) paths, which was documented as working but had not + been fully implemented. The local path's basename (or file-like objects' + ``.name`` attribute) is now appended to the remote path in this case. Thanks + to Peter Uhnak for the report. - :bug:`1762` Fix problem where lower configuration levels' setting of ``connect_kwargs.key_filename`` were being overwritten by the CLI ``--identity`` flag's value...even when that value was the empty list.