forked from cometbft/cometbft-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Release and update changelog * Bump version to 0.32.0 * Update light client readmes * Update main readme * Update release summaries with dates * Update copyright notice
- Loading branch information
Showing
33 changed files
with
176 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
*Feb 17, 2023* | ||
*Feb 17th, 2023* | ||
|
||
This release features modularity improvements for the cryptographic routines, as well as fixes related to block verification and the use of a consensus-friendly ed25519 crate. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
*February 27th, 2023* | ||
|
||
Improve debug output for Ed25519 keys. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
*April 16th, 2023* | ||
|
||
Upgrade signature crate versions and add a `TypedEvent` trait for ABCI events. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
*April 17th, 2023* | ||
|
||
Expose the `TypedEvent` marker trait. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
*May 3rd, 2023* | ||
|
||
This release notably comes with a fully featured [light client attack detector][attack-detector], | ||
and introduces a [CLI for the light client][light-client-cli] for verifying headers, | ||
detecting attacks against the light client, and reporting the evidence to primary and witness nodes. | ||
|
||
It also adds a [`Verifier::verify_misbehaviour_header`][verifier-method] method for verifying | ||
headers coming from a misbehaviour evidence. | ||
|
||
Moreover, the [`Client`][client-trait] trait is now exposed by the `tendermint-rpc` without requiring | ||
the `http-client` or the `websocket-client` feature flags to be enabled. | ||
|
||
[light-client-cli]: https://github.com/informalsystems/tendermint-rs/tree/main/light-client-cli | ||
[attack-detector]: https://github.com/informalsystems/tendermint-rs/tree/main/light-client-detector | ||
[verifier-method]: https://github.com/informalsystems/tendermint-rs/blob/6a4cd245b6f362832b974104b40be973dd0ef108/light-client-verifier/src/verifier.rs#L67 | ||
[client-trait]: https://github.com/informalsystems/tendermint-rs/blob/6a4cd245b6f362832b974104b40be973dd0ef108/rpc/src/client.rs#L49 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tendermint-abci" | ||
version = "0.31.1" | ||
version = "0.32.0" | ||
authors = ["Informal Systems <[email protected]>"] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|
@@ -33,7 +33,7 @@ binary = [ | |
[dependencies] | ||
bytes = { version = "1.0", default-features = false } | ||
prost = { version = "0.11", default-features = false } | ||
tendermint-proto = { version = "0.31.1", default-features = false, path = "../proto" } | ||
tendermint-proto = { version = "0.32.0", default-features = false, path = "../proto" } | ||
tracing = { version = "0.1", default-features = false } | ||
flex-error = { version = "0.4.4", default-features = false } | ||
structopt = { version = "0.3", optional = true, default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[![Crate][crate-image]][crate-link] | ||
[![Docs][docs-image]][docs-link] | ||
|
||
See the [repo root] for build status, license, rust version, etc. | ||
|
||
# Light Client Attack Detector | ||
|
||
Implementation of the [Light Client Detection][light-client-detection]. | ||
|
||
## Documentation | ||
|
||
See documentation on [docs.rs][docs-link]. | ||
|
||
## Testing | ||
|
||
The Tendermint Light Client Attack Detector is currently primarily tested via the [Hermes][hermes] integration test suite | ||
|
||
[//]: # (badges) | ||
|
||
[crate-image]: https://img.shields.io/crates/v/tendermint-light-client-detector.svg | ||
[crate-link]: https://crates.io/crates/tendermint-light-client-detector | ||
[docs-image]: https://docs.rs/tendermint-light-client-detector/badge.svg | ||
[docs-link]: https://docs.rs/tendermint-light-client-detector/ | ||
|
||
[//]: # (general links) | ||
|
||
[repo root]: https://github.com/informalsystems/tendermint-rs | ||
[Tendermint]: https://github.com/tendermint/tendermint | ||
[light-client-detection]: https://github.com/informalsystems/tendermint-rs/tree/main/docs/spec/lightclient/detection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tendermint-light-client-js" | ||
version = "0.31.1" | ||
version = "0.32.0" | ||
authors = ["Informal Systems <[email protected]>"] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|
@@ -22,8 +22,8 @@ default = ["console_error_panic_hook"] | |
[dependencies] | ||
serde = { version = "1.0", default-features = false, features = [ "derive" ] } | ||
serde_json = { version = "1.0", default-features = false } | ||
tendermint = { version = "0.31.1", default-features = false, path = "../tendermint" } | ||
tendermint-light-client-verifier = { version = "0.31.1", features = ["rust-crypto"], default-features = false, path = "../light-client-verifier" } | ||
tendermint = { version = "0.32.0", default-features = false, path = "../tendermint" } | ||
tendermint-light-client-verifier = { version = "0.32.0", features = ["rust-crypto"], default-features = false, path = "../light-client-verifier" } | ||
wasm-bindgen = { version = "0.2.63", default-features = false, features = [ "serde-serialize" ] } | ||
serde-wasm-bindgen = { version = "0.4.5", default-features = false } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.