Skip to content

Commit 5a54abc

Browse files
fix(deps): update gomod
1 parent a5dbd00 commit 5a54abc

File tree

12 files changed

+34
-24
lines changed

12 files changed

+34
-24
lines changed

dummy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package main_test
1818
// module (e.g. for sake of 'bom' generation).
1919
// Thanks to this 'go mod tidy' is not removing that dependencies from go.mod.
2020
import (
21-
_ "go.etcd.io/etcd/client/v2" // keep
21+
_ "go.etcd.io/etcd/client/v3" // keep
2222
_ "go.etcd.io/etcd/etcdctl/v3/ctlv3/command" // keep
2323
_ "go.etcd.io/etcd/etcdutl/v3/etcdutl" // keep
2424
_ "go.etcd.io/etcd/tests/v3/integration" // keep

etcdutl/go.mod

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,12 @@ require (
3838
)
3939

4040
require (
41-
github.com/beorn7/perks v1.0.1 // indirect
4241
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
42+
go.etcd.io/etcd/client/v2 v2.306.0-alpha.0 // indirect
43+
)
44+
45+
require (
46+
github.com/beorn7/perks v1.0.1 // indirect
4347
github.com/cespare/xxhash/v2 v2.3.0 // indirect
4448
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
4549
github.com/davecgh/go-spew v1.1.1 // indirect
@@ -71,7 +75,6 @@ require (
7175
github.com/spf13/pflag v1.0.6 // indirect
7276
github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802 // indirect
7377
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
74-
go.etcd.io/etcd/client/v2 v2.306.0-alpha.0 // indirect
7578
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
7679
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 // indirect
7780
go.opentelemetry.io/otel v1.34.0 // indirect

go.mod

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ require (
2626
go.etcd.io/bbolt v1.4.0
2727
go.etcd.io/etcd/api/v3 v3.6.0-alpha.0
2828
go.etcd.io/etcd/client/pkg/v3 v3.6.0-alpha.0
29-
go.etcd.io/etcd/client/v2 v2.306.0-alpha.0
3029
go.etcd.io/etcd/client/v3 v3.6.0-alpha.0
3130
go.etcd.io/etcd/etcdctl/v3 v3.6.0-alpha.0
3231
go.etcd.io/etcd/etcdutl/v3 v3.6.0-alpha.0
@@ -40,10 +39,14 @@ require (
4039
google.golang.org/protobuf v1.36.5
4140
)
4241

42+
require (
43+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
44+
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
45+
)
46+
4347
require (
4448
github.com/VividCortex/ewma v1.2.0 // indirect
4549
github.com/beorn7/perks v1.0.1 // indirect
46-
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
4750
github.com/cespare/xxhash/v2 v2.3.0 // indirect
4851
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
4952
github.com/davecgh/go-spew v1.1.1 // indirect
@@ -58,9 +61,8 @@ require (
5861
github.com/google/go-cmp v0.6.0 // indirect
5962
github.com/google/uuid v1.6.0 // indirect
6063
github.com/gorilla/websocket v1.4.2 // indirect
61-
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
6264
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.0.1 // indirect
63-
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.1.0 // indirect
65+
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.0 // indirect
6466
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 // indirect
6567
github.com/inconshreveable/mousetrap v1.1.0 // indirect
6668
github.com/jonboulle/clockwork v0.5.0 // indirect
@@ -81,6 +83,7 @@ require (
8183
github.com/spf13/pflag v1.0.6 // indirect
8284
github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802 // indirect
8385
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
86+
go.etcd.io/etcd/client/v2 v2.306.0-alpha.0 // indirect
8487
go.etcd.io/gofail v0.2.0 // indirect
8588
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
8689
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 h1:+9834+KizmvFV7pXQGSXQTsaW
6969
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0/go.mod h1:z0ButlSOZa5vEBq9m2m2hlwIgKw+rp3sdCBRoJY+30Y=
7070
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.0.1 h1:qnpSQwGEnkcRpTqNOIR6bJbR0gAorgP9CSALpRcKoAA=
7171
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.0.1/go.mod h1:lXGCsh6c22WGtjr+qGHj1otzZpV/1kwTMAqkwZsnWRU=
72-
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.1.0 h1:pRhl55Yx1eC7BZ1N+BBWwnKaMyD8uC+34TLdndZMAKk=
73-
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.1.0/go.mod h1:XKMd7iuf/RGPSMJ/U4HP0zS2Z9Fh8Ps9a+6X26m/tmI=
72+
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.0 h1:FbSCl+KggFl+Ocym490i/EyXF4lPgLoUtcSWquBM0Rs=
73+
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.0/go.mod h1:qOchhhIlmRcqk/O9uCo/puJlyo07YINaIqdZfZG3Jkc=
7474
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 h1:e9Rjr40Z98/clHv5Yg79Is0NtosR5LXRvdr7o/6NwbA=
7575
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1/go.mod h1:tIxuGz/9mpox++sgp9fJjHO0+q1X9/UOWd798aAm22M=
7676
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=

server/etcdmain/grpc_proxy.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ import (
2929
"path/filepath"
3030
"time"
3131

32-
grpc_zap "github.com/grpc-ecosystem/go-grpc-middleware/logging/zap"
33-
grpc_prometheus "github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus"
34-
grpc_ctxtags "github.com/grpc-ecosystem/go-grpc-middleware/tags"
32+
grpc_zap "github.com/grpc-ecosystem/go-grpc-middleware/v2/logging/zap"
33+
grpc_prometheus "github.com/grpc-ecosystem/go-grpc-middleware/v2/providers/prometheus"
34+
grpc_ctxtags "github.com/grpc-ecosystem/go-grpc-middleware/v2/tags"
3535
"github.com/prometheus/client_golang/prometheus"
3636
"github.com/soheilhy/cmux"
3737
"github.com/spf13/cobra"

server/etcdserver/api/v3rpc/grpc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"crypto/tls"
1919
"math"
2020

21-
grpc_prometheus "github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus"
21+
grpc_prometheus "github.com/grpc-ecosystem/go-grpc-middleware/v2/providers/prometheus"
2222
"github.com/prometheus/client_golang/prometheus"
2323
"go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc"
2424
"go.uber.org/zap"

server/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
github.com/golang/protobuf v1.5.4
1515
github.com/google/btree v1.1.3
1616
github.com/google/go-cmp v0.6.0
17-
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
17+
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.0
1818
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.0.1
1919
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1
2020
github.com/jonboulle/clockwork v0.5.0
@@ -28,7 +28,7 @@ require (
2828
go.etcd.io/bbolt v1.4.0
2929
go.etcd.io/etcd/api/v3 v3.6.0-alpha.0
3030
go.etcd.io/etcd/client/pkg/v3 v3.6.0-alpha.0
31-
go.etcd.io/etcd/client/v2 v2.306.0-alpha.0
31+
go.etcd.io/etcd/client/v3 v3.5.18
3232
go.etcd.io/etcd/client/v3 v3.6.0-alpha.0
3333
go.etcd.io/etcd/pkg/v3 v3.6.0-alpha.0
3434
go.etcd.io/raft/v3 v3.6.0
@@ -49,7 +49,7 @@ require (
4949

5050
require (
5151
github.com/beorn7/perks v1.0.1 // indirect
52-
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
52+
github.com/cenkalti/backoff/v5 v5.0.2 // indirect
5353
github.com/cespare/xxhash/v2 v2.3.0 // indirect
5454
github.com/davecgh/go-spew v1.1.1 // indirect
5555
github.com/go-logr/logr v1.4.2 // indirect

tools/mod/go.mod

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ require (
2222
honnef.co/go/tools v0.6.0
2323
)
2424

25+
require (
26+
github.com/ashanbrown/forbidigo v1.6.0 // indirect
27+
github.com/pelletier/go-toml v1.9.5 // indirect
28+
gopkg.in/yaml.v2 v2.4.0 // indirect
29+
)
30+
2531
require (
2632
4d63.com/gocheckcompilerdirectives v1.2.1 // indirect
2733
4d63.com/gochecknoglobals v0.2.2 // indirect
@@ -42,7 +48,6 @@ require (
4248
github.com/alexkohler/prealloc v1.0.0 // indirect
4349
github.com/alingse/asasalint v0.0.11 // indirect
4450
github.com/alingse/nilnesserr v0.1.2 // indirect
45-
github.com/ashanbrown/forbidigo v1.6.0 // indirect
4651
github.com/ashanbrown/makezero v1.2.0 // indirect
4752
github.com/beorn7/perks v1.0.1 // indirect
4853
github.com/bitfield/gotestdox v0.2.2 // indirect
@@ -148,7 +153,6 @@ require (
148153
github.com/nishanths/predeclared v0.2.2 // indirect
149154
github.com/nunnatsa/ginkgolinter v0.19.0 // indirect
150155
github.com/olekukonko/tablewriter v0.0.5 // indirect
151-
github.com/pelletier/go-toml v1.9.5 // indirect
152156
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
153157
github.com/pmezard/go-difflib v1.0.0 // indirect
154158
github.com/polyfloyd/go-errorlint v1.7.1 // indirect
@@ -226,7 +230,6 @@ require (
226230
google.golang.org/grpc v1.70.0 // indirect
227231
google.golang.org/protobuf v1.36.5 // indirect
228232
gopkg.in/ini.v1 v1.67.0 // indirect
229-
gopkg.in/yaml.v2 v2.4.0 // indirect
230233
gopkg.in/yaml.v3 v3.0.1 // indirect
231234
k8s.io/klog/v2 v2.100.1 // indirect
232235
mvdan.cc/gofumpt v0.7.0 // indirect

tools/rw-heatmaps/go.mod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ require (
1010
gonum.org/v1/plot v0.14.0
1111
)
1212

13+
require github.com/campoy/embedmd v1.0.0 // indirect
14+
1315
require (
1416
git.sr.ht/~sbinet/gg v0.5.0 // indirect
1517
github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b // indirect
16-
github.com/campoy/embedmd v1.0.0 // indirect
1718
github.com/go-fonts/liberation v0.3.1 // indirect
1819
github.com/go-latex/latex v0.0.0-20230307184459-12ec69307ad9 // indirect
1920
github.com/go-pdf/fpdf v0.8.0 // indirect

tools/testgrid-analysis/cmd/github.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"os"
2121
"strings"
2222

23-
"github.com/google/go-github/v60/github"
23+
"github.com/google/go-github/v69/github"
2424
)
2525

2626
func createIssues(tests []*TestResultSummary, labels []string) {

0 commit comments

Comments
 (0)