Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit 6d58636

Browse files
author
aljo242
committed
update
1 parent 650f97f commit 6d58636

File tree

4 files changed

+88
-102
lines changed

4 files changed

+88
-102
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require (
1717
cosmossdk.io/x/tx v0.12.0
1818
cosmossdk.io/x/upgrade v0.1.1
1919
github.com/client9/misspell v0.3.4
20-
github.com/cometbft/cometbft v0.38.2
20+
github.com/cometbft/cometbft v0.38.5
2121
github.com/cosmos/cosmos-db v1.0.0
2222
github.com/cosmos/cosmos-proto v1.0.0-beta.3
2323
github.com/cosmos/cosmos-sdk v0.50.2

go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ github.com/GaijinEntertainment/go-exhaustruct/v3 v3.1.0/go.mod h1:rZLTje5A9kFBe0
248248
github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0=
249249
github.com/Masterminds/semver v1.5.0 h1:H65muMkzWKEuNDnfl9d70GUjFniHKHRbFPGBuZ3QEww=
250250
github.com/Masterminds/semver v1.5.0/go.mod h1:MB6lktGJrhw8PrUyiEoblNEGEQ+RzHPF078ddwwvV3Y=
251-
github.com/Microsoft/go-winio v0.6.0 h1:slsWYD/zyx7lCXoZVlvQrj0hPTM1HI4+v1sIda2yDvg=
252-
github.com/Microsoft/go-winio v0.6.0/go.mod h1:cTAf44im0RAYeL23bpB+fzCyDH2MJiz2BO69KH/soAE=
251+
github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migciow=
252+
github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM=
253253
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 h1:TngWCqHvy9oXAN6lEVMRuU21PR1EtLVZJmdB18Gu3Rw=
254254
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5/go.mod h1:lmUJ/7eu/Q8D7ML55dXQrVaamCz2vxCfdQBasLZfHKk=
255255
github.com/OneOfOne/xxhash v1.2.2 h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE=
@@ -394,8 +394,8 @@ github.com/cockroachdb/redact v1.1.5/go.mod h1:BVNblN9mBWFyMyqK1k3AAiSxhvhfK2oOZ
394394
github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 h1:zuQyyAKVxetITBuuhv3BI9cMrmStnpT18zmgmTxunpo=
395395
github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06/go.mod h1:7nc4anLGjupUW/PeY5qiNYsdNXj7zopG+eqsS7To5IQ=
396396
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI=
397-
github.com/cometbft/cometbft v0.38.2 h1:io0JCh5EPxINKN5ZMI5hCdpW3QVZRy+o8qWe3mlJa/8=
398-
github.com/cometbft/cometbft v0.38.2/go.mod h1:PIi48BpzwlHqtV3mzwPyQgOyOnU94BNBimLS2ebBHOg=
397+
github.com/cometbft/cometbft v0.38.5 h1:4lOcK5VTPrfbLOhNHmPYe6c7eDXHtBdMCQuKbAfFJdU=
398+
github.com/cometbft/cometbft v0.38.5/go.mod h1:0tqKin+KQs8zDwzYD8rPHzSBIDNPuB4NrwwGDNb/hUg=
399399
github.com/cometbft/cometbft-db v0.9.1 h1:MIhVX5ja5bXNHF8EYrThkG9F7r9kSfv8BX4LWaxWJ4M=
400400
github.com/cometbft/cometbft-db v0.9.1/go.mod h1:iliyWaoV0mRwBJoizElCwwRA9Tf7jZJOURcRZF9m60U=
401401
github.com/containerd/continuity v0.3.0 h1:nisirsYROK15TAMVukJOUyGJjz4BNQJBVsNvAXZJ/eg=

tests/e2e/go.mod

+26-25
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@ replace (
1111

1212
require (
1313
cosmossdk.io/math v1.2.0
14-
github.com/cometbft/cometbft v0.38.2
14+
github.com/cometbft/cometbft v0.38.5
1515
github.com/cosmos/cosmos-sdk v0.50.2
1616
github.com/skip-mev/block-sdk/v2 v2.1.0 // reference local
1717
github.com/strangelove-ventures/interchaintest/v8 v8.0.0
1818
github.com/stretchr/testify v1.8.4
1919
go.uber.org/zap v1.26.0
20-
golang.org/x/sync v0.5.0
21-
google.golang.org/grpc v1.59.0
20+
golang.org/x/sync v0.6.0
21+
google.golang.org/grpc v1.60.1
2222
)
2323

2424
require (
25-
cloud.google.com/go v0.110.9 // indirect
26-
cloud.google.com/go/compute v1.23.2 // indirect
25+
cloud.google.com/go v0.110.10 // indirect
26+
cloud.google.com/go/compute v1.23.3 // indirect
2727
cloud.google.com/go/compute/metadata v0.2.3 // indirect
28-
cloud.google.com/go/iam v1.1.4 // indirect
29-
cloud.google.com/go/storage v1.30.1 // indirect
28+
cloud.google.com/go/iam v1.1.5 // indirect
29+
cloud.google.com/go/storage v1.35.1 // indirect
3030
cosmossdk.io/api v0.7.2 // indirect
3131
cosmossdk.io/collections v0.4.0 // indirect
3232
cosmossdk.io/core v0.11.0 // indirect
@@ -47,7 +47,7 @@ require (
4747
github.com/DataDog/zstd v1.5.5 // indirect
4848
github.com/FactomProject/basen v0.0.0-20150613233007-fe3947df716e // indirect
4949
github.com/FactomProject/btcutilecc v0.0.0-20130527213604-d3a63a5752ec // indirect
50-
github.com/Microsoft/go-winio v0.6.0 // indirect
50+
github.com/Microsoft/go-winio v0.6.1 // indirect
5151
github.com/StirlingMarketingGroup/go-namecase v1.0.0 // indirect
5252
github.com/avast/retry-go/v4 v4.5.0 // indirect
5353
github.com/aws/aws-sdk-go v1.44.224 // indirect
@@ -93,12 +93,12 @@ require (
9393
github.com/docker/go-connections v0.4.0 // indirect
9494
github.com/docker/go-units v0.5.0 // indirect
9595
github.com/dustin/go-humanize v1.0.1 // indirect
96-
github.com/dvsekhvalnov/jose2go v1.5.0 // indirect
96+
github.com/dvsekhvalnov/jose2go v1.5.1-0.20231206184617-48ba0b76bc88 // indirect
9797
github.com/emicklei/dot v1.6.0 // indirect
9898
github.com/ethereum/go-ethereum v1.12.1 // indirect
9999
github.com/fatih/color v1.16.0 // indirect
100100
github.com/felixge/httpsnoop v1.0.2 // indirect
101-
github.com/fsnotify/fsnotify v1.6.0 // indirect
101+
github.com/fsnotify/fsnotify v1.7.0 // indirect
102102
github.com/getsentry/sentry-go v0.25.0 // indirect
103103
github.com/go-kit/kit v0.12.0 // indirect
104104
github.com/go-kit/log v0.2.1 // indirect
@@ -116,8 +116,8 @@ require (
116116
github.com/google/go-cmp v0.6.0 // indirect
117117
github.com/google/orderedcode v0.0.1 // indirect
118118
github.com/google/s2a-go v0.1.7 // indirect
119-
github.com/google/uuid v1.3.1 // indirect
120-
github.com/googleapis/enterprise-certificate-proxy v0.3.1 // indirect
119+
github.com/google/uuid v1.4.0 // indirect
120+
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
121121
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
122122
github.com/gorilla/handlers v1.5.1 // indirect
123123
github.com/gorilla/mux v1.8.1 // indirect
@@ -197,16 +197,16 @@ require (
197197
github.com/rogpeppe/go-internal v1.11.0 // indirect
198198
github.com/rs/cors v1.8.3 // indirect
199199
github.com/rs/zerolog v1.31.0 // indirect
200-
github.com/sagikazarmark/locafero v0.3.0 // indirect
200+
github.com/sagikazarmark/locafero v0.4.0 // indirect
201201
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
202202
github.com/sasha-s/go-deadlock v0.3.1 // indirect
203203
github.com/sourcegraph/conc v0.3.0 // indirect
204204
github.com/spaolacci/murmur3 v1.1.0 // indirect
205-
github.com/spf13/afero v1.10.0 // indirect
206-
github.com/spf13/cast v1.5.1 // indirect
205+
github.com/spf13/afero v1.11.0 // indirect
206+
github.com/spf13/cast v1.6.0 // indirect
207207
github.com/spf13/cobra v1.8.0 // indirect
208208
github.com/spf13/pflag v1.0.5 // indirect
209-
github.com/spf13/viper v1.17.0 // indirect
209+
github.com/spf13/viper v1.18.2 // indirect
210210
github.com/subosito/gotenv v1.6.0 // indirect
211211
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
212212
github.com/tendermint/go-amino v0.16.0 // indirect
@@ -219,19 +219,20 @@ require (
219219
go.etcd.io/bbolt v1.3.8 // indirect
220220
go.opencensus.io v0.24.0 // indirect
221221
go.uber.org/multierr v1.11.0 // indirect
222-
golang.org/x/crypto v0.16.0 // indirect
222+
golang.org/x/crypto v0.18.0 // indirect
223223
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
224224
golang.org/x/mod v0.14.0 // indirect
225-
golang.org/x/net v0.19.0 // indirect
226-
golang.org/x/oauth2 v0.12.0 // indirect
227-
golang.org/x/sys v0.15.0 // indirect
228-
golang.org/x/term v0.15.0 // indirect
225+
golang.org/x/net v0.20.0 // indirect
226+
golang.org/x/oauth2 v0.15.0 // indirect
227+
golang.org/x/sys v0.16.0 // indirect
228+
golang.org/x/term v0.16.0 // indirect
229229
golang.org/x/text v0.14.0 // indirect
230-
golang.org/x/tools v0.16.0 // indirect
230+
golang.org/x/time v0.5.0 // indirect
231+
golang.org/x/tools v0.17.0 // indirect
231232
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
232-
google.golang.org/api v0.143.0 // indirect
233-
google.golang.org/appengine v1.6.7 // indirect
234-
google.golang.org/genproto v0.0.0-20231030173426-d783a09b4405 // indirect
233+
google.golang.org/api v0.153.0 // indirect
234+
google.golang.org/appengine v1.6.8 // indirect
235+
google.golang.org/genproto v0.0.0-20231106174013-bbf56f31fb17 // indirect
235236
google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17 // indirect
236237
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect
237238
google.golang.org/protobuf v1.32.0 // indirect

0 commit comments

Comments
 (0)