SHA256
15
0
forked from pool/python-fs
Files
python-fs/python-fs.changes
Todd R fb7e81c49b Accepting request 669133 from home:TheBlackCat:branches:devel:languages:python
- Update to version 2.2.1
  + Fixed
    * `Registry.install` returns its argument.
- Update to version 2.2.0
    * A few methods have been renamed for greater clarity (but functionality remains the same).
      The old methods are now aliases and will continue to work, but will
      issue a deprecation warning via the `warnings` module.
      Please update your code accordingly.
      > `getbytes` -> `readbytes`
      > `getfile` -> `download`
      > `gettext` -> `readtext`
      > `setbytes` -> `writebytes`
      > `setbinfile` -> `upload`
      > `settext` -> `writetext`
  + Changed
    * Changed default chunk size in `copy_file_data` to 1MB
    * Added `chunk_size` and `options` to `FS.upload`
- Update to version 2.1.3
  + Fixed
    * Incomplete FTPFile.write when using `workers` @geoffjukes
    * Fixed AppFS not creating directory
  + Added
    * Added load_extern switch to opener, fixes #228 @althanos
- Update to version 2.1.2
  + Added
    * Support for Windows NT FTP servers @sspross
  + Fixed
    * Root dir of MemoryFS accesible as a file
    * Packaging issues @televi
    * Deprecation warning re collections.Mapping
- Update to version 2.1.1
  + Added
    * Added PEP 561 py.typed files
    * Use sendfile for faster copies @althonos
    * Atomic exclusive mode in Py2.7 @sqwishy
  + Fixed
    * Fixed lstat @kamomil
- Update to version 2.1.0
  + Added
    * fs.glob support
- Update to version 2.0.27
  + Fixed
    * Fixed for Winows paths #152
    * Fixed ftp dir parsing (@dhirschfeld)
- Update to version 2.0.26
  + Fixed
    * fs.copy and fs.move disable workers if not thread-safe
    * fs.match detects case insensitivity
    * Open in exclusive mode is atomic (@squishy)
    * Exceptions can be pickleabe (@Spacerat)
- Update to version 2.0.25
  + Added
    * workers parameter to fs.copy, fs.move, and fs.mirror for concurrent
      copies
- Update to version 2.0.24
  + Added
    * timeout to FTP opener
- Update to version 2.0.23
  * Fix for Markdown on PyPi, no code changes
- Update to version 2.0.22
  + Fixed
    * Handling of broken unicode on Python2.7
  + Added
    * Added fs.getospath
- Update to version 2.0.21
  + Added
    * Typing information
    * Added Info.suffix, Info.suffixes, Info.stem attributes
  + Fixed
    * Fixed issue with implied directories in TarFS
  + Changed
    * Changed path.splitext so that 'leading periods on the basename are
      ignored', which is the behaviour of os.path.splitext
- Update to version 2.0.20
  + Fixed
    * MultiFS.listdir now correctly filters out duplicates
- Update to version 2.0.19
  + Fixed
    * encoding issue with TarFS
    * CreateFailed now contains the original exception in `exc` attribute
- Update to version 2.0.18
  + Added
    * fs.getfile function
  + Changed
    * Modified walk to use iterators internally (for more efficient walking)
    * Modified fs.copy to use getfile
- Update to version 2.0.17
  + Fixed
    * Issue with ZipFS files missing a byte
- Update to version 2.0.16
  + Added
    * fs.parts
  + Fixed
    * Walk now yields Step named tuples as advertised
  + Added
    * Added max_depth parameter to fs.walk
- Update to version 2.0.15
  + Changed
    * ZipFS files are now seekable (Martin Larralde)
- Update to version 2.0.14
  * No changes, pushed wrong branch to PyPi.
- Update to version 2.0.13
  + Fixed
    * Fixed ignore_errors in walk.py
- Update to version 2.0.12
  + Fixed
    * settext, appendtext, appendbytes, setbytes now raise a TypeError if
      the type is wrong, rather than ValueError
    * More efficient feature detection for FTPFS
    * Fixes for `fs.filesize`
    * Major documentation refactor (Martin Larralde)
- Update to version 2.0.11
  + Added
    * fs.mirror
- Update to version 2.0.10
  + Added
    * Added params support to FS URLs
  + Fixed
    * Many fixes to FTPFS contributed by Martin Larralde.
- Update to version 2.0.9
  + Changed
    * MountFS and MultiFS now accept FS URLS
    * Add openers for AppFS
- Update to version 2.0.8
  + Added
    * Lstat info namespace
    * Link info namespace
    * FS.islink method
    * Info.is_link method
- Update to version 2.0.7
  + Fixes
    * Fixed entry point breaking pip
- Update to version 2.0.6
  + Fixes
    * Opener refinements
- Update to version 2.0.5
  + Fixed
    * Fixed potential for deadlock in MemoryFS
  + Added
    * Added factory parameter to opendir.
    * ClosingSubFS.
    * File objects are all derived from io.IOBase.
  + Fixed
    * Fix closing for FTP opener.
- License change to MIT
- Rebase and update more-relaxed-requirements.patch
- Remove no longer needed python-fs-fix-ftp-test.patch

OBS-URL: https://build.opensuse.org/request/show/669133
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fs?expand=0&rev=12
2019-01-28 16:44:45 +00:00

192 lines
6.0 KiB
Plaintext

-------------------------------------------------------------------
Fri Jan 25 21:31:50 UTC 2019 - Todd R <toddrme2178@gmail.com>
- Update to version 2.2.1
+ Fixed
* `Registry.install` returns its argument.
- Update to version 2.2.0
* A few methods have been renamed for greater clarity (but functionality remains the same).
The old methods are now aliases and will continue to work, but will
issue a deprecation warning via the `warnings` module.
Please update your code accordingly.
> `getbytes` -> `readbytes`
> `getfile` -> `download`
> `gettext` -> `readtext`
> `setbytes` -> `writebytes`
> `setbinfile` -> `upload`
> `settext` -> `writetext`
+ Changed
* Changed default chunk size in `copy_file_data` to 1MB
* Added `chunk_size` and `options` to `FS.upload`
- Update to version 2.1.3
+ Fixed
* Incomplete FTPFile.write when using `workers` @geoffjukes
* Fixed AppFS not creating directory
+ Added
* Added load_extern switch to opener, fixes #228 @althanos
- Update to version 2.1.2
+ Added
* Support for Windows NT FTP servers @sspross
+ Fixed
* Root dir of MemoryFS accesible as a file
* Packaging issues @televi
* Deprecation warning re collections.Mapping
- Update to version 2.1.1
+ Added
* Added PEP 561 py.typed files
* Use sendfile for faster copies @althonos
* Atomic exclusive mode in Py2.7 @sqwishy
+ Fixed
* Fixed lstat @kamomil
- Update to version 2.1.0
+ Added
* fs.glob support
- Update to version 2.0.27
+ Fixed
* Fixed for Winows paths #152
* Fixed ftp dir parsing (@dhirschfeld)
- Update to version 2.0.26
+ Fixed
* fs.copy and fs.move disable workers if not thread-safe
* fs.match detects case insensitivity
* Open in exclusive mode is atomic (@squishy)
* Exceptions can be pickleabe (@Spacerat)
- Update to version 2.0.25
+ Added
* workers parameter to fs.copy, fs.move, and fs.mirror for concurrent
copies
- Update to version 2.0.24
+ Added
* timeout to FTP opener
- Update to version 2.0.23
* Fix for Markdown on PyPi, no code changes
- Update to version 2.0.22
+ Fixed
* Handling of broken unicode on Python2.7
+ Added
* Added fs.getospath
- Update to version 2.0.21
+ Added
* Typing information
* Added Info.suffix, Info.suffixes, Info.stem attributes
+ Fixed
* Fixed issue with implied directories in TarFS
+ Changed
* Changed path.splitext so that 'leading periods on the basename are
ignored', which is the behaviour of os.path.splitext
- Update to version 2.0.20
+ Fixed
* MultiFS.listdir now correctly filters out duplicates
- Update to version 2.0.19
+ Fixed
* encoding issue with TarFS
* CreateFailed now contains the original exception in `exc` attribute
- Update to version 2.0.18
+ Added
* fs.getfile function
+ Changed
* Modified walk to use iterators internally (for more efficient walking)
* Modified fs.copy to use getfile
- Update to version 2.0.17
+ Fixed
* Issue with ZipFS files missing a byte
- Update to version 2.0.16
+ Added
* fs.parts
+ Fixed
* Walk now yields Step named tuples as advertised
+ Added
* Added max_depth parameter to fs.walk
- Update to version 2.0.15
+ Changed
* ZipFS files are now seekable (Martin Larralde)
- Update to version 2.0.14
* No changes, pushed wrong branch to PyPi.
- Update to version 2.0.13
+ Fixed
* Fixed ignore_errors in walk.py
- Update to version 2.0.12
+ Fixed
* settext, appendtext, appendbytes, setbytes now raise a TypeError if
the type is wrong, rather than ValueError
* More efficient feature detection for FTPFS
* Fixes for `fs.filesize`
* Major documentation refactor (Martin Larralde)
- Update to version 2.0.11
+ Added
* fs.mirror
- Update to version 2.0.10
+ Added
* Added params support to FS URLs
+ Fixed
* Many fixes to FTPFS contributed by Martin Larralde.
- Update to version 2.0.9
+ Changed
* MountFS and MultiFS now accept FS URLS
* Add openers for AppFS
- Update to version 2.0.8
+ Added
* Lstat info namespace
* Link info namespace
* FS.islink method
* Info.is_link method
- Update to version 2.0.7
+ Fixes
* Fixed entry point breaking pip
- Update to version 2.0.6
+ Fixes
* Opener refinements
- Update to version 2.0.5
+ Fixed
* Fixed potential for deadlock in MemoryFS
+ Added
* Added factory parameter to opendir.
* ClosingSubFS.
* File objects are all derived from io.IOBase.
+ Fixed
* Fix closing for FTP opener.
- License change to MIT
- Rebase and update more-relaxed-requirements.patch
- Remove no longer needed python-fs-fix-ftp-test.patch
-------------------------------------------------------------------
Tue Dec 4 12:48:15 UTC 2018 - Matej Cepl <mcepl@suse.com>
- Remove superfluous devel dependency for noarch package
-------------------------------------------------------------------
Tue Nov 28 19:41:26 UTC 2017 - bwiedemann@suse.com
- Add python-fs-fix-ftp-test.patch to make ftp tests pass in 2018
-------------------------------------------------------------------
Thu Aug 3 20:42:12 UTC 2017 - toddrme2178@gmail.com
- Remove no longer needed patches:
fs-testing-fix-missing-fuse.diff
fs-testing-fix-missing-paramiko.diff
-------------------------------------------------------------------
Wed Aug 2 19:23:56 UTC 2017 - sebix+novell.com@sebix.at
- add more-relaxed-requirements.patch to weaken the very harsh version requirements
-------------------------------------------------------------------
Wed Jul 19 20:00:26 UTC 2017 - sebix+novell.com@sebix.at
- update to version 2.0.4
- update to singlespec
-------------------------------------------------------------------
Mon May 9 11:01:50 UTC 2016 - hpj@urpla.net
- disable testing of fuse and paramiko dependent parts:
- fuse tests need root
- paramiko tests fail
-------------------------------------------------------------------
Sun May 8 20:24:28 UTC 2016 - hpj@urpla.net
- version 0.5.4: initial build