Releases: skshetry/webdav4
Releases · skshetry/webdav4
v0.10.0
What's Changed
- ci: provide least privilege by @skshetry in #131
- try to use 3.11 by @skshetry in #132
- Switch quotes by @skshetry in #133
- Fix method naming by @bitzl in #140
- Bump sphinx-copybutton from 0.5 to 0.5.1 by @dependabot in #139
- Bump furo from 2022.9.29 to 2022.12.7 by @dependabot in #142
- Update fsspec.py by @skshetry in #170
- use ruff by @skshetry in #180
- update docs dependencies by @skshetry in #181
- Some tweaks to CLI help text by @musicinmybrain in #175
- Add header parameter to upload by @erikman in #176
New Contributors
- @bitzl made their first contribution in #140
- @musicinmybrain made their first contribution in #175
- @erikman made their first contribution in #176
Full Changelog: v0.9.8...v0.10.0
v0.9.8
What's Changed
- bump Scheduled weekly dependency update for week 18 by @pyup-bot in #108
- bump Scheduled weekly dependency update for week 22 by @pyup-bot in #109
- use hatchling by @skshetry in #126
- Bump sphinx from 4.5 to 5.3.0 by @dependabot in #129
- Bump furo from 2022.4.7 to 2022.9.29 by @dependabot in #127
- Bump myst-parser from 0.17.2 to 0.18.1 by @dependabot in #130
- Bump mypy from 0.960 to 0.982 by @dependabot in #128
Full Changelog: v0.9.7...v0.9.8
v0.9.7: follow redirects for `ls`
v0.9.6: closes network connection properly on file objects
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
What's Changed
- drop support for Python 3.6 by @skshetry in 91db33f
- bump Scheduled weekly dependency update for week 04 by @pyup-bot in #89
- bump Scheduled weekly dependency update for week 11 by @pyup-bot in #95
- delete setup.py by @skshetry in #96
- move pylint and bandit config to pyproject.toml by @skshetry in #97
Full Changelog: v0.9.4...v0.9.5
v0.9.4: Unpin httpx dependency
What's Changed
- relax httpx version requirements by @pauleikis in #88
New Contributors
- @pauleikis made their first contribution in #88
Full Changelog: v0.9.3...v0.9.4
hotfix: compatible with httpx==0.20.0
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
Fix setuptools_scm issue, relax fsspec requirements
It is now compatible with fsspec 2021.08.X
as well.
v0.9.0: bump fsspec to 2021.07.0, adds callback support
- 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
andupload_fileobj
. - Packaging badges in the README, thanks to @efiop.
- dev packages updated,
specifically,Sphinx
,sphinx-copybutton
,furo
,pylint
andWsgiDAV
.