SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 
Changelog for python2-Fabric-1.14.0-lp151.3.3.noarch.rpm :

* Mon Jan 22 2018 tchvatalAATTsuse.com- Add skip_python3 as it is not compatible at all, fixes bsc#1073564- Drop the Sphinx dep as we can\'t generate the deps because of py3 incompatibility- Run fdupes on install
* Fri Oct 06 2017 jengelhAATTinai.de- Rectify grammar issues in descriptions.
* Fri Oct 06 2017 jmatejekAATTsuse.com- singlespec auto-conversion- shortened description- conditionally enabled tests (they still fail)- update to 1.14.0
* minor bugfixes and feature support
* see ful changelog at http://www.fabfile.org/changelog.html
* Thu Feb 18 2016 eshmarnevAATTsuse.com- update to version 1.10.2:
* Fix issue with ssh/config not having a cross-platform default path.
* Recursively unwrap decorators instead of only unwrapping a single decorator level, when obtaining task docstrings.
* Fix “NameError: free variable referenced before assignment in enclosing scope”.
* Redirect output of cd to /dev/null so users enabling bash’s CDPATH (or similar features in other shells) don’t have polluted output captures.
* Fix a couple minor issues with the operation of & demo code for the JobQueue class.
* Update functionality added in #1213 so abort error messages don’t get printed twice (once by us, once by sys.exit) but the annotated exception error message is retained.
* Mon May 04 2015 benoit.moninAATTgmx.fr- update to version 1.10.1:
* [Bug] #1226: Update get to ensure that env.user has access to tempfiles before changing permissions. Also corrected permissions from 404 to 0400 to match comment. Patch by Curtis Mattoon; original report from Daniel Watkins.
* [Support] #1229: Add some missing API doc hyperlink references. Thanks to Tony Narlock.
* [Support] #958: Remove the Git SHA portion of our version string generation; it was rarely useful & occasionally caused issues for users with non-Git-based source checkouts.
* [Bug] #1180: Fix issue with unicode steam outputs crashing if stream encoding type is None. Thanks to AATTjoekiller for catch & patch.
* [Bug] #1228: Update the CommandTimeout class so it has a useful str instead of appearing blank when caught by Fabric’s top level exception handling. Catch & patch from Tomaz Muraus.
* [Support] #1213: Add useful exception message to the implicit SystemExit raised by Fabric’s use of sys.exit inside the abort function. This allows client code catching SystemExit to have better introspection into the error. Thanks to Ioannis Panousis.
* [Bug] #1019: (also #1022, #1186) Fix “is a tty” tests in environments where streams (eg sys.stdout) have been replaced with objects lacking a .isatty() method. Thanks to Miki Tebeka for the original report, Lele Long for a subsequent patch, and Julien Phalip for the final/merged patch.
* [Bug] #1201: Don’t naively glob all get targets - only glob actual directories. This avoids incorrectly yielding permission errors in edge cases where a requested file is within a directory lacking the read permission bit. Thanks to Sassa Nf for the original report.- additional changes from version 1.10.0:
* [Feature] #975: Fabric can now be invoked via python -m fabric in addition to the typical use of the fab entrypoint. Patch courtesy of Jason Coombs.
* [Feature] #1090: Add option to skip unknown tasks. Credit goes to Jonas Lundberg.
* [Feature] #1098: Add support for dict style roledefs. Thanks to Jonas Lundberg.
* [Feature] #700: Added use_sudo and temp_dir params to get. This allows downloading files normally not accessible to the user using sudo. Thanks to Jason Coombs for initial report and to Alex Plugaru for the patch (#1121).
* [Bug] #1188: Update local to close non-pipe file descriptors in the child process so subsequent calls to local aren’t blocked on e.g. already-connected network sockets. Thanks to Tolbkni Kao for catch & patch.- additional changes from version 1.9.1:
* [Bug] #1167: Add Jinja to test_requires in setup.py for the couple of newish tests that now require it. Thanks to Kubilay Kocak for the catch.
* [Bug] #600: Clear out connection caches in full when prepping parallel-execution subprocesses. This avoids corner cases causing hangs/freezes due to client/socket reuse. Thanks to Ruslan Lutsenko for the initial report and Romain Chossart for the suggested fix.
* [Bug] #1026: Fix a typo preventing quiet operation of is_link. Caught by AATTdongweiming.
* [Bug] #1059: Update IPv6 support to work with link-local address formats. Fix courtesy of AATTobormot.
* [Bug] #1096: Encode Unicode text appropriately for its target stream object to avoid issues on non-ASCII systems. Thanks to Toru Uetani for the original patch.
* [Bug] #852: Fix to respect template_dir for non Jinja2 templates in upload_template. Thanks to Adam Kowalski for the patch and Alex Plugaru for the initial test case.
* [Bug] #1134: Skip bad hosts when the tasks are executed in parallel. Thanks to Igor Maravić AATTi-maravic.
* [Bug] #1146: Fix a bug where upload_template failed to honor lcd when mirror_local_mode is True. Thanks to Laszlo Marai for catch & patch.
* [Bug] #1147: Use stat instead of lstat when testing directory-ness in the SFTP module. This allows recursive downloads to avoid recursing into symlinks unexpectedly. Thanks to Igor Kalnitsky for the patch.
* [Bug] #1165: Prevent infinite loop condition when a gateway host is enabled & the same host is in the regular target host list. Thanks to AATTCzBiX for catch & patch.- additional changes from version 1.9.0:
* [Bug] #965: Tweak IO flushing behavior when in linewise (& thus parallel) mode so interwoven output is less frequent. Thanks to AATTakidata for catch & patch.
* [Feature] #741: Add env.prompts dictionary, allowing users to set up custom prompt responses (similar to the built-in sudo prompt auto-responder.) Thanks to Nigel Owens and David Halter for the patch.
* [Feature] #1082: Add pty passthrough kwarg to upload_template.
* [Support]: Modified packaging data to reflect that Fabric requires Paramiko < 1.13 (which dropped Python 2.5 support.)
* [Support] #1105: Enhance setup.py to allow Paramiko 1.13+ under Python 2.6+. Thanks to to AATTArfrever for catch & patch.
* [Support] #1106: Fix a misleading/ambiguous example snippet in the fab usage docs to be clearer. Thanks to AATTzed.
* [Feature] #1101: Reboot operation now supports custom command. Thanks to Jonas Lejon.
* [Feature] #938: Add an env var env.effective_roles specifying roles used in the currently executing command. Thanks to Piotr Betkier for the patch.
* [Feature] #1078: Add .command and .real_command attributes to local return value. Thanks to Alexander Teves (AATTalexanderteves) and Konrad Hałas (AATTkonradhalas).- additional changes from version 1.8.4:
* [Support] #1105: Enhance setup.py to allow Paramiko 1.13+ under Python 2.6+. Thanks to to AATTArfrever for catch & patch.
* [Bug] #898: Treat paths that begin with tilde “~” as absolute paths instead of relative. Thanks to Alex Plugaru for the patch and Dan Craig for the suggestion.- additional changes from version 1.8.3:
* [Support]: Modified packaging data to reflect that Fabric requires Paramiko < 1.13 (which dropped Python 2.5 support.)- additional changes from version 1.8.2:
* [Bug] #1046: Fix typo preventing use of ProxyCommand in some situations. Thanks to Keith Yang.
* [Bug] #917: Correct an issue with put(use_sudo=True, mode=xxx) where the chmod was trying to apply to the wrong location. Thanks to Remco (AATTnl5887) for catch & patch.
* [Bug] #955: Quote directories created as part of put‘s recursive directory uploads when use_sudo=True so directories with shell meta-characters (such as spaces) work correctly. Thanks to John Harris for the catch.- additional changes from version 1.8.1:
* [Bug] #948: Handle connection failures due to server load and try connecting to hosts a number of times specified in env.connection_attempts.
* [Bug] #957: Fix bug preventing use of env.gateway with targets requiring password authentication. Thanks to Daniel González, AATTBengrunt and AATTadrianbn for their bug reports.
* [Bug] #956: Fix pty size detection when running inside Emacs. Thanks to AATTakitada for catch & patch.- increase required version of paramiko to 1.10- fix html documentation generation
* Thu Oct 24 2013 speilickeAATTsuse.com- Require python-setuptools instead of distribute (upstreams merged)
* Wed Sep 25 2013 p.drouandAATTgmail.com- Update to version 1.8.0 + [Feature] #910: Added a keyword argument to rsync_project to configure the default options. Thanks to AATTmoorepants for the patch. + [Support] #984: Make this changelog easier to read! Now with per-release sections, generated automatically from the old timeline source format. + [Feature] #931: Allow overriding of abort behavior via a custom exception-returning callable set as env.abort_exception.
* Tue Jul 30 2013 speilickeAATTsuse.com- Update to version 1.7.0: + [Feature] #925: Added contrib.files.is_link. Thanks to AATTjtangas for the patch. + [Feature] #922: Task argument strings are now displayed when using fab -d. Thanks to Kevin Qiu for the patch. + [Bug] #912: Leaving template_dir un-specified when using upload_template in Jinja mode used to cause \'NoneType\' has no attribute \'startswith\' errors. This has been fixed. Thanks to Erick Yellott for catch & to Erick Yellott + Kevin Williams for patches. + [Feature] #924: Add new env var option colorize_errors to enable coloring errors and warnings. Thanks to Aaron Meurer for the patch. + [Bug] #593: Non-ASCII character sets in Jinja templates rendered within upload_template would cause UnicodeDecodeError when uploaded. This has been addressed by encoding as utf-8 prior to upload. Thanks to Sébastien Fievet for the catch. + [Feature] #908: Support loading SSH keys from memory. Thanks to Caleb Groom for the patch. + [Bug] #171: Added missing cross-references from env variables documentation to corresponding command-line options. Thanks to Daniel D. Beck for the contribution. + [Bug] #884: The password cache feature was not working correctly with password-requiring SSH gateway connections. That’s fixed now. Thanks to Marco Nenciarini for the catch. + [Feature] #826: Enable sudo extraction of compressed archive via use_sudo kwarg in upload_project. Thanks to AATTabec for the patch. + [Bug] #694: Allow users to work around ownership issues in the default remote login directory: add temp_dir kwarg for explicit specification of which “bounce” folder to use when calling put with use_sudo=True. Thanks to Devin Bayer for the report & Dieter Plaetinck / Jesse Myers for suggesting the workaround. + [Bug] #882: Fix a get bug regarding spaces in remote working directory names. Thanks to Chris Rose for catch & patch.- Changes from version 1.6.1: + [Bug] #868: Substantial speedup of parallel tasks by removing an unnecessary blocking timeout in the JobQueue loop. Thanks to Simo Kinnunen for the patch. + [Bug] #328: lcd was no longer being correctly applied to upload_template; this has been fixed. Thanks to Joseph Lawson for the catch. + [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. + [Bug] #870: Changes to shell env var escaping highlighted some extraneous and now damaging whitespace in with path():. This has been removed and a regression test added. + [Bug] #871: Use of string mode values in put(local, remote, mode=\"NNNN\") would sometimes cause Unsupported operand errors. This has been fixed. + [Bug] #84: Fixed problem with missing -r flag in Mac OS X sed version. Thanks to Konrad Hałas for the patch. + [Bug] #861: Gracefully handle situations where users give a single string literal to env.hosts. Thanks to Bill Tucker for catch & patch. + [Bug] #367: Expand paths with tilde inside (contrib.files). Thanks to Konrad Hałas for catch & patch. + [Feature] #845: Downstream synchronization option implemented for rsync_project. Thanks to Antonio Barrero for the patch.
* Sat Mar 02 2013 alexandreAATTexatati.com.br- Update to 1.6.0: - [Bug] #844: Account for SSH config overhaul in Paramiko 1.10 by e.g. updating treatment of IdentityFile to handle multiple values. This and related SSH config parsing changes are backwards incompatible; we are including them in this release because they do fix incorrect, off-spec behavior. - [Bug] #843: Ensure string pool_size values get run through int() before deriving final result (stdlib min() has odd behavior here...). Thanks to Chris Kastorff for the catch. - [Bug] #839: Fix bug in rsync_project where IPv6 address were not always correctly detected. Thanks to Antonio Barrero for catch & patch. - [Bug] #587: Warn instead of aborting when env.use_ssh_config is True but the configured SSH conf file doesn’t exist. This allows multi-user fabfiles to enable SSH config without causing hard stops for users lacking SSH configs. Thanks to Rodrigo Pimentel for the report. - [Feature] #821: Add remote_tunnel to allow reverse SSH tunneling (exposing locally-visible network ports to the remote end). Thanks to Giovanni Bajo for the patch. - [Feature] #823: Add env.remote_interrupt which controls whether Ctrl-C is forwarded to the remote end or is captured locally (previously, only the latter behavior was implemented). Thanks to Geert Jansen for the patch.
* Tue Jan 29 2013 alexandreAATTexatati.com.br- Update to 1.5.3: - [Bug] #806: Force strings given to getpass during password prompts to be ASCII, to prevent issues on some platforms when Unicode is encountered. Thanks to Alex Louden for the patch. - [Feature] #805: Update shell_env to play nice with Windows (7, at least) systems. Thanks to Fernando Macedo for the patch. - [Bug] #654: Parallel runs whose sum total of returned data was large (e.g. large return values from the task, or simply a large number of hosts in the host list) were causing frustrating hangs. This has been fixed. - [Bug] #791: Cast reboot‘s wait parameter to a numeric type in case the caller submitted a string by mistake. Thanks to Thomas Schreiber for the patch.
 
ICM