SHA256
15
0
forked from pool/python-fs

- Update to 2.4.11:

* Restored fs.path import
  * Fixed potential race condition in makedirs. Fixes #310
  * Added missing methods to WrapFS. Fixed #294
  * MemFS now immediately releases all memory it holds when close() is called, rather than when it gets garbage collected. Closes issue #308.
  * FTPFS now translates EOFError into RemoteConnectionError. Closes #292
  * Added automatic close for filesystems that go out of scope. Fixes #298
  * Fixed broken WrapFS.movedir #322
  * Added geturl for TarFS and ZipFS for 'fs' purpose. NoURL for 'download' purpose.
  * Added helpful root path in CreateFailed exception #340
- remove patch more-relaxed-requirements.patch replaced by sed

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fs?expand=0&rev=20
This commit is contained in:
Tomáš Chvátal
2019-09-12 12:32:30 +00:00
committed by Git OBS Bridge
parent f9b4390353
commit d77cc5a8bb
6 changed files with 65 additions and 43 deletions

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Sep 12 12:00:45 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Update to 2.4.11:
* Restored fs.path import
* Fixed potential race condition in makedirs. Fixes #310
* Added missing methods to WrapFS. Fixed #294
* MemFS now immediately releases all memory it holds when close() is called, rather than when it gets garbage collected. Closes issue #308.
* FTPFS now translates EOFError into RemoteConnectionError. Closes #292
* Added automatic close for filesystems that go out of scope. Fixes #298
* Fixed broken WrapFS.movedir #322
* Added geturl for TarFS and ZipFS for 'fs' purpose. NoURL for 'download' purpose.
* Added helpful root path in CreateFailed exception #340
- remove patch more-relaxed-requirements.patch replaced by sed
-------------------------------------------------------------------
Fri Jul 26 14:10:13 UTC 2019 - pgajdos@suse.com