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

Bump tendermint-rs dependencies to 0.23.6 #2046

Merged
merged 3 commits into from
Apr 4, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
2 changes: 2 additions & 0 deletions .changelog/unreleased/improvements/2045-tendermint-0.23.6.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Update tendermint-rs dependencies to v0.23.6
([#2045](https://github.com/informalsystems/ibc-rs/issues/2045))
33 changes: 16 additions & 17 deletions Cargo.lock

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

46 changes: 32 additions & 14 deletions ci/no-std-check/Cargo.lock

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

6 changes: 3 additions & 3 deletions ci/no-std-check/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ resolver = "2"
[dependencies]
ibc = { path = "../../modules", default-features = false }
ibc-proto = { path = "../../proto", default-features = false }
tendermint = { version = "0.23.5", default-features = false }
tendermint-proto = { version = "0.23.5", default-features = false }
tendermint-light-client-verifier = { version = "0.23.5", default-features = false }
tendermint = { version = "0.23.6", default-features = false }
tendermint-proto = { version = "0.23.6", default-features = false }
tendermint-light-client-verifier = { version = "0.23.6", default-features = false }

sp-core = { version = "5.0.0", default-features = false, optional = true }
sp-io = { version = "5.0.0", default-features = false, optional = true }
Expand Down
12 changes: 6 additions & 6 deletions modules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,19 @@ num-traits = { version = "0.2.14", default-features = false }
derive_more = { version = "0.99.17", default-features = false, features = ["from", "display"] }

[dependencies.tendermint]
version = "=0.23.5"
version = "=0.23.6"
default-features = false

[dependencies.tendermint-proto]
version = "=0.23.5"
version = "=0.23.6"
default-features = false

[dependencies.tendermint-light-client-verifier]
version = "=0.23.5"
version = "=0.23.6"
default-features = false

[dependencies.tendermint-testgen]
version = "=0.23.5"
version = "=0.23.6"
optional = true
default-features = false

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

[[test]]
name = "mbt"
Expand Down
2 changes: 1 addition & 1 deletion proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ schemars = { version = "0.8", optional = true }
base64 = { version = "0.13", default-features = false, features = ["alloc"] }

[dependencies.tendermint-proto]
version = "=0.23.5"
version = "=0.23.6"
default-features = false

[features]
Expand Down
10 changes: 5 additions & 5 deletions relayer-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,22 +58,22 @@ flex-error = { version = "0.4.4", default-features = false, features = ["std", "
signal-hook = "0.3.13"

[dependencies.tendermint-proto]
version = "=0.23.5"
version = "=0.23.6"

[dependencies.tendermint]
version = "=0.23.5"
version = "=0.23.6"
features = ["secp256k1"]

[dependencies.tendermint-rpc]
version = "=0.23.5"
version = "=0.23.6"
features = ["http-client", "websocket-client"]

[dependencies.tendermint-light-client]
version = "=0.23.5"
version = "=0.23.6"
features = ["unstable"]

[dependencies.tendermint-light-client-verifier]
version = "=0.23.5"
version = "=0.23.6"

[dependencies.abscissa_core]
version = "=0.6.0"
Expand Down
12 changes: 6 additions & 6 deletions relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,24 +73,24 @@ version = "0.4.0"
features = ["num-bigint", "serde"]

[dependencies.tendermint]
version = "=0.23.5"
version = "=0.23.6"
features = ["secp256k1"]

[dependencies.tendermint-rpc]
version = "=0.23.5"
version = "=0.23.6"
features = ["http-client", "websocket-client"]

[dependencies.tendermint-light-client]
version = "=0.23.5"
version = "=0.23.6"
default-features = false
features = ["rpc-client", "secp256k1", "unstable"]

[dependencies.tendermint-light-client-verifier]
version = "=0.23.5"
version = "=0.23.6"
default-features = false

[dependencies.tendermint-proto]
version = "=0.23.5"
version = "=0.23.6"

[dev-dependencies]
ibc = { version = "0.13.0", path = "../modules", features = ["mocks"] }
Expand All @@ -100,4 +100,4 @@ tracing-subscriber = { version = "0.3.9", features = ["fmt", "env-filter", "json
test-log = { version = "0.2.10", features = ["trace"] }

# Needed for generating (synthetic) light blocks.
tendermint-testgen = { version = "=0.23.5" }
tendermint-testgen = { version = "=0.23.6" }
2 changes: 1 addition & 1 deletion relayer/src/chain/cosmos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ impl CosmosSdkChain {
crate::telemetry!(query, self.id(), "query_consensus_params");

Ok(self
.block_on(self.rpc_client.genesis())
.block_on(self.rpc_client.genesis::<serde_json::Value>())
romac marked this conversation as resolved.
Show resolved Hide resolved
.map_err(|e| Error::rpc(self.config.rpc_addr.clone(), e))?
.consensus_params)
}
Expand Down
4 changes: 2 additions & 2 deletions tools/integration-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ ibc-relayer = { path = "../../relayer" }
ibc-relayer-cli = { path = "../../relayer-cli" }
ibc-proto = { path = "../../proto" }
ibc-test-framework = { path = "../test-framework" }
tendermint = { version = "=0.23.5" }
tendermint-rpc = { version = "=0.23.5", features = ["http-client", "websocket-client"] }
tendermint = { version = "=0.23.6" }
tendermint-rpc = { version = "=0.23.6", features = ["http-client", "websocket-client"] }

serde_json = "1"
time = "0.3"
Expand Down
4 changes: 2 additions & 2 deletions tools/test-framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ ibc = { path = "../../modules" }
ibc-relayer = { path = "../../relayer" }
ibc-relayer-cli = { path = "../../relayer-cli" }
ibc-proto = { path = "../../proto" }
tendermint = { version = "=0.23.5" }
tendermint-rpc = { version = "=0.23.5", features = ["http-client", "websocket-client"] }
tendermint = { version = "=0.23.6" }
tendermint-rpc = { version = "=0.23.6", features = ["http-client", "websocket-client"] }

tokio = { version = "1.0", features = ["full"] }
tracing = "0.1.32"
Expand Down