Skip to content

Commit c52c142

Browse files
mergify[bot]dependabot[bot]crodriguezvega
authored
build(deps): bump github.com/cosmos/cosmos-sdk from 0.45.3 to 0.45.4 (#1300) (#1363)
* build(deps): bump github.com/cosmos/cosmos-sdk from 0.45.3 to 0.45.4 Bumps [github.com/cosmos/cosmos-sdk](https://github.com/cosmos/cosmos-sdk) from 0.45.3 to 0.45.4. - [Release notes](https://github.com/cosmos/cosmos-sdk/releases) - [Changelog](https://github.com/cosmos/cosmos-sdk/blob/v0.45.4/CHANGELOG.md) - [Commits](cosmos/cosmos-sdk@v0.45.3...v0.45.4) --- updated-dependencies: - dependency-name: github.com/cosmos/cosmos-sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * update changelog Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> Co-authored-by: Carlos Rodriguez <carlos@interchain.io> (cherry picked from commit bd08650) # Conflicts: # go.mod # go.sum Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: crodriguezvega <carlos@interchain.io>
1 parent 17192ff commit c52c142

File tree

3 files changed

+321
-79
lines changed

3 files changed

+321
-79
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
3939
### Dependencies
4040

4141
* [\#404](https://github.com/cosmos/ibc-go/pull/404) Bump Go version to 1.17
42+
* [\#1300](https://github.com/cosmos/ibc-go/pull/1300) Bump SDK version to v0.45.4
4243

4344
### API Breaking
4445

go.mod

+29-28
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alp
77
require (
88
github.com/armon/go-metrics v0.3.10
99
github.com/confio/ics23/go v0.7.0
10-
github.com/cosmos/cosmos-sdk v0.45.1
10+
github.com/cosmos/cosmos-sdk v0.45.4
1111
github.com/gogo/protobuf v1.3.3
1212
github.com/golang/protobuf v1.5.2
1313
github.com/gorilla/mux v1.8.0
1414
github.com/grpc-ecosystem/grpc-gateway v1.16.0
1515
github.com/pkg/errors v0.9.1
1616
github.com/rakyll/statik v0.1.7
1717
github.com/spf13/cast v1.4.1
18-
github.com/spf13/cobra v1.2.1
19-
github.com/spf13/viper v1.8.1
20-
github.com/stretchr/testify v1.7.0
21-
github.com/tendermint/tendermint v0.34.14
22-
github.com/tendermint/tm-db v0.6.4
23-
google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71
24-
google.golang.org/grpc v1.42.0
18+
github.com/spf13/cobra v1.4.0
19+
github.com/spf13/viper v1.10.1
20+
github.com/stretchr/testify v1.7.1
21+
github.com/tendermint/tendermint v0.34.19
22+
github.com/tendermint/tm-db v0.6.6
23+
google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb
24+
google.golang.org/grpc v1.45.0
2525
google.golang.org/protobuf v1.27.1
2626
)
2727

@@ -30,12 +30,12 @@ require (
3030
github.com/99designs/keyring v1.1.6 // indirect
3131
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d // indirect
3232
github.com/DataDog/zstd v1.4.5 // indirect
33-
github.com/Workiva/go-datastructures v1.0.52 // indirect
33+
github.com/Workiva/go-datastructures v1.0.53 // indirect
3434
github.com/beorn7/perks v1.0.1 // indirect
3535
github.com/bgentry/speakeasy v0.1.0 // indirect
3636
github.com/btcsuite/btcd v0.22.0-beta // indirect
3737
github.com/cespare/xxhash v1.1.0 // indirect
38-
github.com/cespare/xxhash/v2 v2.1.1 // indirect
38+
github.com/cespare/xxhash/v2 v2.1.2 // indirect
3939
github.com/coinbase/rosetta-sdk-go v0.7.0 // indirect
4040
github.com/cosmos/btcutil v1.0.4 // indirect
4141
github.com/cosmos/go-bip39 v1.0.0 // indirect
@@ -52,48 +52,49 @@ require (
5252
github.com/dvsekhvalnov/jose2go v0.0.0-20200901110807-248326c1351b // indirect
5353
github.com/felixge/httpsnoop v1.0.1 // indirect
5454
github.com/fsnotify/fsnotify v1.5.1 // indirect
55-
github.com/go-kit/kit v0.10.0 // indirect
56-
github.com/go-logfmt/logfmt v0.5.0 // indirect
55+
github.com/go-kit/kit v0.12.0 // indirect
56+
github.com/go-kit/log v0.2.0 // indirect
57+
github.com/go-logfmt/logfmt v0.5.1 // indirect
5758
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
5859
github.com/gogo/gateway v1.1.0 // indirect
5960
github.com/golang/snappy v0.0.3 // indirect
6061
github.com/google/btree v1.0.0 // indirect
6162
github.com/google/orderedcode v0.0.1 // indirect
6263
github.com/gorilla/handlers v1.5.1 // indirect
63-
github.com/gorilla/websocket v1.4.2 // indirect
64+
github.com/gorilla/websocket v1.5.0 // indirect
6465
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
6566
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
6667
github.com/gtank/merlin v0.1.1 // indirect
6768
github.com/gtank/ristretto255 v0.1.2 // indirect
68-
github.com/hashicorp/go-immutable-radix v1.0.0 // indirect
69+
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
6970
github.com/hashicorp/golang-lru v0.5.4 // indirect
7071
github.com/hashicorp/hcl v1.0.0 // indirect
7172
github.com/hdevalence/ed25519consensus v0.0.0-20210204194344-59a8610d2b87 // indirect
7273
github.com/improbable-eng/grpc-web v0.14.1 // indirect
7374
github.com/inconshreveable/mousetrap v1.0.0 // indirect
7475
github.com/jmhodges/levigo v1.0.0 // indirect
7576
github.com/keybase/go-keychain v0.0.0-20190712205309-48d3d31d256d // indirect
76-
github.com/klauspost/compress v1.11.7 // indirect
77-
github.com/lib/pq v1.10.2 // indirect
77+
github.com/klauspost/compress v1.13.6 // indirect
78+
github.com/lib/pq v1.10.4 // indirect
7879
github.com/libp2p/go-buffer-pool v0.0.2 // indirect
7980
github.com/magiconair/properties v1.8.5 // indirect
8081
github.com/mattn/go-isatty v0.0.14 // indirect
8182
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
8283
github.com/mimoo/StrobeGo v0.0.0-20181016162300-f8f6d4d2b643 // indirect
83-
github.com/minio/highwayhash v1.0.1 // indirect
84+
github.com/minio/highwayhash v1.0.2 // indirect
8485
github.com/mitchellh/go-homedir v1.1.0 // indirect
85-
github.com/mitchellh/mapstructure v1.4.2 // indirect
86+
github.com/mitchellh/mapstructure v1.4.3 // indirect
8687
github.com/mtibben/percent v0.2.1 // indirect
8788
github.com/pelletier/go-toml v1.9.4 // indirect
8889
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
8990
github.com/pmezard/go-difflib v1.0.0 // indirect
90-
github.com/prometheus/client_golang v1.11.0 // indirect
91+
github.com/prometheus/client_golang v1.12.1 // indirect
9192
github.com/prometheus/client_model v0.2.0 // indirect
92-
github.com/prometheus/common v0.29.0 // indirect
93-
github.com/prometheus/procfs v0.6.0 // indirect
93+
github.com/prometheus/common v0.32.1 // indirect
94+
github.com/prometheus/procfs v0.7.3 // indirect
9495
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0 // indirect
9596
github.com/regen-network/cosmos-proto v0.3.1 // indirect
96-
github.com/rs/cors v1.7.0 // indirect
97+
github.com/rs/cors v1.8.2 // indirect
9798
github.com/rs/zerolog v1.23.0 // indirect
9899
github.com/sasha-s/go-deadlock v0.2.1-0.20190427202633-1595213edefa // indirect
99100
github.com/spf13/afero v1.6.0 // indirect
@@ -106,13 +107,13 @@ require (
106107
github.com/tendermint/crypto v0.0.0-20191022145703-50d29ede1e15 // indirect
107108
github.com/tendermint/go-amino v0.16.0 // indirect
108109
github.com/zondax/hid v0.9.0 // indirect
109-
go.etcd.io/bbolt v1.3.5 // indirect
110-
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
111-
golang.org/x/net v0.0.0-20210903162142-ad29c8ab022f // indirect
112-
golang.org/x/sys v0.0.0-20210903071746-97244b99971b // indirect
110+
go.etcd.io/bbolt v1.3.6 // indirect
111+
golang.org/x/crypto v0.0.0-20210915214749-c084706c2272 // indirect
112+
golang.org/x/net v0.0.0-20211208012354-db4efeb81f4b // indirect
113+
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
113114
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
114-
golang.org/x/text v0.3.6 // indirect
115-
gopkg.in/ini.v1 v1.63.2 // indirect
115+
golang.org/x/text v0.3.7 // indirect
116+
gopkg.in/ini.v1 v1.66.2 // indirect
116117
gopkg.in/yaml.v2 v2.4.0 // indirect
117118
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
118119
nhooyr.io/websocket v1.8.6 // indirect

0 commit comments

Comments
 (0)