Skip to content

Releases: skshetry/webdav4

v0.9.8

25 Oct 12:30
967f184
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.9.7...v0.9.8

v0.9.7: follow redirects for `ls`

28 Apr 15:38
460a021
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.9.6...v0.9.7

v0.9.6: closes network connection properly on file objects

27 Apr 03:44
6c67b9e
Compare
Choose a tag to compare

What's Changed

  • Make sure the http connection is closed even if nothing is read from the stream by @pauleikis in #106

Full Changelog: v0.9.5...v0.9.6

v0.9.5: Drop Python 3.6 support

15 Mar 11:36
f41487c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.9.4...v0.9.5

v0.9.4: Unpin httpx dependency

21 Jan 11:57
8bb2126
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.9.3...v0.9.4

hotfix: compatible with httpx==0.20.0

18 Oct 14:19
v0.9.3
bef4f16
Compare
Choose a tag to compare

Pins httpx version to 0.20.0 till it releases 1.0 stable release.

There is an incompatible change, that the redirects are not followed by default.
This is because of the change in default in httpx itself. To follow redirects by default,
pass follow_redirects=True in webdav4.fsspec.WebdavFileSystem or in webdav4.client.Client.

If you cannot change the API for some reason, you can set FSSPEC_DAV_FOLLOW_REDIRECTS=true or
override through fsspec's config.

Bug fixes

17 Sep 12:57
v0.9.2
54218d7
Compare
Choose a tag to compare
  • Add trailing slash in url on MKCOLs

Fix setuptools_scm issue, relax fsspec requirements

08 Sep 08:54
v0.9.1
ade3e10
Compare
Choose a tag to compare

It is now compatible with fsspec 2021.08.X as well.

v0.9.0: bump fsspec to 2021.07.0, adds callback support

21 Jul 09:45
v0.9.0
7d41d7c
Compare
Choose a tag to compare
  • fsspec updated to 2021.07.0.
  • httpx updated to 0.18.2.
  • callback support on put_file, as per 2021.07.0 requirements,
    thanks to @isidentical.
  • upload_fileobj - extended API in fsspec implementations
    with callback support.
  • tests for peek_filelike_length and upload_fileobj.
  • Packaging badges in the README, thanks to @efiop.
  • dev packages updated,
    specifically, Sphinx, sphinx-copybutton, furo, pylint and WsgiDAV.

v0.8.2: dependencies update, and possible bugfix on stream

29 Jun 03:42
0a1a340
Compare
Choose a tag to compare
  • performance improvement in fsspec new release for find
  • bugfix on stream during seek, where it could use Ranged response
    to compute the size of the stream (whereas it should have used size
    of Initial response).
  • Weekly package updates