Skip to content

Commit 27e8251

Browse files
authored
Bump dependencies (joohoi#334)
1 parent 6ba9360 commit 27e8251

File tree

3 files changed

+74
-49
lines changed

3 files changed

+74
-49
lines changed

challengeprovider.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ func (c *ChallengeProvider) CleanUp(ctx context.Context, _ acme.Challenge) error
3434
// Wait is a dummy function as we are just going to be ready to answer the challenge from the get-go
3535
func (c *ChallengeProvider) Wait(_ context.Context, _ acme.Challenge) error {
3636
return nil
37-
}
37+
}

go.mod

+13-15
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ module github.com/joohoi/acme-dns
33
go 1.16
44

55
require (
6-
github.com/BurntSushi/toml v1.2.0
6+
github.com/BurntSushi/toml v1.2.1
77
github.com/DATA-DOG/go-sqlmock v1.5.0
88
github.com/ajg/form v1.5.1 // indirect
9-
github.com/caddyserver/certmagic v0.16.2
9+
github.com/caddyserver/certmagic v0.17.2
1010
github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5
1111
github.com/fasthttp-contrib/websocket v0.0.0-20160511215533-1f3b11f56072 // indirect
1212
github.com/gavv/httpexpect v2.0.0+incompatible
@@ -15,26 +15,24 @@ require (
1515
github.com/gorilla/websocket v1.4.2 // indirect
1616
github.com/imkira/go-interpol v1.1.0 // indirect
1717
github.com/julienschmidt/httprouter v1.3.0
18-
github.com/klauspost/cpuid/v2 v2.1.0 // indirect
19-
github.com/lib/pq v1.10.6
18+
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
19+
github.com/lib/pq v1.10.7
2020
github.com/mattn/go-colorable v0.1.12 // indirect
21-
github.com/mattn/go-sqlite3 v1.14.14
22-
github.com/mholt/acmez v1.0.4
23-
github.com/miekg/dns v1.1.50
21+
github.com/mattn/go-sqlite3 v1.14.16
22+
github.com/mholt/acmez v1.1.0
23+
github.com/miekg/dns v1.1.51
2424
github.com/moul/http2curl v1.0.0 // indirect
25-
github.com/rs/cors v1.8.2
25+
github.com/rs/cors v1.8.3
2626
github.com/sergi/go-diff v1.2.0 // indirect
2727
github.com/sirupsen/logrus v1.9.0
2828
github.com/valyala/fasthttp v1.31.0 // indirect
2929
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 // indirect
3030
github.com/yudai/gojsondiff v1.0.0 // indirect
3131
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
3232
github.com/yudai/pp v2.0.1+incompatible // indirect
33-
go.uber.org/atomic v1.9.0 // indirect
34-
go.uber.org/multierr v1.8.0 // indirect
35-
go.uber.org/zap v1.22.0 // indirect
36-
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa
37-
golang.org/x/net v0.0.0-20220809184613-07c6da5e1ced // indirect
38-
golang.org/x/sys v0.0.0-20220808155132-1c4a2a72c664 // indirect
39-
golang.org/x/tools v0.1.12 // indirect
33+
go.uber.org/atomic v1.10.0 // indirect
34+
go.uber.org/multierr v1.9.0 // indirect
35+
go.uber.org/zap v1.24.0 // indirect
36+
golang.org/x/crypto v0.7.0
37+
golang.org/x/mod v0.9.0 // indirect
4038
)

0 commit comments

Comments
 (0)