diff options
author | 2022-05-31 16:59:40 +0200 | |
---|---|---|
committer | 2022-05-31 17:06:24 +0200 | |
commit | 1dfcf61f63211a5ae8c4a283727169aeeef8d5dc (patch) | |
tree | 2eb554174f373ffeb1f31504aac797fedc2e60ac /go.mod | |
parent | 6f578aa8944cd27b4d5337d20cfb7b5362b926ff (diff) | |
download | alps-1dfcf61f63211a5ae8c4a283727169aeeef8d5dc.tar.gz alps-1dfcf61f63211a5ae8c4a283727169aeeef8d5dc.tar.bz2 alps-1dfcf61f63211a5ae8c4a283727169aeeef8d5dc.zip |
Upgrade go-webdav dependency
This commit upgrades go-webdav to what is currently the master branch.
The go-webdav client implementation gained some features with regards to
service discovery that alps can benefit from.
With this change, one can pass e.g. the following upstream URL:
carddav+insecure://example.com/.well-known/carddav
This URL is defined in [RFC 6764, section 6][1]. If the server supports
it, it will respond with a redirect to the currently authenticated
user's principal URL. In the version used so far, the go-webdav client
does not handle this redirect well.
[1]: https://datatracker.ietf.org/doc/html/rfc6764#section-6
See also: https://github.com/emersion/go-webdav/commit/0363312
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ require ( github.com/emersion/go-sasl v0.0.0-20211008083017-0b9dcfb154ac github.com/emersion/go-smtp v0.15.0 github.com/emersion/go-vcard v0.0.0-20210521075357-3445b9171995 - github.com/emersion/go-webdav v0.3.1 + github.com/emersion/go-webdav v0.3.2-0.20220531141108-9bc7a8f15b2f github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee github.com/google/uuid v1.3.0 github.com/kr/pretty v0.1.0 // indirect |