14
0

Accepting request 605511 from home:TheBlackCat:branches:devel:languages:python

- Version update to 1.5.4
  + Enhancements
    * #463: FTPServer class can now be used as a context manager.
  + Bug fixes
    * #431: Ctrl-C doesn't exit `python -m pyftpdlib` on Windows.
    * #436: ThreadedFTPServer.max_cons is evaluated threading.activeCount(). If
      the user uses threads of its own it will consume the number of max_cons.
    * #447: ThreadedFTPServer and MultiprocessFTPServer do not join() tasks which
      are no longer consuming resources.
- Disable tests since they randomly fail.
  See https://github.com/giampaolo/pyftpdlib/issues/386

OBS-URL: https://build.opensuse.org/request/show/605511
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyftpdlib?expand=0&rev=9
This commit is contained in:
Todd R
2018-05-09 01:35:26 +00:00
committed by Git OBS Bridge
parent 257ebea97d
commit 12f728c5ad
4 changed files with 31 additions and 5 deletions

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Wed May 9 00:57:35 UTC 2018 - toddrme2178@gmail.com
- Version update to 1.5.4
+ Enhancements
* #463: FTPServer class can now be used as a context manager.
+ Bug fixes
* #431: Ctrl-C doesn't exit `python -m pyftpdlib` on Windows.
* #436: ThreadedFTPServer.max_cons is evaluated threading.activeCount(). If
the user uses threads of its own it will consume the number of max_cons.
* #447: ThreadedFTPServer and MultiprocessFTPServer do not join() tasks which
are no longer consuming resources.
- Disable tests since they randomly fail.
See https://github.com/giampaolo/pyftpdlib/issues/386
-------------------------------------------------------------------
Wed May 2 10:27:38 UTC 2018 - tchvatal@suse.com