May 4, 2022
The major change in this pre-release is the introduction of a fully async
light client interface.
[tendermint-light-client]
Replace Io with async variant (#953)[tendermint-proto]
MakeProtobuf::encode_vec()
infallible (#1064)[tools/rpc-probe]
CLI updated to support probing Gaia nodes in addition to kvstore-based Tendermint nodes to generate static fixtures for RPC tests (#1084)
[tendermint-light-client]
Upgradecontracts
dependency to v0.6.2 (#1097)- Update
prost
to v0.10 ([#1113](https://github.com/informalsystems/tendermint- rs/issues/1113))
[tendermint-rpc]
Add support for the/block_by_hash
RPC endpoint. See https://docs.tendermint.com/master/rpc/#/Info/block_by_hash for details (#832).[tendermint]
Addtendermint::chain::Id::new
with support for chain ID constants (#1105).
[tendermint-rpc]
Allow deserialization of public keys from validator updates fromblock_results
endpoint in multiple JSON formats until this is fixed in Tendermint (#1021)
Jan 13, 2022
This pre-release targets Tendermint Core v0.35 and introduces a number of breaking changes from the v0.23 series of tendermint-rs. We provide a pre-release here so people can start experimenting with and preparing for Tendermint v0.35 compatibility, but a number of refinements need to be made before we can produce a v0.24.0 release.
One of the major changes involves the introduction of domain types for ABCI in preparation for the release of ABCI++ in Tendermint v0.36. It also includes a number of fixes and backports from the v0.23.x series of tendermint-rs.
- Updated integration testing to test against Tendermint v0.35.0 (#862)
[tendermint-rpc]
The/tx
endpoint now encodes thehash
parameter as hexadecimal instead of base64 (#862)[tendermint]
Added domain types for ABCI (#862)[tendermint-abci]
Changed low-level wire encoding protocol to accommodate tendermint/tendermint#5783 (#862)[tendermint-rpc]
Theevent::Event::events
field is now represented asOption<Vec<crate::abci::Event>>
as opposed toOption<HashMap<String, Vec<String>>>
to accommodate breaking change in Tendermint v0.35.0 subscription interface ([#862](https://github.com/informalsystems/tendermint- rs/issues/862))[tendermint-light-client]
Split out the verification functionality from thetendermint-light-client
crate into its ownno_std
-compatible crate:tendermint-light-client-verifier
. This helps move us closer tono_std
compliance in both tendermint-rs and ibc-rs (#1027)[tendermint]
Reformtendermint::Time
(#1030):- The struct content is made private.
- The range of acceptable values is restricted to years 1-9999 (as reckoned in UTC).
- Removed conversions from/to
chrono::DateTime<chrono::Utc>
. - Changes in error variants: removed
TimestampOverflow
, replaced withTimestampNanosOutOfRange
; removedChronoParse
, replaced withTimeParse
.
[tendermint-rpc]
UseOffsetDateTime
andDate
types provided by thetime
crate in query operands instead of theirchrono
counterparts. (#1030)[tendermint-rpc]
Remove theErrorDetail::Server
variant (#1039)[tendermint]
Box a large field value inevidence::Evidence
(#1041)[tendermint-light-client]
Box large field values infork_detector::Fork
(#1041)[tendermint-rpc]
Box a large field value inevent::EventData
(#1041)[tendermint-p2p]
All public APIs usinged25519- dalek
types now use types fromed25519-consensus
(#1046)
[tools/proto-compiler]
Fixed our proto-compiler, which was producing protos that did not compile due to an incorrect Prost field annotation (#1014)[tendermint]
Thetendermint::node::Id
Display
implementation now prints the hexadecimal string in lowercase (#971)
[tendermint, tendermint-p2p]
Replaced theed25519-dalek
dependency withed25519-consensus
(#1046)[tendermint-rpc]
: Switchhyper-proxy
to userustls
, eliminating the only use ofnative-tls
in tendermint-rs dependencies (#1068)
[tendermint]
Deprecatedsignature::ED25519_SIGNATURE_SIZE
in favor ofEd25519Signature::BYTE_SIZE
(#1023)- Remove dependencies on the
chrono
crate. (#1030) [tendermint]
Improvetendermint::Time
(#1030):- Restrict the validity range of
Time
to dates with years in the range 1-9999, to match the specification of protobuf messageTimestamp
. Add anErrorDetail
variantDateOutOfRange
to report when this restriction is not met. - Added a conversion to, and a fallible conversion from,
OffsetDateTime
of thetime
crate. - Added
Time
methodschecked_add
andchecked_sub
.
- Restrict the validity range of
[tendermint]
Hash
is implemented fortendermint::Time
(#1054)[tendermint]
ImplementClone
forPrivateKey
(#1077)
Oct 27, 2021
The main changes in this release involve upgrading to Prost
v0.9 and some
foundational changes to prepare for no_std
support for some of our crates.
One of the main no_std
-related changes in this release was to break out
configuration-related data structures from the tendermint
crate into their own
crate (tendermint-config
) as these structures depend on other crates which do
not yet support no_std
.
- Upgraded Prost to the official v0.9 release to finally resolve the security issue introduced by v0.7 (#925)
[tendermint, tendermint-config]
Thetendermint::config
module has now been broken out into its own crate (tendermint- config
) to help towards facilitatingno_std
compatibility (#983)[tendermint]
Thetendermint::node::info::OtherInfo::rpc_address
field type has been changed fromtendermint::net::Address
toString
toward facilitatingno_std
compatibility (#983)[tendermint]
Thetendermint::node::info::ListenAddress::to_net_address
method was replaced with a simpleas_str
method toward facilitatingno_std
compatibility ([#983](https://github.com/informalsystems/tendermint- rs/issues/983))
[tendermint-rpc]
Add support for the/block_search
RPC endpoint. See https://docs.tendermint.com/master/rpc/\#/Info/block_search for details (#832)
Sep 23, 2021
This release targets numerous issues largely in support of
ibc-rs. The major breaking change
in this regard is in the
API
we use to perform verification in the tendermint-light-client
crate.
Toward no_std
compatibility and flexibility in the way we handle error tracing
and reporting, we have also refactored the entire error handling system in
tendermint-rs
to make use of
flex-error.
Finally, we are also (painfully) aware of the fact that our documentation does
not build for this release and apologize for this. We currently still depend on
Prost v0.7.0 and are awaiting a new release of Prost after v0.8.0 that does not
break our builds. We have
#978 open in
preparation for this upgrade and will release a new version of tendermint-rs
as soon as a new Prost release is available.
See below for more specific detail as to what has changed in this release.
- All crates' error handling has been refactored to make use of
flex-error
. This gives users greater flexibility in terms of the error handling/reporting systems they want to use and is a critical step towardsno_std
support. (#923) [tendermint-rpc]
The/tx
endpoint'sRequest::hash
field has been changed fromString
totendermint::abci::transaction::Hash
(#942)[tendermint-light-client]
The light client verification functionality has been refactored (including breaking changes to the API) such that it can be more easily used from bothtendermint_light_client
andibc-rs
(#956)[tendermint-light-client]
Disable thelightstore-sled
feature by default (#976)
[tendermint-rpc]
The encoding of thehash
field for requests to the/tx
endpoint has been changed to base64 (from hex) to accommodate discrepancies in how the Tendermint RPC encodes this field for different RPC interfaces (#942)
[tendermint-rpc]
Add support for the/consensus_params
RPC endpoint. See https://docs.tendermint.com/master/rpc/\#/Info/consensus_params for details (#832)[tendermint-rpc]
Runtime query parsing (relevant to the/subscribe
and/tx_search
endpoints) has been reintroduced. This allows for client-side validation of queries prior to submitting them to a remote Tendermint node. An example of how to use this is available in thetendermint-rpc
CLI (see the README for details). (#859)[tendermint, tendermint-light-client]
Add support for Secp256k1 signatures (#939)
[tendermint-p2p]
TheSecretConnection
can now be split into two halves to facilitate full-duplex communication (must be facilitated by using each half in a separate thread). (#938)[tendermint-light-client]
Model-based tests are now disabled by default and can be enabled through thembt
feature (#968)[tendermint, tendermint-rpc]
DeriveEq
onSignedHeader
andCommit
(#969)[tendermint-light-client]
AddWebSocketClient::new_with_config
to specify the WebSocket connection settings (#974)[tendermint-p2p]
Amino support is now implemented using the upstreamprost
crate, eliminating a dependency onprost-amino
(#979)
Jul 20, 2021
This release introduces several minor breaking changes (see below), among other
improvements, that clean up a few RPC-related data structures and ensure better
correctness of the TrustThresholdFraction
data structure when constructing
and deserializing it.
A security issue
was reported in prost
v0.7, and we attempted to upgrade to v0.8, but we are
still awaiting one bug fix in
v0.8 before we can upgrade. The moment that is fixed in prost
, we will upgrade
to v0.8 and provide another tendermint-rs
release.
[tendermint-rpc]
Remove theTmEvent
andAttribute
structs and replace them with their equivalent domain types from thetendermint
crate (#918)[tendermint]
TheTrustThresholdFraction
struct can now only be constructed by way of itsnew
constructor. Deserialization also now makes use of this constructor, facilitating better validation. Thenumerator
anddenominator
fields can be accessed (read-only) via their respective methods, since the fields are now private. (#924)
[tendermint]
Update Genesis for Tendermint v.0.34.x (#917)[tendermint-rpc]
Fix bug whereNewBlock
events emitted by Tendermint could not be parsed because of a missing field (#930)
[tendermint-proto]
Regenerate the Rust equivalents of the Tendermint Protobuf structures for Tendermint v0.34.9 (#871)[tendermint-rpc]
AddPartialEq
,Eq
,PartialOrd
,Ord
andHash
trait bounds to the RPC URL types (#919)[tendermint-rpc]
Propagate JSON-RPC errors through the Rust subscription (#932)
Jun 22, 2021
This release's number is bumped up to v0.20.0 due to two minor breaking changes in our public APIs (see the breaking changes section below for details).
Also, since nobody was really making use of the Light Node, we decided to remove its crate from the repo for now. If anyone needs it back, please contact us and we'll restore it (although, we are considering migrating any and all binaries to their own repositories in the future to separate library-level concerns from operational ones).
The tendermint-p2p
crate is still undergoing significant expansion (thanks to
@xla and @melekes). A lot's been done and we're in the process of finalizing
this new architecture, which will form the basis for future work towards
building more Tendermint nodes in Rust. More on this in future
releases.
Other than that, this release mainly contains various small bug fixes, improvements and dependency updates.
[tendermint-p2p]
Remove superfluous module name suffixes inp2p::error
(#898)[tendermint]
Renametime::Time::to_rfc3339
toas_rfc3339
to be consistent with Rust's self reference conventions (#910)
[tendermint-abci,tendermint-rpc]
Fix DeliverTx response deserialization issues withgas_wanted
andgas_used
fields (#876)[tendermint]
Update TendermintConfig for Tendermint v.0.34.x (#897)[tendermint]
Better handling of optional values in TendermintConfig (#908)
[tendermint-light-client]
Replacedtempdir
dev dependency (deprecated) withtempfile
(#851)- Updated the changelog process to use unclog format and unblock the PR merge process (#891).
[tendermint]
Changedtendermint::public_key::Secp256k1
to be an alias ofk256::ecdsa::VerifyingKey
(#900)
[tendermint-light-node]
We removed thelight-node
crate from the repo since nobody's currently really using it. If anyone needs please log an issue and we'll restore it. It will, of course, remain accessible in the repo history for now. (#879)
Apr 7, 2021
This release primarily aims to enhance RPC and Light Client functionality,
thereby improving ibc-rs
and fixing an important bug affecting the Light
Client (#831).
The RPC now supports TLS 1.2+ connections (through the use of rustls
),
allowing for secure HTTP and WebSocket connections, as well as HTTP/HTTPS
proxies. This implies that the Light Client now also supports these types of
connections.
We additionally introduce two new crates:
tendermint-abci
- A lightweight, minimal framework for building Tendermint ABCI applications in Rust.tendermint-light-client-js
- Exposes the Light Client'sverify
method to JavaScript/WASM. This implies that, for now, you need to bring your own networking functionality to practically make use of the Light Client's verification mechanisms.
Various relatively minor breaking API changes were introduced, and are listed below.
[tendermint]
Thetendermint::block::CommitSig
enum's members have been renamed to be consistent with Rust's naming conventions. For example,BlockIDFlagAbsent
is now renamed toBlockIdFlagAbsent
(#839)[tendermint-light-client]
The Light Client no longer usestendermint::net::Address
to refer to peers, and instead uses thetendermint_rpc::Url
type (#835)[tendermint-rpc]
TheClient::validators
method now requires aPaging
parameter. Previously, this wasn't possible and, if the network had more than 30 validators (the default for the RPC endpoint), it only returned a subset of the validators (#831)[tendermint-rpc]
TheClient::validators
method now requires aPaging
parameter. Previously, this wasn't possible and, if the network had more than 30 validators (the default for the RPC endpoint), it only returned a subset of the validators (#831)[tendermint-rpc]
TheSubscriptionClient
trait now requires aclose
method, since it assumes that subscription clients will, in general, use long-running connections. This should not, however, break any downstream usage of the clients (#820)[tendermint-rpc]
TheHttpClient
andWebSocketClient
constructors now take any input that can be converted to atendermint_rpc::Url
. This should hopefully have minimal impact on projects using the code, but it might require some minor code changes in some cases - see the crate docs for more details (#820)[tendermint-rpc]
Theevent::EventData::GenericJSONEvent
member has been renamed toevent::EventData::GenericJsonEvent
(#839)[tendermint-testgen]
TheTMLightBlock
data structure has been renamed toTmLightBlock
to be consistent with Rust's naming conventions (#839)
[tendermint-abci]
Release minimal framework for building ABCI applications in Rust (#794)[tendermint-light-client]
The Light Client now provides support for secure (HTTPS) connections to nodes (#835)[tendermint-light-client-js]
First release of thetendermint-light-client-js
crate to provide access to Tendermint Light Client functionality from WASM. This only provides access to theverify
method at present, exclusively provides access to block verification. This does not include network access or the Light Client's bisection algorithm (#812)[tendermint-rpc]
Support for secure connections (https://
andwss://
) has been added to the Tendermint RPC clients, as well as support for HTTP proxies for HTTP clients (#820)[tendermint-rpc]
Atendermint-rpc
CLI has been added to simplify interaction with RPC endpoints from the command line (#820)
[tendermint]
IPv6 support has been added fornet::Address
(#5)[tendermint-rpc]
Addwait_until_healthy
utility method for RPC clients to poll the/health
endpoint of a node until it either returns successfully or times out (#855)
[tendermint-light-client]
Due to the RPC client'svalidators
method sometimes only returning a subset of validators (for networks larger than 30 validators), validator set hash calculations were failing. Now we are at least obtaining a full validator set (#831)[tendermint-rpc]
Fix intermittent deserialization failures of the consensus state response (#836)
Feb 10, 2021
The main focus for this minor release is fixing the rendering of our
tendermint-light-client
crate documentation.
[tendermint-proto]
Fix panic in evidence serialization in the case where we receive an empty evidence Protobuf structure (#782)[tendermint-light-node]
Upgradejsonrpc
dependency to v17.0 to fix security vulnerability inhyper
v0.12.35 (#803)[tendermint-light-client]
Fix rendering of documentation on docs.rs (#806)
Jan 29, 2021
This release is breaking due to significant dependency updates (see below).
It also introduces experimental support for
backward verification for the Light Client,
feature-guarded behind the unstable
feature.
The Light Client's storage system and its API were also improved.
[all]
Update all crates to use the latest version of the following dependencies: (#764)tokio
(1.0
)hyper
(0.14
)prost
(0.7
)bytes
(1.0
)async-tungstenite
(0.12
)
[light-client]
Add basic support for backward verification, behind aunstable
feature flag. (#361) Note: This feature is currently unstable and should not be relied on by downstream dependencies.
[light-client]
Fix potential block ordering problem with sled-based lightstore (#769)[light-client]
Improve the API of the light store. (#428)[light-client]
Thesled
-backed lightstore is now feature-guarded under thelightstore-sled
feature, which is enabled by default for now. (#428)
Jan 11, 2021
This release primarily focuses on fixing #774, which is critical to the Light Client's correct and reliable operation.
[rpc, tools]
The RPC probe has been moved into thetools
folder and can now be easily executed against a Tendermint node running the kvstore app by way of cargo make.tendermint-rpc
test coverage has been expanded here too. (#758)
[tendermint]
Time
values were not always formatted properly, causing the light client to sometimes return malformed light blocks (#774)
Dec 17, 2020
This release is a significant breaking upgrade from v0.16.0 that primarily targets compatibility with Tendermint v0.34 and the Cosmos Stargate release.
To highlight some of the major changes over the course of 3 release candidates and this release, we have:
- Provided Tendermint v0.34.0 compatibility.
- Supported the development of ibc-rs.
- Improved our model-based testing to provide complex test cases for the Light Client.
- Refactored our serialization infrastructure to remove all Amino types and ensure Protobuf compatibility (see the proto crate). This includes a lot of work towards clearly separating our domain types from their serialization types.
- Started work on our P2P layer towards the eventual goal of implementing a Tendermint full node.
- Started work towards offering a WASM-based Tendermint Light Client.
- Introduced a WebSocket-based RPC client for interacting with the Tendermint RPC, including event subscription.
Please see the following detailed release notes, as well as the crate documentation, for further details.
[rpc]
The RPC client interface has been refactored. TheClient
struct is nowHttpClient
and is enabled with thehttp-client
feature. It provides all RPC endpoints except the subscription related ones.[rpc]
The EventListener was replaced with a new and improved WebSocketClient for more robust event subscriptions. It can be enabled with thewebsocket-client
feature. Subscriptions are exposed using unbounded channels. (#516)[tendermint]
Removed all traces of Amino, includingamino_types
modules. All types are now "domain types" implementing theProtobuf
trait for Protobuf-encoding using Prost. (#504, #535, #536, #585)[tendermint]
Protocol breaking changes for compatibility with Tendermint Core v0.34 (and the Cosmos Stargate release) (#305):- Validators are now sorted by voting power (descending) and address (ascending). (#506)
- Remove PubKey field from DuplicateVoteEvidence (#502)
- Fix hash of empty Merkle tree to comply with RFC6962 (#498)
- All binary encoding is done via protobuf3 instead of amino (#504, #535, #536, #585)
- Various updates to JSON encoding (#505)
[tendermint]
Direct serialization capabilities have been removed from the domain types. (#639)[tendermint]
Work has started on making it compulsory to construct domain types by way of their constructors to ensure validity. (#639)
[light-client]
Introduce builder API for light client initialization (#583)[rpc]
The subscription client interface provides a structuredQuery
mechanism to help ensure compile-time validity of subscription queries. (#584)[rpc]
Support unsubscribing from events (#516)[spec]
TLA+ for the Tendermint consensus algorithm including proof forks can only be caused by +1/3 Byzantine validators committing equivocation or amnesia attacks. (#496)[spec]
English spec of light client attacks and evidence required to correctly handle them (#526)[tendermint]
Implementfmt::UpperHex
forTransaction
(#613)[tendermint/proto-compiler]
Protobuf structs generator now also accepts commit IDs from the Tendermint Go repository (#660)[testgen]
Various features and improvements to support model-based testing with the [Apalache model checker] (#414)
- [
light-client]
Start using model-based testing to test Light Client executions against traces emitted from the TLA+ model (#414) [light-client]
Only require Tokio whenrpc-client
feature is enabled (#425)[rpc]
AWebSocketClient
is now provided to facilitate event subscription for a limited range of RPC events over a WebSocket connection. See the Tendermint/subscribe
endpoint's and thetendermint-rpc
crate's docs for more details (#516)[rpc]
The subscription client interface provides a structuredQuery
mechanism to help ensure compile-time validity of subscription queries. See the crate docs and #584 for details.[rpc]
The RPC request and response types' fields are now all publicly accessible (#636).[rpc]
A new RPC probe (in therpc-probe
directory) has been added to facilitate quick, pre-scripted interactions with a Tendermint node (via its WebSocket endpoint). This aims to help improve testing and compatibility between Tendermint in Go and Rust. (#653)[rpc]
TheWebSocketClient
now adds support for all remaining RPC requests by way of implementing theClient
trait (#646)[rpc]
Support for thetx_search
RPC endpoint has been added (#701)[rpc]
Responses that include events now automatically have their tag key/value pairs decoded from base64, where previously tag key/value pairs were Base64-encoded (#717)[rpc]
Support for theconsensus_state
RPC endpoint has been added (#719)[tendermint]
Removetotal_voting_power
parameter fromvalidator::Set::new
(#739)[tendermint, rpc, light-client]
Crates now compile to WASM on thewasm32-unknown-unknown
andwasm32-wasi
targets (#463)[tendermint, light-client]
Specify the proposer in the validator set of fetched light blocks (#705)[tendermint-proto]
Upgrade protobuf definitions to Tendermint Go v0.34.0 (#737)[testgen]
Computelast_block_id
hash when generating aLightChain
(#745)- Dependency updates:
[light-client]
Fix bug where a commit with only absent signatures would be deemed valid instead of invalid (#650)[light-client]
Revert a change introduced in #652 that would enable DoS attacks, where full nodes could spam the light client with massive commits (eg. 10k validators).[rpc]
Correctly handles control and keep-alive messages (#516, #590)[rpc]
More robust handling of concurrency issues (#311, #313)
Aug 31, 2020
This release is the first release of the testgen utility, a generator for Tendermint types for unit and integration tests and for model-based testing. It is a utility for producing tendermint datastructures from minimal input, targeted for testing.
The release also contains various Rust API-breaking changes. It remains compatible with v0.33 of Tendermint Core.
lite
module was removed. Please take a look at the light-client crate.
- [repo] CHANGES.md renamed to CHANGELOG.md
- [tendermint] Eliminate use of
signatory
wrapper crate in favour of underlyinged25519-dalek
andk256
crates.ed25519-dalek
is now v1.0 andk256
provides a pure Rust implementation of secp256k1 rather than wrapping the C library (#522) - [tendermint] Remove
lite
andlite_impl
modules. See the newlight-client
crate (#500)
- [tendermint/proto] A tendermint-proto crate was created that contains the Rust structs for protobuf, preparing for compatibility with Tendermint Core v0.34 (#508)
- [tendermint/proto-compiler] A tendermint-proto-compiler crate was created that generates the tendermint-proto structs from the Tendermint Core Protobuf definitions.
- [testgen] Introduce the
testgen
crate for generating Tendermint types from minimal input (#468)
- [light-client] Use the
testgen
for generating tests - [light-client] Use primary error as context of
NoWitnessLeft
error (#477) - [repo] Various improvements to documentation and crate structure
- [repo] Add CONTRIBUTING.md document (#470)
- [specs] Updates to fork detection English spec for evidence handling in Tendermint and IBC (#479)
- [specs] Model checking results and updates for the fast sync TLA+ spec (#466)
- [light-client] Fix to reject headers from the future (#474)
July 17, 2020
This release is the first official release of the revamped light-client library and the light-node command-line interface. Together they provide a complete Tendermint light client implementation that performs squential and skipping verification and attempts to detect forks across its peers. Complete TLA+ specifications for light client verification are included, along with work-in-progress specs for fork detection. The implementation is compatible with v0.33 of Tendermint Core.
Note that both the light-client and light-node crates are to be considered experimental software that will still undergo a lot of improvements and iterations. The goal of releasing an early version of our Light Client is to make it accessible, to get people use it, and to receive feedback.
An overview of the current design of the light client is provided in ADR-006 and ADR-007.
- [repo] make secp256k1 dependency optional (#441)
- [light-client] Rewrite and expansion of
lite
, the prior light client verification module, into a new fully-featuredlight-client
crate. The crate provides a db, functions for complete light client verification, peer management, fork detection, and evidence reporting, along with extensive testing. Components are composed via aSupervisor
, which is run in its own thread, and exposes a Handle trait to broker access to underlying state and functionality. See the light-client crate for details. - [light-node] New binary crate with CLI for running the light client as a daemon, complete with an rpc server for querying the latest state of the light node while it syncs with the blockchain. See the light-node crate for details.
- [tendermint/validator] Sort validators by address on deserialization (#410)
- [tendermint/validator] Fix deserializing Update struct when power field is 0 (#451)
- [tendermint/abci] Fix DeliverTx response deserialization issues with gasWanted, gasUsed, and data fields (#432)
- [tendermint/lite_impl] Fix header.hash for height 1 (#438)
0.14.1 (2020-06-23)
- Update
prost-amino
/prost-amino-derive
to v0.6 (#367)
0.14.0 (2020-06-19)
This release mainly targets compatibility with Tendermint v0.33.x but contains a lot of smaller improvements regarding testing and (de)serialization. Also noteworthy is that the rpc module was broken out into a separate crate (tendermint-rpc).
CommitSig:
- Refactored CommitSig into a more Rust-friendly enum. (#247)
- Added CommitSig compatibility code to Absent vote (#260)
- Added CommitSig timestamp zero-check compatibility code (#259)
Testing:
- Configure integration test against latest tendermint-go to continue on error (#304)
- Add integration test to track tendermint-go v0.33.5 (#304)
- Remove test for hard-coded version in
abci_info
(#304)
Serialization:
- Refactor serializers library to use modules, give a nicer annotation to structs and separated into its own folder. (#247)
- Added nullable Vec serialization (#247)
- Moved/created tests for serialization in the same library and locked library to local crate (#263)
- Made serialization tests symmetric (#261)
RPC:
- Tendermint-Go v0.33 compatibility (#184)
abci_info
,abci_query
,block_results
,genesis
structs- serialization/deserialization fixes
- Updated/fixed integration tests
- Move into its own crate (#338)
- Feature guard
rpc::client
(makes networking an optional dependency) (#343)
- Feature guard
CI:
- Moved to GitHub Actions (#120)
- Updated crates.io badges (#120)
- Enabled integration tests in CI with Tendermint-Go node service (#120)
- Exclude changes in docs folder to trigger CI execution (#309)
0.13.0 (2020-04-20)
Dependencies:
- Update
signatory
requirement to v0.19 (#227)
Dependencies
- Update to bytes
0.5
and amino_rs0.5
. - Tokens for amino_rs are now fully non-conflicting with prost. Allowing both to be used together
- Made RPC type values optional for full compatibility with tendermint-go@v0.32:
abci_info
,abci_query
#120 - JSON ID is JSON specification compatible and accepts int, string or null - [#88]
This is the first release since this repository was split off from the KMS repo a few months ago and contains more than the usual number of changes. As the new repository matures we will be working towards a more robust release cycle.
This release also contains a first draft of the Tendermint Light Client :).
The changes are organized in sections for better readability.
Organizational Changes:
- Reorganized the crate into a workspace with a
tendermint
crate (#30) - Remove all optional compilation (#16)
- Started using CircleCI for continuous integration (#15)
- Fix clippy lints (#40, #55)
RPC Changes:
- Fix
/commit
endpoint to actually include the commit data (#42) - Use async/await for the rpc client (#85)
Type Changes:
- Add
Default
trait impls and some other utilities to data types (#64) - Fix transaction hash length to be 32-bytes (#14)
- Rename
LastCommit
toCommit
(#42) - Fix genesis file to include
validators
field (#65) - Change
max_gas
fromu64
toi64
(#61) - Allow
Height
to be0
(#77)
ABCI Changes:
- Include
AbciQuery
in theMethod
enum (#AbciQueryMethodEnum) - Fix deserializing ABCI Code field (#13)
- Fix ABCI data field to allow lower case hex encodings (#17)
- Fix
/abci_query
endpoint to take inputdata
as hex and returnkey
andvalue
in the response as base64 (#77)
Light Client:
-
Introduce validator
Set
type and compute Merkle root (#6) -
First draft implementation of logic for the light client ([#31, #36])
-
Dependency Changes:
-
Remove
secret_connection
andring
as dependencies (moved to KMS repo) (#60) -
tai64
from2
to3
(#22) -
zeroize
from0.9
to1.1
([#74, #89]) -
hyper
from0.10
to0.13
(#85) -
signatory
from0.12
to0.17
(#89) -
subtle-encoding
from0.3
to0.5
(#47) -
uuid
from0.7
to0.8
(#91) -
replace
rand_os
withgetrandom
(#90)
0.10.0 (2019-07-30)
This release is tested against tendermint v0.31 and known to be compatible with tendermint v0.32 aside from one known issue impacting RPC (#286).
- Fix inclusive range incompatibility affecting Rust nightly (#326)
- Derive Eq/Ord for (transitive) status types (#324)
- Add
TendermintConfig::load_node_key
(#315) - Add
TendermintConfig::load_genesis_file
(#312) - Add
TendermintConfig
andError(Kind)
types (#298) - Support
/abci_query
RPC endpoint (#296) - Implement the Tendermint (RFC6962) Merkle tree (#292)
- Support
account::Id
generation from ed25519 pubkeys (#291)
0.9.0 (2019-06-24)
This release is compatible with tendermint v0.31
- Reject low order points in Secret Connection handshake (#279)
- Add
RemoteErrorCode
enum (#272) - Add
msg_type()
accessor for signature types (#271)
0.8.0 (2019-06-20)
This release is compatible with tendermint v0.31
0.7.0 (2019-04-24)
This release is compatible with tendermint v0.31
- Initial JSONRPC over HTTP client +
/broadcast_tx_*
endpoints (#243) - Initial RPC support (#235)
- Disallow a block height of 0 (#234)
0.6.0 (2019-04-16)
This release is compatible with tendermint v0.31
- Add
tendermint::Address
,tendermint::account::Id
,tendermint::Moniker
, and improveserde
serializer support (#228).
0.5.0 (2019-03-13)
This release is compatible with tendermint v0.30
- Rename
SecretConnectionKey
tosecret_connection::PublicKey
, addsecret_connection::PeerId
(#219) - Move
ConsensusState
underchain::state
(#205)
- Skipped to synchronize versions with
tmkms
- Support for secp256k1 keys (#181)
This release is compatible with tendermint v0.29
- Update to x25519-dalek v0.4.4 (#158)
- Consistent ordering of
BlockID
andTimestamps
in vote and proposal messages (#159) - Remove
PoisonPillMsg
previously used to shut-down the kms (#162)
This release is compatible with tendermint v0.28
- Split
PubKeyMsg
intoPubKeyRequest
andPubKeyResponse
(#141) - Migrate to Rust 2018 edition (#138)
- Allow empty BlockIds in validation method (#131)
- Prefix bech32 encoding of consensus keys with amino prefix (#128)
- Update to subtle-encoding v0.3 (#124)
- Introduce same validation logic as Tendermint (#110)
- Remove heartbeat (#105)
- Minor clarifications/fixes (#103)
- Initial release