Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-08-25 | Changelog re #376, closes #376 | Jeff Forcier | |
2014-08-25 | Don't make unnecessary calls to LazyFqdn.__str__. | Olle Lundberg | |
Before this patch we always tried to expand variables in the config even if they weren't present. This meant that we made an expensive call to LazyFqdn.__str__ the first iteration of the expand loop, stealing precious cpu and user time. We now check that the expansion actually exists in the config before expanding it, this will speed up the case where %l is not used. This fixes #338 | |||
2014-08-25 | Updating doco for sftp_client.put() | w3iBStime | |
Adding a note to indicate that the remotepath should include a filename. | |||
2014-08-25 | Changelog re #324, closes #324 | Jeff Forcier | |
2014-08-25 | Fix some minor typos. | Roy Wellington Ⅳ | |
2014-08-25 | Changelog re #312, closes #312 | Jeff Forcier | |
2014-08-25 | Set Transport.active to False early in Transport.__init__. | Simon Percivall | |
2014-08-25 | Changelog re #272 | Jeff Forcier | |
2014-08-25 | Don't hash the input hostname when checking a host key if the input hostname ↵ | Sigmund Augdal | |
is already hashed This happens in the loop checking if a hostkey is already loaded when loading host key files. This reduces time to load host keys file with about two seconds for me | |||
2014-08-25 | Rework re #239 to work off post-1.13 codebase. Closes #239 | Jeff Forcier | |
2014-08-25 | Fix docstrings re: addition of `getfo`/`putfo`, closes #229 | Jeff Forcier | |
2014-08-25 | Changelog re #169 | Jeff Forcier | |
2014-08-25 | Minor refactor, re #169 | Jeff Forcier | |
2014-08-25 | Changelog re #285, re #352 | Jeff Forcier | |
Conflicts: sites/www/changelog.rst | |||
2014-08-25 | Support passing in "buffer" objects again where bytestrings are expected. | Jelmer Vernooij | |
This fixes bzr's use of paramiko. Fixes issue #343/#285. | |||
2014-08-11 | We support 3.2 | Jeff Forcier | |
2014-05-07 | Need wheel to build wheels! | Jeff Forcier | |
2014-05-07 | Cut 1.13.1 | Jeff Forcier | |
2014-05-07 | Merge branch '1.12' into 1.13 | Jeff Forcier | |
Conflicts: paramiko/__init__.py setup.py sites/www/changelog.rst | |||
2014-05-07 | Cut 1.12.4 | Jeff Forcier | |
2014-05-07 | Merge branch '1.11' into 1.12 | Jeff Forcier | |
Conflicts: paramiko/__init__.py setup.py | |||
2014-05-07 | Cut 1.11.6 | Jeff Forcier | |
2014-04-24 | Formatting | Jeff Forcier | |
2014-04-24 | Fix some trailing whitespace | Jeff Forcier | |
2014-04-24 | Merge updated a01e449 from al-tonio | Jeff Forcier | |
2014-04-24 | Use newer alabaster w/ showhidden in sidebar TOC | Jeff Forcier | |
Lets us not have 2x TOCs on landing page | |||
2014-04-24 | README py3 update | Jeff Forcier | |
2014-04-24 | Show Travis status in website sidebar | Jeff Forcier | |
2014-04-24 | Errything uses intersphinx to Python | Jeff Forcier | |
2014-04-24 | Nuke Fab-oriented link color override | Jeff Forcier | |
2014-04-24 | Formatting | Jeff Forcier | |
2014-04-24 | Update copyright in README to be more accurate | Jeff Forcier | |
2014-04-24 | Merge branch '1.11' into 1.12 | Jeff Forcier | |
2014-04-24 | Merge branch '1.12' into 1.13 | Jeff Forcier | |
2014-04-24 | Fix incorrect monospacing | Jeff Forcier | |
2014-04-24 | Fix incorrect monospacing | Jeff Forcier | |
2014-04-24 | Reword docs/changelog re #315 | Jeff Forcier | |
2014-04-17 | BufferedFile.read() now returns byte strings instead of text strings | Antoine Brenner | |
It is the right thing to do since we have no idea what encoding the file is in, or even if the file is text data. BufferedFile.readline() is unchanged and returns text strings assuming the file is utf-8 encoded. This should fix the following issue: http://comments.gmane.org/gmane.comp.sysutils.backup.obnam/252 Antoine Brenner Conflicts: sites/www/changelog.rst | |||
2014-04-16 | Merge branch '1.11' into 1.12 | Jeff Forcier | |
2014-04-16 | Merge branch '1.12' into 1.13 | Jeff Forcier | |
2014-04-16 | Added self.args for exception classes. Used for unpickling | Jeff Forcier | |
Related to fabric/fabric#986 and fabric/fabric#714 Conflicts: sites/www/changelog.rst | |||
2014-04-16 | Merge branch '1.12' into 1.13 | Jeff Forcier | |
Conflicts: paramiko/sftp_client.py sites/www/changelog.rst tests/test_sftp.py | |||
2014-04-16 | Merge branch '1.11' into 1.12 | Jeff Forcier | |
2014-04-16 | Fix logging error in sftp_client for filenames containing the character. | Jeff Forcier | |
Bug reported here: http://vlists.pepperfish.net/pipermail/obnam-flarn.net/2013-May/000767.html Antoine Brenner Backported to 1.11 by @bitprophet Conflicts: paramiko/sftp_client.py sites/www/changelog.rst tests/test_sftp.py | |||
2014-04-14 | Merge pull request #310 from offbyone/fix-sporadic-test-failures | Jeff Forcier | |
Revert a regression in DSS key generation | |||
2014-04-14 | Revert a regression in DSS key generation | Chris Rose | |
A change in f0017b833098 caused a random regression in DSS key signing due to moving the padding on the integers generated by DSA from the left to the right. So, for example, if signing the test case string "jerri blank", the random number might be generated as: k=703745698612177278239572677252380378525350342103 If so, the signature parts will be: r=184615963997659989901526712385095827509599268253 s=2682547683721156713440053885014828604195555319 Note the s being shorter. Prior to f0017b833098, s would be right-padded with zeros: s=268254768372115671344005388501482860419555531900 After, it would be left-padded: s=002682547683721156713440053885014828604195555319 When converting back to a long, that loses the padding. This change restores the behaviour. Fixes #308 | |||
2014-04-01 | Merge branch '1.11' into 1.12 | Jeff Forcier | |
2014-04-01 | Merge branch '1.10' into 1.11 | Jeff Forcier | |
2014-04-01 | Merge branch '1.12' into 1.13 | Jeff Forcier | |
2014-04-01 | This setting no longer needed & causes warnings if left in | Jeff Forcier | |