Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to cosmos-sdk 0.46 and tendermint 0.35 #2213

Closed
Closed
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
acac60d
Update tendermint-rs to 0.24.0-pre.2
mzabaluev May 11, 2022
223585a
Improve error output of proto-compiler
mzabaluev Apr 29, 2022
de66796
proto-compiler: Fetch buf deps of cosmos-sdk
mzabaluev May 13, 2022
27d787e
Recompile proto source files from pre-0.46 sdk
mzabaluev May 13, 2022
83aa7f2
Bump ibc-proto-compiler version to 0.3.0
mzabaluev May 13, 2022
dc6b55c
proto-compiler: Saner way to join paths
mzabaluev May 13, 2022
f35ce0e
Update comments in sync-protobuf.sh
mzabaluev May 13, 2022
dbd3bcc
Adapt to simpler changes in tendermint 0.24:
mzabaluev May 16, 2022
af4c98e
Merge branch 'master' into mikhail/tendermint-rs-0.24-with-cosmos-sdk…
mzabaluev May 18, 2022
714dc25
proto: Regenerate code for cosmos.bank.v1beta1
mzabaluev May 18, 2022
cc388cc
Supply a missing member for AuthInfo
mzabaluev May 18, 2022
2dde094
Remove recognition of canceled subscription
mzabaluev May 18, 2022
d013a37
[tendermint-rs 0.24] Use the new names for Io API
mzabaluev May 18, 2022
9236ffb
[tendermint 0.24] Rework processing of RPC events
mzabaluev May 18, 2022
242d58a
Wrap async light client calls with block_on
mzabaluev May 19, 2022
d424b21
[tendermint 0.24] cli: Adapt to tendermint changes
mzabaluev May 19, 2022
56ee375
Set minimum price on node bootstrap
soareschen May 19, 2022
941a3bb
Update ibc-go commit
mzabaluev May 19, 2022
1963ae8
test-framework: explicitly IPv4 URLs in the driver
mzabaluev May 20, 2022
87f3f84
Set full node config mode to "validator"
soareschen May 20, 2022
8e76566
Refactor wait_tx to work with all responses
soareschen May 20, 2022
b7d9972
relayer: Update doc on event::rpc::get_all_events
mzabaluev May 23, 2022
17fe35e
relayer: Trace tx hash on SendPacket
mzabaluev May 23, 2022
3ad3230
Merge branch 'master' into mikhail/tendermint-rs-0.24-with-cosmos-sdk…
mzabaluev May 23, 2022
62bb7ac
Move ABCI event parsing from modules to relayer
mzabaluev May 31, 2022
67ad19c
Move ibc::query types to relayer
mzabaluev May 31, 2022
9c3de0e
modules: Remove tendermint-rpc dependency
mzabaluev May 31, 2022
0a2e138
Update tendermint deps in no-std-check
mzabaluev May 31, 2022
0da2b36
Patch tendermint-rs to work around an RPC bug
mzabaluev May 24, 2022
7c4e742
Merge branch 'master' into mikhail/tendermint-rs-0.24-with-cosmos-sdk…
mzabaluev Jun 1, 2022
7d0ef85
Merge branch 'master' into mikhail/tendermint-rs-0.24-with-cosmos-sdk…
mzabaluev Jun 1, 2022
0b416b7
Post-merge fixes
mzabaluev Jun 1, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
134 changes: 88 additions & 46 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 10 additions & 6 deletions modules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,23 @@ num-traits = { version = "0.2.15", default-features = false }
derive_more = { version = "0.99.17", default-features = false, features = ["from", "display"] }

[dependencies.tendermint]
version = "=0.23.7"
version = "=0.24.0-pre.2"
default-features = false

[dependencies.tendermint-proto]
version = "=0.23.7"
version = "=0.24.0-pre.2"
default-features = false

[dependencies.tendermint-rpc]
mzabaluev marked this conversation as resolved.
Show resolved Hide resolved
version = "=0.24.0-pre.2"
default-features = false

[dependencies.tendermint-light-client-verifier]
version = "=0.23.7"
version = "=0.24.0-pre.2"
default-features = false

[dependencies.tendermint-testgen]
version = "=0.23.7"
version = "=0.24.0-pre.2"
optional = true
default-features = false

Expand All @@ -67,8 +71,8 @@ tracing-subscriber = { version = "0.3.11", features = ["fmt", "env-filter", "jso
test-log = { version = "0.2.10", features = ["trace"] }
modelator = "0.4.2"
sha2 = { version = "0.10.2" }
tendermint-rpc = { version = "=0.23.7", features = ["http-client", "websocket-client"] }
tendermint-testgen = { version = "=0.23.7" } # Needed for generating (synthetic) light blocks.
tendermint-rpc = { version = "=0.24.0-pre.2", features = ["http-client", "websocket-client"] }
tendermint-testgen = { version = "=0.24.0-pre.2" } # Needed for generating (synthetic) light blocks.

[[test]]
name = "mbt"
Expand Down
Loading