14
0
forked from pool/python-scp

- Update to 0.13.1:

* Guard against some malformed messages from the server
  * Remove all introspection logic for progress callback introduced in 0.12
  * progress callback only accept 3 arguments again
  * Introduce progress4 parameter which accepts the peername as 4th argument
  * Fix progress callback failing when it is an instance or class method
  * Fix README.rst for PyPI
  * Add possibility of getting the peer IP and port from the progress callback
  * Make putfo() work with file-like objects that don't provide getvalue()
  * Add putfo() method, allowing one to upload a file-like object
  * Add top-level get() and put() functions for convenience
  * Increase default socket time from 5 to 10 seconds

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-scp?expand=0&rev=8
This commit is contained in:
Tomáš Chvátal
2019-03-13 14:07:12 +00:00
committed by Git OBS Bridge
parent 110bc800d4
commit efff7b1845
4 changed files with 28 additions and 9 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Wed Mar 13 13:52:24 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Update to 0.13.1:
* Guard against some malformed messages from the server
* Remove all introspection logic for progress callback introduced in 0.12
* progress callback only accept 3 arguments again
* Introduce progress4 parameter which accepts the peername as 4th argument
* Fix progress callback failing when it is an instance or class method
* Fix README.rst for PyPI
* Add possibility of getting the peer IP and port from the progress callback
* Make putfo() work with file-like objects that don't provide getvalue()
* Add putfo() method, allowing one to upload a file-like object
* Add top-level get() and put() functions for convenience
* Increase default socket time from 5 to 10 seconds
-------------------------------------------------------------------
Tue Dec 4 12:54:01 UTC 2018 - Matej Cepl <mcepl@suse.com>