Skip to content

Commit 06c5405

Browse files
committed
Update deps
1 parent a2e65fb commit 06c5405

File tree

6 files changed

+123
-1436
lines changed

6 files changed

+123
-1436
lines changed

Diff for: Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
all: fmt vet mod lint gen
1+
all: fmt vet mod lint
22

33
# Run tests
44
test: fmt vet
@@ -18,7 +18,7 @@ vet:
1818

1919
# Run linters
2020
lint:
21-
golangci-lint run
21+
go run github.com/golangci/golangci-lint/cmd/golangci-lint@latest run
2222

2323
# Serve the docs website locally and auto on changes
2424
dev-docs:

Diff for: go.mod

+7-13
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,23 @@
11
module go.minekube.com/connect
22

3-
go 1.17
3+
go 1.21.1
44

55
require (
6-
buf.build/gen/go/minekube/connect/protocolbuffers/go v1.30.0-20230517095325-052a0564f571.1
6+
buf.build/gen/go/minekube/connect/protocolbuffers/go v1.32.0-20230517110945-04c17e7d2fd9.1
77
github.com/stretchr/testify v1.8.1
8-
google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4
9-
google.golang.org/grpc v1.53.0
10-
nhooyr.io/websocket v1.8.7
8+
google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0
9+
google.golang.org/grpc v1.59.0
10+
google.golang.org/protobuf v1.32.0
11+
nhooyr.io/websocket v1.8.10
1112
)
1213

1314
require (
1415
github.com/davecgh/go-spew v1.1.1 // indirect
15-
github.com/gobwas/ws v1.1.0 // indirect
1616
github.com/golang/protobuf v1.5.3 // indirect
17-
github.com/gorilla/websocket v1.5.0 // indirect
18-
github.com/klauspost/compress v1.15.9 // indirect
1917
github.com/kr/pretty v0.3.0 // indirect
20-
github.com/mattn/go-isatty v0.0.16 // indirect
2118
github.com/pmezard/go-difflib v1.0.0 // indirect
2219
github.com/rogpeppe/go-internal v1.9.0 // indirect
23-
golang.org/x/net v0.8.0 // indirect
24-
golang.org/x/sys v0.6.0 // indirect
25-
google.golang.org/protobuf v1.30.0 // indirect
20+
golang.org/x/net v0.17.0 // indirect
2621
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
27-
gopkg.in/yaml.v2 v2.4.0 // indirect
2822
gopkg.in/yaml.v3 v3.0.1 // indirect
2923
)

0 commit comments

Comments
 (0)