Skip to content

Commit

Permalink
fix: make xmpp compatible with latest version (#122)
Browse files Browse the repository at this point in the history
* fix: make xmpp compatible with latest version
* fix(tests): only call suite setup once in package

`go get -u` can be run without breaking the build
this also includes patch updates of the dependencies
  • Loading branch information
piksel committed Jan 23, 2021
1 parent 7558049 commit 6e64c70
Show file tree
Hide file tree
Showing 6 changed files with 184 additions and 51 deletions.
23 changes: 11 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,25 @@ module github.com/containrrr/shoutrrr
go 1.12

require (
github.com/fatih/color v1.9.0
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/fatih/color v1.10.0
github.com/google/uuid v1.1.5 // indirect
github.com/jarcoal/httpmock v1.0.4
github.com/klauspost/compress v1.11.7 // indirect
github.com/mitchellh/mapstructure v1.2.2 // indirect
github.com/onsi/ginkgo v1.8.0
github.com/onsi/gomega v1.5.0
github.com/nxadm/tail v1.4.6 // indirect
github.com/onsi/ginkgo v1.14.2
github.com/onsi/gomega v1.10.1
github.com/pelletier/go-toml v1.7.0 // indirect
github.com/sirupsen/logrus v1.2.0
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v0.0.7
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.6.3
golang.org/x/net v0.0.0-20190522155817-f3200d17e092
golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
golang.org/x/sys v0.0.0-20200409092240-59c9f1ba88fa // indirect
golang.org/x/text v0.3.2 // indirect
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
golang.org/x/sys v0.0.0-20210113181707-4bcb84eeeb78 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/ini.v1 v1.55.0 // indirect
gosrc.io/xmpp v0.1.1
gosrc.io/xmpp v0.5.1
nhooyr.io/websocket v1.8.6 // indirect
)

0 comments on commit 6e64c70

Please sign in to comment.