Skip to content

Commit 57a0a91

Browse files
Bump github.com/cosmos/iavl from 0.19.3 to 0.20.0
Bumps [github.com/cosmos/iavl](https://github.com/cosmos/iavl) from 0.19.3 to 0.20.0. - [Release notes](https://github.com/cosmos/iavl/releases) - [Changelog](https://github.com/cosmos/iavl/blob/master/CHANGELOG.md) - [Commits](cosmos/iavl@v0.19.3...v0.20.0) --- updated-dependencies: - dependency-name: github.com/cosmos/iavl dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent cd9f155 commit 57a0a91

File tree

2 files changed

+2207
-48
lines changed

2 files changed

+2207
-48
lines changed

go.mod

+25-25
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.17
55
require (
66
github.com/CosmWasm/wasmvm v1.0.0-beta10
77
github.com/cosmos/cosmos-sdk v0.45.9
8-
github.com/cosmos/iavl v0.19.3
8+
github.com/cosmos/iavl v0.20.0
99
github.com/cosmos/ibc-go/v2 v2.2.0
1010
github.com/dvsekhvalnov/jose2go v0.0.0-20200901110807-248326c1351b
1111
github.com/gogo/protobuf v1.3.3
@@ -19,23 +19,22 @@ require (
1919
github.com/regen-network/cosmos-proto v0.3.1
2020
github.com/snikch/goodman v0.0.0-20171125024755-10e37e294daa
2121
github.com/spf13/cast v1.5.0
22-
github.com/spf13/cobra v1.5.0
22+
github.com/spf13/cobra v1.6.0
2323
github.com/spf13/pflag v1.0.5
24-
github.com/spf13/viper v1.12.0
25-
github.com/stretchr/testify v1.8.0
24+
github.com/spf13/viper v1.13.0
25+
github.com/stretchr/testify v1.8.1
2626
github.com/syndtr/goleveldb v1.0.1-0.20200815110645-5c35d600f0ca
2727
github.com/tendermint/tendermint v0.34.21
2828
github.com/tendermint/tm-db v0.6.7
29-
google.golang.org/genproto v0.0.0-20220725144611-272f38e5d71b
30-
google.golang.org/grpc v1.48.0
29+
google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6
30+
google.golang.org/grpc v1.52.0
3131
gopkg.in/yaml.v2 v2.4.0
3232
)
3333

3434
require (
3535
filippo.io/edwards25519 v1.0.0-beta.2 // indirect
3636
github.com/99designs/keyring v1.1.6 // indirect
3737
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d // indirect
38-
github.com/DataDog/zstd v1.4.5 // indirect
3938
github.com/Workiva/go-datastructures v1.0.53 // indirect
4039
github.com/armon/go-metrics v0.3.10 // indirect
4140
github.com/beorn7/perks v1.0.1 // indirect
@@ -44,7 +43,8 @@ require (
4443
github.com/cespare/xxhash v1.1.0 // indirect
4544
github.com/cespare/xxhash/v2 v2.1.2 // indirect
4645
github.com/coinbase/rosetta-sdk-go v0.7.0 // indirect
47-
github.com/confio/ics23/go v0.7.0 // indirect
46+
github.com/cometbft/cometbft-db v0.7.0 // indirect
47+
github.com/confio/ics23/go v0.9.0 // indirect
4848
github.com/cosmos/btcutil v1.0.4 // indirect
4949
github.com/cosmos/go-bip39 v1.0.0 // indirect
5050
github.com/cosmos/gorocksdb v1.2.0 // indirect
@@ -54,7 +54,7 @@ require (
5454
github.com/danieljoos/wincred v1.0.2 // indirect
5555
github.com/davecgh/go-spew v1.1.1 // indirect
5656
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect
57-
github.com/dgraph-io/badger/v2 v2.2007.2 // indirect
57+
github.com/dgraph-io/badger/v2 v2.2007.4 // indirect
5858
github.com/dgraph-io/ristretto v0.0.3 // indirect
5959
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
6060
github.com/dustin/go-humanize v1.0.0 // indirect
@@ -65,8 +65,8 @@ require (
6565
github.com/go-logfmt/logfmt v0.5.1 // indirect
6666
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
6767
github.com/gogo/gateway v1.1.0 // indirect
68-
github.com/golang/snappy v0.0.3 // indirect
69-
github.com/google/btree v1.0.0 // indirect
68+
github.com/golang/snappy v0.0.4 // indirect
69+
github.com/google/btree v1.1.2 // indirect
7070
github.com/google/orderedcode v0.0.1 // indirect
7171
github.com/gorilla/handlers v1.5.1 // indirect
7272
github.com/gorilla/websocket v1.5.0 // indirect
@@ -79,22 +79,22 @@ require (
7979
github.com/hashicorp/hcl v1.0.0 // indirect
8080
github.com/hdevalence/ed25519consensus v0.0.0-20210204194344-59a8610d2b87 // indirect
8181
github.com/improbable-eng/grpc-web v0.14.1 // indirect
82-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
82+
github.com/inconshreveable/mousetrap v1.0.1 // indirect
8383
github.com/jmhodges/levigo v1.0.0 // indirect
8484
github.com/keybase/go-keychain v0.0.0-20190712205309-48d3d31d256d // indirect
8585
github.com/klauspost/compress v1.15.9 // indirect
8686
github.com/lib/pq v1.10.6 // indirect
8787
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
8888
github.com/magiconair/properties v1.8.6 // indirect
89-
github.com/mattn/go-colorable v0.1.12 // indirect
90-
github.com/mattn/go-isatty v0.0.14 // indirect
89+
github.com/mattn/go-colorable v0.1.13 // indirect
90+
github.com/mattn/go-isatty v0.0.16 // indirect
9191
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
9292
github.com/mimoo/StrobeGo v0.0.0-20181016162300-f8f6d4d2b643 // indirect
9393
github.com/minio/highwayhash v1.0.2 // indirect
9494
github.com/mitchellh/mapstructure v1.5.0 // indirect
9595
github.com/mtibben/percent v0.2.1 // indirect
9696
github.com/pelletier/go-toml v1.9.5 // indirect
97-
github.com/pelletier/go-toml/v2 v2.0.2 // indirect
97+
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
9898
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
9999
github.com/pmezard/go-difflib v1.0.0 // indirect
100100
github.com/prometheus/client_model v0.2.0 // indirect
@@ -106,27 +106,29 @@ require (
106106
github.com/sasha-s/go-deadlock v0.2.1-0.20190427202633-1595213edefa // indirect
107107
github.com/spf13/afero v1.8.2 // indirect
108108
github.com/spf13/jwalterweatherman v1.1.0 // indirect
109-
github.com/subosito/gotenv v1.4.0 // indirect
109+
github.com/subosito/gotenv v1.4.1 // indirect
110+
github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c // indirect
110111
github.com/tendermint/btcd v0.1.1 // indirect
111112
github.com/tendermint/crypto v0.0.0-20191022145703-50d29ede1e15 // indirect
112113
github.com/tendermint/go-amino v0.16.0 // indirect
113114
github.com/zondax/hid v0.9.0 // indirect
114115
go.etcd.io/bbolt v1.3.6 // indirect
115-
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
116+
golang.org/x/crypto v0.4.0 // indirect
116117
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
117-
golang.org/x/net v0.0.0-20220726230323-06994584191e // indirect
118-
golang.org/x/sys v0.0.0-20220727055044-e65921a090b8 // indirect
119-
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 // indirect
120-
golang.org/x/text v0.3.7 // indirect
121-
google.golang.org/protobuf v1.28.0 // indirect
122-
gopkg.in/ini.v1 v1.66.6 // indirect
118+
golang.org/x/net v0.4.0 // indirect
119+
golang.org/x/sys v0.3.0 // indirect
120+
golang.org/x/term v0.3.0 // indirect
121+
golang.org/x/text v0.5.0 // indirect
122+
google.golang.org/protobuf v1.28.1 // indirect
123+
gopkg.in/ini.v1 v1.67.0 // indirect
123124
gopkg.in/yaml.v3 v3.0.1 // indirect
124125
nhooyr.io/websocket v1.8.6 // indirect
125126
)
126127

127128
replace (
128129
// Use the cosmos-flavored keyring library
129130
github.com/99designs/keyring => github.com/cosmos/keyring v1.1.7-0.20210622111912-ef00f8ac3d76
131+
130132
github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0
131133
// Fix upstream GHSA-h395-qcrw-5vmq vulnerability.
132134
// TODO Remove it: https://github.com/cosmos/cosmos-sdk/issues/10409
@@ -136,6 +138,4 @@ replace (
136138
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
137139
google.golang.org/grpc => google.golang.org/grpc v1.33.2
138140

139-
github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0
140-
141141
)

0 commit comments

Comments
 (0)