2021-11-18
- Bugfix:
- Package.json script entry incorrect
2021-10-17
- Upgrade WebDAV client to v4
- Typescript
- Deprecate Node < 14
2020-10-08
- Upgrade WebDAV client to 3.4.0
- Deprecate Node 6 and 8 (min 10)
- Upgrade all dependencies
2018-12-11
- Upgrade webdav to 2.0.0
- Use axios instead of node-fetch
- Move
mode
parameter inreaddir
method (second optional parameter)
2018-11-11
- Expose
agent
parameter in constructor to support custom HTTP/S agents being passed - Upgrade webdav to 1.6.1
- Bugfix: Requests fail on Seafile instances
- Removed restrictive namespace detection on responses
2018-09-15
- Upgrade webdav to 1.6.0
- Bugfix: Directory contents fetch fails on Windows
- Bugfix: Moving items to directories with spaces fails
- Update dependencies, audit
2018-07-07
- Upgrade webdav to 1.5.3
- Bugfix: Fix encoding issues with special characters
2018-03-25
- Upgrade webdav to 1.5.2
- (#56)
readdir
includes parent directory
- (#56)
2018-03-24
- Upgrade webdav to 1.5.1
- Fix path encoding bug
- Add OAuth2 authentication support
2018-03-15
- Upgrade webdav to 1.4.0 (Change deepmerge to merge)
2018-02-25
- Upgrade webdav to 1.2.0 (Fix unicode paths)
2018-02-21
- Update dependencies
- Upgrade webdav to 1.1.2 (Fix directory contents bug)
2017-11-12
- Upgrade webdav to 1.1.0
2017-07-05
- Expose webdav's
setFetchMethod
function
2017-07-03
- Upgrade webdav to 1.0.0-rc1
- Add
createWriteStream
method
2017-06-24
- Upgrade webdav to 0.10.0
- Disable
window.fetch
for improved stability
- Disable
2017-06-08
- Add
createReadStream
method for streaming remote file contents (includesstart
andend
support)
2017-06-03
- Upgrade webdav to 0.7.0
- Remove lodash
2017-04-18
- Upgrade webdav to 0.6.0
- Add support for non-prefixed response nodes
- HTTP response codes in errors
2017-02-11
- Upgrade webdav to 0.5.0
- Use
window.fetch
where available
- Use
2017-02-05
- Upgrade webdav to 0.4.1
- Custom header support
2017-01-18
- Upgrade webdav (core) to 0.3.0
- Remove node querystring dependency (downstream support)
2017-01-17
- Added type flag for downstream (any-fs) recognition
- Removed support for Node 0.12
2016-10-24
- Updated webdav-client to 0.1.1
- Fixes auth URLs with special characters in the username or password
2016-10-15
- Integrated webdav-client and moved core functionality there.
2016-10-01
- Fixed a bug where
readFile
would return corrupted data when used in"binary"
mode. The issue was to do with the node-fetch package which didn't have appropriate support for buffer output at the time of original implementation. node-fetch was updated in this release.
2016-08-02
- Added stat support to
readdir
, which can now optionally return an array of stat objects instead of just filename strings. Due to complicated configurations like this, and their unintuitive nature in their default behaviour, webdav-fs may drift from its fs alignment at some stage in the near future (possibly for v1.0).
2016-04-05
- Added support for renaming files and directories, which also allows for the moving of items.