From 6f578aa8944cd27b4d5337d20cfb7b5362b926ff Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Sat, 7 May 2022 10:20:42 +0200 Subject: Upgrade dependencies --- go.mod | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index 8dccd06..a5fd41b 100644 --- a/go.mod +++ b/go.mod @@ -6,34 +6,34 @@ require ( github.com/aymerick/douceur v0.2.0 github.com/chris-ramon/douceur v0.2.0 github.com/dustin/go-humanize v1.0.0 - github.com/emersion/go-ical v0.0.0-20210319224440-20039d462364 - github.com/emersion/go-imap v1.1.0 + github.com/emersion/go-ical v0.0.0-20220501214237-cf19eb74dd43 + github.com/emersion/go-imap v1.2.1 github.com/emersion/go-imap-metadata v0.0.0-20200128185110-9d939d2a0915 - github.com/emersion/go-imap-move v0.0.0-20190710073258-6e5a51a5b342 + github.com/emersion/go-imap-move v0.0.0-20210907172020-fe4558f9c872 github.com/emersion/go-imap-specialuse v0.0.0-20201101201809-1ab93d3d150e github.com/emersion/go-message v0.15.0 - github.com/emersion/go-sasl v0.0.0-20200509203442-7bfe0ed36a21 + 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-0.20200513144525-a4e0e8100397 - github.com/fernet/fernet-go v0.0.0-20191111064656-eff2850e6001 - github.com/google/uuid v1.2.0 + github.com/emersion/go-webdav v0.3.1 + 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 - github.com/labstack/echo/v4 v4.3.0 - github.com/labstack/gommon v0.3.0 - github.com/mattn/go-isatty v0.0.13 // indirect + github.com/labstack/echo/v4 v4.7.2 + github.com/labstack/gommon v0.3.1 + github.com/mattn/go-colorable v0.1.12 // indirect github.com/mattn/go-runewidth v0.0.13 // indirect - github.com/microcosm-cc/bluemonday v1.0.14 + github.com/microcosm-cc/bluemonday v1.0.18 github.com/olekukonko/tablewriter v0.0.5 // indirect github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect - github.com/stretchr/testify v1.6.1 // indirect - github.com/yuin/gopher-lua v0.0.0-20210529063254-f4c35e4016d9 + github.com/teambition/rrule-go v1.8.0 // indirect + github.com/yuin/gopher-lua v0.0.0-20220504180219-658193537a64 gitlab.com/golang-commonmark/linkify v0.0.0-20200225224916-64bca66f6ad3 - golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e // indirect - golang.org/x/net v0.0.0-20210614182718-04defd469f4e - golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect - golang.org/x/time v0.0.0-20210611083556-38a9dc6acbc6 // indirect + golang.org/x/crypto v0.0.0-20220507011949-2cf3adece122 // indirect + golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 + golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect + golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect - jaytaylor.com/html2text v0.0.0-20200412013138-3577fbdbcff7 - layeh.com/gopher-luar v1.0.8 + jaytaylor.com/html2text v0.0.0-20211105163654-bc68cce691ba + layeh.com/gopher-luar v1.0.10 ) -- cgit v1.2.3 From 1dfcf61f63211a5ae8c4a283727169aeeef8d5dc Mon Sep 17 00:00:00 2001 From: Conrad Hoffmann Date: Tue, 31 May 2022 16:59:40 +0200 Subject: 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 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index a5fd41b..ae09134 100644 --- a/go.mod +++ b/go.mod @@ -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 -- cgit v1.2.3 From 47e08a196b6cc9280ba102d8733cb54199083d02 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 13 Oct 2022 14:43:05 +0200 Subject: Upgrade dependencies --- go.mod | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index ae09134..895aaea 100644 --- a/go.mod +++ b/go.mod @@ -6,33 +6,35 @@ require ( github.com/aymerick/douceur v0.2.0 github.com/chris-ramon/douceur v0.2.0 github.com/dustin/go-humanize v1.0.0 - github.com/emersion/go-ical v0.0.0-20220501214237-cf19eb74dd43 + github.com/emersion/go-ical v0.0.0-20220601085725-0864dccc089f github.com/emersion/go-imap v1.2.1 github.com/emersion/go-imap-metadata v0.0.0-20200128185110-9d939d2a0915 github.com/emersion/go-imap-move v0.0.0-20210907172020-fe4558f9c872 github.com/emersion/go-imap-specialuse v0.0.0-20201101201809-1ab93d3d150e - github.com/emersion/go-message v0.15.0 - github.com/emersion/go-sasl v0.0.0-20211008083017-0b9dcfb154ac + github.com/emersion/go-message v0.16.0 + github.com/emersion/go-sasl v0.0.0-20220912192320-0145f2c60ead github.com/emersion/go-smtp v0.15.0 - github.com/emersion/go-vcard v0.0.0-20210521075357-3445b9171995 + github.com/emersion/go-vcard v0.0.0-20220507122617-d4056df0ec4a 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 - github.com/labstack/echo/v4 v4.7.2 - github.com/labstack/gommon v0.3.1 - github.com/mattn/go-colorable v0.1.12 // indirect - github.com/mattn/go-runewidth v0.0.13 // indirect - github.com/microcosm-cc/bluemonday v1.0.18 + github.com/labstack/echo/v4 v4.9.1 + github.com/labstack/gommon v0.4.0 + github.com/mattn/go-colorable v0.1.13 // indirect + github.com/mattn/go-runewidth v0.0.14 // indirect + github.com/microcosm-cc/bluemonday v1.0.21 github.com/olekukonko/tablewriter v0.0.5 // indirect + github.com/rivo/uniseg v0.4.2 // indirect github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect github.com/teambition/rrule-go v1.8.0 // indirect github.com/yuin/gopher-lua v0.0.0-20220504180219-658193537a64 gitlab.com/golang-commonmark/linkify v0.0.0-20200225224916-64bca66f6ad3 - golang.org/x/crypto v0.0.0-20220507011949-2cf3adece122 // indirect - golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 - golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect - golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect + golang.org/x/crypto v0.0.0-20221012134737-56aed061732a // indirect + golang.org/x/net v0.0.0-20221012135044-0b7e1fb9d458 + golang.org/x/sys v0.0.0-20221010170243-090e33056c14 // indirect + golang.org/x/text v0.3.8 // indirect + golang.org/x/time v0.0.0-20220922220347-f3bd1da661af // indirect gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect jaytaylor.com/html2text v0.0.0-20211105163654-bc68cce691ba layeh.com/gopher-luar v1.0.10 -- cgit v1.2.3 From f01fbcbc48db5e65d69a0ebd9d7cb0deb378cf13 Mon Sep 17 00:00:00 2001 From: Konstantinos Koukas Date: Tue, 18 Oct 2022 22:01:51 +0300 Subject: Upgrade go-smtp to latest commit --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index 895aaea..0576f8d 100644 --- a/go.mod +++ b/go.mod @@ -13,7 +13,7 @@ require ( github.com/emersion/go-imap-specialuse v0.0.0-20201101201809-1ab93d3d150e github.com/emersion/go-message v0.16.0 github.com/emersion/go-sasl v0.0.0-20220912192320-0145f2c60ead - github.com/emersion/go-smtp v0.15.0 + github.com/emersion/go-smtp v0.15.1-0.20221018181223-201c9ab124e4 github.com/emersion/go-vcard v0.0.0-20220507122617-d4056df0ec4a github.com/emersion/go-webdav v0.3.2-0.20220531141108-9bc7a8f15b2f github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee -- cgit v1.2.3