Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-03-11 | OpenSSH docs state %C should also work in IdentityFile and Match exec | Jeff Forcier | |
(at least, of what we presently ourselves support - it's also allowed in others) | |||
2022-03-11 | Changelog enhancement | Jeff Forcier | |
2022-03-11 | Prettify, add %C as acceptable controlpath token, mock gethostname | Jason Brand | |
2022-03-11 | Add to changelog | Jason Brand | |
2022-03-11 | Import only sha1 | Jason Brand | |
2022-03-11 | Add %C to doc | Jason Brand | |
2022-03-11 | %C support in config file | Jason Brand | |
2022-03-11 | blacken | Jeff Forcier | |
2022-03-11 | Tweak changelog language a bit | Jeff Forcier | |
2022-03-11 | Refactor SSH agent socket connection stuff | Jeff Forcier | |
Feels like this entire module wants more rigorous rewriting, but at least for now any future tweaks to agent bits won't hit this awful copypasta. Minor functionality update: now both methods of dealing with unix sockets will use retry_on_signal to try and skip over spurious EINTRs | |||
2022-03-11 | Changelog re #1509, re #1837, closes #1868 | Jeff Forcier | |
2022-03-11 | support Windows OpenSSH agent besides Putty's pageant (addresses #1509) | Lew Gordon | |
Since quite a while there exists a native openssh port for windows. If the Putty pageant is not present, try to use the native port's agent instead. | |||
2022-03-11 | Merge branch '2.9' | Jeff Forcier | |
2022-03-11 | Merge branch '2.8' into 2.9 | Jeff Forcier | |
2022-03-11 | Clarify SFTPClient.open() docs re: actual behavior of BufferedFile | Jeff Forcier | |
Closes #2000 | |||
2022-03-07 | Massively speed up low-level SFTP read/write | Jeff Forcier | |
This doesn't impact most users who perform reads/writes using SFTPClient.get(fo)/put(fo) as those naturally perform chunking. However, users accessing the raw SFTPFile objects via SFTPClient.open() and then reading/writing large (more than a few MB) files, may experience severe slowdown due to inefficient slicing of the file being read/written. This change replaces the naive "slice a list of bytes" code with bytearray and memoryview, which are significantly more performant in these use cases, while remaining backwards compatible. Patch courtesy of Sevastian Tchernov. | |||
2022-02-25 | Merge branch '2.8' into 2.9 | Jeff Forcier | |
2022-02-25 | blacken | Jeff Forcier | |
2022-02-25 | Comment and changelog re #1985 | Jeff Forcier | |
2022-02-25 | Add six to `install_requires` | Sondre Lillebø Gundersen | |
2022-02-11 | Clarify disabled algorithms keys vs pubkeys in changelog | Jeff Forcier | |
2022-01-08 | Cut 2.9.2 | Jeff Forcier | |
2022-01-08 | Fix up logging and exception handling re: pubkey auth and presence/lack of ↵ | Jeff Forcier | |
server-sig-algs Re #1961 | |||
2022-01-08 | Add more visible backwards compat warning re 2.9 RSA2 changes | Jeff Forcier | |
2021-12-24 | Cut 2.9.1 | Jeff Forcier | |
2021-12-24 | Fix #1955 | Jeff Forcier | |
2021-12-24 | Changelog and test re #1955 | Jeff Forcier | |
2021-12-23 | Cut 2.9.0 | Jeff Forcier | |
2021-12-23 | Changelog format tweak | Jeff Forcier | |
2021-12-23 | Add agent RSA-SHA2 support, also tweak changelog w/ more tickets | Jeff Forcier | |
2021-12-23 | Add support for RSA SHA2 host and public keys | Jeff Forcier | |
Includes a handful of refactors and new semiprivate attributes on Transport and AuthHandler for better test visibility. | |||
2021-12-23 | Enhance kex DEBUG logging to be more readable | Jeff Forcier | |
The one-liner from 2005 is not cutting it, sorry | |||
2021-12-23 | Longterm TODOs | Jeff Forcier | |
2021-12-09 | Weird typos introduced 2 years ago, bah | Jeff Forcier | |
Test currently passes on my workstation tho | |||
2021-11-28 | No idea why the lack of this blew up on circle but not locally | Jeff Forcier | |
Probably the locales differ? sigh | |||
2021-11-28 | Cut 2.8.1 | Jeff Forcier | |
2021-11-28 | Fix changelog reference | Jeff Forcier | |
2021-11-28 | Changelog format fix re #992 | Jeff Forcier | |
2021-11-28 | Credit re #992 | Jeff Forcier | |
2021-11-28 | Blacken code for #992 | Jeff Forcier | |
2021-11-28 | Cleanup re #992 | Jeff Forcier | |
- remove apparently vestigial bits - remove Python 2.6 related bits - use pytest.skip instead of custom skip | |||
2021-11-28 | Add changelog entry for #992 | Martin Packman | |
2021-11-28 | Fix failure in listdir when server uses a locale | Martin Packman | |
Fixes #985 SFTPAttributes uses the locale-aware %b directive for the abbreviated month name with time.strftime, but was not decoding the result on Python 2.7. Add a strftime alias in py3compat that will always return unicode, and resolve the mixing of bytes and text in SFTPAttributes methods. Add a test at the listdir level, and a more specific test for the SFTPAttributes asbytes method. | |||
2021-11-28 | Add new requireNonAsciiLocale test decorator | Martin Packman | |
2021-11-28 | Expose Python 2.6 compatible test skip decorator | Martin Packman | |
2021-11-28 | Changelog re #1024 | Jeff Forcier | |
2021-11-28 | Catch TypeError and UnsupportedAlgorithm when using Cryptography to load ↵ | Jeff Forcier | |
private key material Prior to this change, these exceptions bubble up as-is instead of becoming SSHException instances like most other key-loading errors | |||
2021-11-28 | Changelog closes #1257, re #1266 | Jeff Forcier | |
2021-11-28 | Tests proving #1257 | Jeff Forcier | |
2021-11-28 | Patch missed RSAKey for some reason. Fixed. | Jeff Forcier | |