From b7ae72c5bbddbf8fbde9e76dcca146a2a540056cc70713ce02ed691c4ce7bce7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20S=C3=BAkup?= Date: Thu, 8 Aug 2019 13:21:28 +0000 Subject: [PATCH] =?UTF-8?q?-=20update=20to=201.17.1=20=20*=20Improved=20co?= =?UTF-8?q?nstruction=20of=20file=20paths=20in=20SFTP=20to=20better=20hand?= =?UTF-8?q?le=20native=20Windows=20=20=20=20=20=20source=20paths=20contain?= =?UTF-8?q?ing=20backslashes=20or=20drive=20letters.=20=20*=20Improved=20S?= =?UTF-8?q?FTP=20parallel=20I/O=20for=20large=20reads=20and=20file=20copie?= =?UTF-8?q?s=20to=20better=20handle=20=20=20=20=20=20the=20case=20where=20?= =?UTF-8?q?a=20read=20returns=20less=20data=20than=20what=20was=20requeste?= =?UTF-8?q?d=20when=20not=20=20=20=20=20=20at=20the=20end=20of=20the=20fil?= =?UTF-8?q?e,=20allowing=20AsyncSSH=20to=20get=20back=20the=20right=20resu?= =?UTF-8?q?lt=20even=20=20=20=20=20=20if=20the=20requested=20block=20size?= =?UTF-8?q?=20is=20larger=20than=20the=20SFTP=20server=20can=20handle.=20?= =?UTF-8?q?=20*=20Fixed=20an=20issue=20where=20the=20requested=20SFTP=20bl?= =?UTF-8?q?ock=5Fsize=20wasn=C3=A2=E2=82=AC=E2=84=A2t=20used=20in=20the=20?= =?UTF-8?q?get,=20=20=20=20=20=20copy,=20mget,=20and=20mcopy=20functions?= =?UTF-8?q?=20if=20it=20was=20larger=20than=20the=20default=20size=20of=20?= =?UTF-8?q?16=20KB.=20=20*=20Fixed=20a=20problem=20where=20the=20list=20of?= =?UTF-8?q?=20client=20keys=20provided=20in=20=20=20=20=20=20an=20SSHClien?= =?UTF-8?q?tConnectionOptions=20object=20wasn=C3=A2=E2=82=AC=E2=84=A2t=20a?= =?UTF-8?q?lways=20preserved=20properly=20across=20=20=20=20=20=20the=20op?= =?UTF-8?q?ening=20of=20multiple=20SSH=20connections.=20=20*=20Made=20Asyn?= =?UTF-8?q?cSSH=20tolerant=20of=20unexpected=20authentication=20success/fa?= =?UTF-8?q?ilure=20messages=20=20=20=20=20=20sent=20after=20authentication?= =?UTF-8?q?=20completes.=20AsyncSSH=20previously=20treated=20this=20as=20?= =?UTF-8?q?=20=20=20=20=20a=20protocol=20error=20and=20dropped=20the=20con?= =?UTF-8?q?nection,=20while=20most=20other=20SSH=20implementations=20=20?= =?UTF-8?q?=20=20=20=20ignored=20these=20messages=20and=20allowed=20the=20?= =?UTF-8?q?connection=20to=20continue.=20=20*=20Made=20AsyncSSH=20tolerant?= =?UTF-8?q?=20of=20SFTP=20status=20responses=20which=20are=20missing=20err?= =?UTF-8?q?or=20message=20=20=20=20=20=20and=20language=20tag=20fields,=20?= =?UTF-8?q?improving=20interoperability=20with=20servers=20that=20omit=20?= =?UTF-8?q?=20=20=20=20=20these=20fields.=20When=20missing,=20AsyncSSH=20t?= =?UTF-8?q?reats=20these=20fields=20as=20if=20they=20were=20=20=20=20=20?= =?UTF-8?q?=20set=20to=20empty=20strings.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-asyncssh?expand=0&rev=18 --- asyncssh-1.17.0.tar.gz | 3 --- asyncssh-1.17.1.tar.gz | 3 +++ python-asyncssh.changes | 24 ++++++++++++++++++++++++ python-asyncssh.spec | 2 +- 4 files changed, 28 insertions(+), 4 deletions(-) delete mode 100644 asyncssh-1.17.0.tar.gz create mode 100644 asyncssh-1.17.1.tar.gz diff --git a/asyncssh-1.17.0.tar.gz b/asyncssh-1.17.0.tar.gz deleted file mode 100644 index e311740..0000000 --- a/asyncssh-1.17.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ed34d4731c15453af6f0528bc8ad58db2dd3d632e69d671e36259d437d9b37e3 -size 326554 diff --git a/asyncssh-1.17.1.tar.gz b/asyncssh-1.17.1.tar.gz new file mode 100644 index 0000000..da5c6e6 --- /dev/null +++ b/asyncssh-1.17.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbb4497115e469a09bde32755f4e07c26d4138519b08ffda994926fd89aed83f +size 327718 diff --git a/python-asyncssh.changes b/python-asyncssh.changes index 7764349..116d1c0 100644 --- a/python-asyncssh.changes +++ b/python-asyncssh.changes @@ -1,3 +1,27 @@ +------------------------------------------------------------------- +Thu Aug 8 12:49:50 UTC 2019 - Ondřej Súkup + +- update to 1.17.1 + * Improved construction of file paths in SFTP to better handle native Windows + source paths containing backslashes or drive letters. + * Improved SFTP parallel I/O for large reads and file copies to better handle + the case where a read returns less data than what was requested when not + at the end of the file, allowing AsyncSSH to get back the right result even + if the requested block size is larger than the SFTP server can handle. + * Fixed an issue where the requested SFTP block_size wasn’t used in the get, + copy, mget, and mcopy functions if it was larger than the default size of 16 KB. + * Fixed a problem where the list of client keys provided in + an SSHClientConnectionOptions object wasn’t always preserved properly across + the opening of multiple SSH connections. + * Made AsyncSSH tolerant of unexpected authentication success/failure messages + sent after authentication completes. AsyncSSH previously treated this as + a protocol error and dropped the connection, while most other SSH implementations + ignored these messages and allowed the connection to continue. + * Made AsyncSSH tolerant of SFTP status responses which are missing error message + and language tag fields, improving interoperability with servers that omit + these fields. When missing, AsyncSSH treats these fields as if they were + set to empty strings. + ------------------------------------------------------------------- Tue Jun 4 13:07:40 UTC 2019 - Ondřej Súkup diff --git a/python-asyncssh.spec b/python-asyncssh.spec index b8c1007..21de9bc 100644 --- a/python-asyncssh.spec +++ b/python-asyncssh.spec @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define skip_python2 1 Name: python-asyncssh -Version: 1.17.0 +Version: 1.17.1 Release: 0 Summary: Asynchronous SSHv2 client and server library License: EPL-2.0 OR GPL-2.0-or-later