Skip to content
This repository has been archived by the owner on Apr 17, 2019. It is now read-only.

Hyperledger Iroha v1.0 Release Candidate 5

Latest
Compare
Choose a tag to compare
@LiraLemur LiraLemur released this 21 Mar 12:44
ed579f8

HL Iroha team is happy to present the new Release Candidate.
Here are some changes that we implemented in this release:

Pluggable Consensus: hyperledger/iroha#2125

iroha::consensus::yac::SupermajorityChecker interface now has two implementations: a BFT and a CFT checker. Besides that all the signature-related logic was put away from that interface, and it now operates solely on numbers.
Set to BFT by default.

New logger! hyperledger/iroha#2126

Read more here: https://iroha.readthedocs.io/en/latest/guides/configuration.html#logging

Markdown to RST docs configuration: hyperledger/iroha#2146

Now Markdown files from the repository can be referenced in the ReadTheDocs documentation!
We also improved build documentation: hyperledger/iroha#2162

Updated ed25519 cryptography to 2.0.1: hyperledger/iroha#2157

YAC storage cleanup: hyperledger/iroha#1947

Old rounds are now cleaned up and that improves stability
StorageImpl: faster cleanup: hyperledger/iroha#2174

Added installation security tips to documentation

So you could make sure you use Iroha securely: hyperledger/iroha#2129

Updated configuration template for docker deployment: hyperledger/iroha#2158

and added documentation for new parameters: hyperledger/iroha#2173

Storage now only notifies subscribers of newly committed blocks after they have been actually applied to the ledger: hyperledger/iroha#2179

Before, notification could be sent prior to actual commit which is not considered as correct behaviour.

Synchroniser subscription update: hyperledger/iroha#2160

Now if the synchroniser is waiting for the block for too long, it will break the connection. Also, if the block is failed to be checked, further blocks will not be received from that peer.

Debug deb packages support: hyperledger/iroha#2144

Decrease quantity of allocated proto query objects: hyperledger/iroha#2148

Another improvement reducing memory consumption

Now Iroha version is available through --version argument and in log pattern: hyperledger/iroha#2127

Added different Cmake sanitizers: hyperledger/iroha#2131

Added a fix for direct propagation in YAC. If a peer sends a vote for the old round, Iroha will share last finalized state: https://github.com/hyperledger/iroha/pull/2139

Refactored ordering service queues: hyperledger/iroha#2150

Got rid of consensus race by changing round queue management: hyperledger/iroha#2151

Fixed race bug in command service: hyperledger/iroha#2167

Made YAC accept votes only from peers that it knows: hyperledger/iroha#2134

Created block storage dependency for mutable storage: hyperledger/iroha#1994

Added fix for status stream initialization: hyperledger/iroha#2169

If runtime cache doesn't contain any value we are going to check the persistent cache for the value.

Fixed hash set usage in OS. Fixed block leaks in YacGate and Simulator: hyperledger/iroha#2170

Made most block manipulation functions of storage take constant blocks by shared pointer: hyperledger/iroha#2178

Added implementation of BlockStorage interface based on FlatFile: hyperledger/iroha#2180