SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 
Changelog for python311-Fabric-3.2.2-lp156.3.3.noarch.rpm :

* Thu Aug 22 2024 Steve Kowalik - Add patch support-pytest-8.patch:
* Use setup_method(), not setup().- Switch to pyproject macros.
* Thu Oct 19 2023 Ondřej Súkup - Update to 3.2.2- add fix-test-deps.patch to remove vendored dependencies
* [Bug]: fabric.runners.Remote failed to properly deregister its SIGWINCH signal handler on shutdown; in rare situations this could cause tracebacks when the Python process receives SIGWINCH while no remote session is active. This has been fixed.
* [Bug] #2204: The signal handling functionality added in Fabric 2.6 caused unrecoverable tracebacks when invoked from inside a thread (such as the use of fabric.group.ThreadingGroup) under certain interpreter versions. This has been fixed by simply refusing to register signal handlers when not in the main thread. Thanks to Francesco Giordano and others for the reports.
* [Bug]: Neglected to actually add deprecated to our runtime dependency specification (it was still in our development dependencies). This has been fixed.
* [Feature]: Enhanced fabric.testing in ways large and small: Backwards-compatibly merged the functionality of MockSFTP into MockRemote (may be opted-into by instantiating the latter with enable_sftp=True) so you can mock out both SSH and SFTP functionality in the same test, which was previously impossible. It also means you can use this in a Pytest autouse fixture to prevent any tests from accidentally hitting the network! A new pytest fixture, remote_with_sftp, has been added which leverages the previous bullet point (an all-in-one fixture suitable for, eg, preventing any incidental ssh/sftp attempts during test execution). A pile of documentation and test enhancements (yes, testing our testing helpers is a thing).
* [Support]: Added a new runtime dependency on the Deprecated library.
* [Support]: Language update: applied s/sanity/safety/g to the codebase (with the few actual API members using the term now marked deprecated & new ones added in the meantime, mostly in fabric.testing).
* [Feature]: Add a new CLI flag to fab, fab --list-agent-keys, which will attempt to connect to your local SSH agent and print a key list, similarly to ssh-add -l. This is mostly useful for expectations-checking Fabric and Paramiko’s agent functionality, or for situations where you might not have ssh-add handy.
* [Feature]: Implement opt-in support for Paramiko 3.2’s AuthStrategy machinery, as follows: Added a new module and class, fabric.auth.OpenSSHAuthStrategy, which leverages aforementioned new Paramiko functionality to marry loaded SSH config files with Fabric-level and runtime-level parameters, arriving at what should be OpenSSH-client-compatible authentication behavior. See its API docs for details. Added new configuration settings: authentication.strategy_class, which defaults to None, but can be set to OpenSSHAuthStrategy to opt-in to the new behavior. authentication.identities, which defaults to the empty list, and can be a list of private key paths for use by the new strategy class.
* [Bug] #2263: Explicitly add our dependency on decorator to setup.py instead of using Invoke’s old, now removed, vendored copy of same. This allows Fabric to happily use Invoke 2.1 and above
* Sun Jul 02 2023 ecsos - Update to 3.0.1
* [Bug] #2241: A typo prevented Fabric’s command runner from properly calling its superclass stop() method, which in tandem with a related Invoke bug meant messy or long shutdowns in many scenarios.- Changes from 3.0.0
* [Feature]: Change the default configuration value for inline_ssh_env from False to True, to better align with the practicalities of common SSH server configurations. - Warning This change is backwards incompatible if you were using environment-variable-setting kwargs or config settings, such as Connection.run(command, env={\'SOME\': \'ENV VARS\'}), and were not already explicitly specifying the value of inline_ssh_env.
* [Bug] #1981: (fixed in #2195) Automatically close any open SFTP session during fabric.connection.Connection.close; this avoids issues encountered upon re-opening a previously-closed connection object.
* [Support]: Drop support for Python <3.6, including Python 2. - Warning This is a backwards incompatible change if you are not yet on Python 3.6 or above; however, pip shouldn’t offer you this version of Fabric as long as your pip version understands python_requires metadata.- Drop remove-mock.patch because now in upstream.- Drop remove-pathlib2.patch because now in upstream.
* Sat Jul 01 2023 ecsos - Add %{?sle15_python_module_pythons}
* Tue Oct 25 2022 Matej Cepl - Remove conditional definition of python_module.
* Mon Aug 08 2022 Steve Kowalik - Add patch remove-pathlib2.patch:
* Drop install_requires on pathlib2.
* Tue Aug 02 2022 Otto Hollmann - Update to 2.7.1:
* [Bug] #1924: (also #2007) Overhaul behavior and testing re: merging together different sources for the key_filename parameter in Connection.connect_kwargs. This fixes a number of type-related errors (string objects have no extend attribute, cannot add lists to strings, etc).
* Tue May 17 2022 Steve Kowalik - Update to 2.7.0:
* Add ~fabric.connection.Connection.shell, a belated port of the v1 open_shell() feature.
* Forward local terminal resizes to the remote end, when applicable. (For the technical: this means we now turn SIGWINCH into SSH window-change messages.)
* Update ~fabric.connection.Connection temporarily so that it doesn\'t incidentally apply replace_env=True to local shell commands, only remote ones.- Add patch remove-mock.patch:
* Use unittest.mock, instead of mock
* Thu Mar 10 2022 Steve Kowalik - pytest-relaxed now supports pytest 6, so test on all python versions.
* Tue Dec 28 2021 Ben Greiner - Don\'t test on python310 -- gh#bitprophet/pytest-relaxed#12 (This is mainly required by azure-cli in the primary python3 flavor)
* Thu Aug 12 2021 John Paul Adrian Glaubitz - Update to 2.6.0:
* [Feature] #1999: Add sudo support to Group. Thanks to Bonnie Hardin for the report and to Winston Nolan for an early patchset.
* [Feature] #1810: Add put/get support to Group.
* [Feature] #1868: Ported a feature from v1: interpolating the local path argument in Transfer.get with connection and remote filepath attributes. For example, cxn.get(remote=\"/var/log/foo.log\", local=\"{host}/\") is now feasible for storing a file in per-host-named directories or files, and in fact Group.get does this by default.
* [Feature]: When the local path argument to Transfer.get contains nonexistent directories, they are now created instead of raising an error. Warning: This change introduces a new runtime dependency: pathlib2.
* [Bug]: Fix a handful of issues in the handling and mocking of SFTP local paths and os.path members within fabric.testing; this should remove some occasional “useless Mocks” as well as hewing closer to the real behavior of things like os.path.abspath re: path normalization.- Update Requires from setup.py
* Tue Oct 13 2020 Benjamin Greiner - Upper limit pytest 6.1 -- gh#bitprophet/pytest-relaxed#12
* Mon May 11 2020 Matej Cepl - Adds Provides for python-Fabric3.
* Tue May 05 2020 Marketa Calabkova - Add patch fix-executable.patch to fix tests
* Thu Sep 12 2019 Tomáš Chvátal - Update to 2.5.0:
* [Feature] #1989: Reinstate command timeouts, by supporting the implementation of that feature in Invoke
* [Feature]: Allow specifying connection timeouts
* [Feature] #1985: Add support for explicitly closing remote subprocess’ stdin when local stdin sees an EOF, by implementing a new command-runner method recently added to Invoke; this prevents remote programs that ‘follow’ stdin from blocking forever.
* [Bug]: Anonymous/’remainder’ subprocess execution (eg fab -H host -- command, as opposed to the use of Connection.run inside tasks)
* Tue Apr 09 2019 John Paul Adrian Glaubitz - Version update to 2.4.0:
* [Feature] #1709: Add Group.close to allow closing an entire group’s worth of connections at once. Patch via Johannes Löthberg.
* [Feature] #1780: Add context manager behavior to Group, to match the same feature in Connection. Feature request by István Sárándi.
* [Feature] #1849: Add Connection.from_v1 (and Config.from_v1) for easy creation of modern Connection/Config objects from the currently configured Fabric 1.x environment. Should make upgrading piecemeal much easier for many use cases.- additional changes from version 2.3.2:
* [Bug] #1852: Grant internal Connection objects created during ProxyJump based gateways/proxies a copy of the outer Connection’s configuration object. This was not previously done, which among other things meant one could not fully disable SSH config file loading (as the internal Connection objects would revert to the default behavior). Thanks to Chris Adams for the report.
* [Bug]: Some debug logging was reusing Invoke’s logger object, generating log messages “named” after invoke instead of fabric. This has been fixed by using Fabric’s own logger everywhere instead.
* [Bug] #1850: Skip over ProxyJump configuration directives in SSH config data when they would cause self-referential RecursionError (e.g. due to wildcard-using Host stanzas which include the jump server itself). Reported by Chris Adams.
* [Bug]: Fix a bug preventing tab completion (using the Invoke-level - -complete flag) from completing task names correctly (behavior was to act as if there were never any tasks present, even if there was a valid fabfile nearby).- Add sed expresion to spec file to remove all vendoring from imports- Run testsuite using the new %pytest macro
* Sat Aug 11 2018 tchvatalAATTsuse.com- Conflict with python-Fabric3 which is forked implementation
* Sat Aug 11 2018 tchvatalAATTsuse.com- Version update to 2.3.1:
* Adds support for python3
* Supports new invoke and invocations modules- Run tests- Add all build/runtime dependencies
* 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
 
ICM