Skip to content

Commit

Permalink
Add changelog, versionchanged re #869, #812
Browse files Browse the repository at this point in the history
  • Loading branch information
bitprophet committed Apr 2, 2013
1 parent 6cd3fc2 commit aa3e430
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ would have also been included in the 1.2 line.
Changelog
=========

* :feature:`812` Add ``use_glob`` option to `.put` so users trying to upload
real filenames containing glob patterns (``*``, ``[`` etc) can disable the
default globbing behavior. Thanks to Michael McHugh for the patch.
* :bug:`844` Allow users to disable Fabric's auto-escaping in `.run`/`.sudo`.
Thanks to Christian Long and Michael McHugh for the patch.
* :bug:`84` Fixed problem with missing -r flag in Mac OS X sed version.
Expand Down
2 changes: 2 additions & 0 deletions fabric/operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,8 @@ def put(local_path=None, remote_path=None, use_sudo=False,
also exhibits the ``.failed`` and ``.succeeded`` attributes.
.. versionchanged:: 1.5
Allow a ``name`` attribute on file-like objects for log output
.. versionchanged:: 1.7
Added ``use_glob`` option to allow disabling of globbing.
"""
# Handle empty local path
local_path = local_path or os.getcwd()
Expand Down

0 comments on commit aa3e430

Please sign in to comment.