Skip to content

Latest commit

 

History

History
155 lines (115 loc) · 6.75 KB

CHANGELOG.md

File metadata and controls

155 lines (115 loc) · 6.75 KB

Changelog

v1.0.4

Feb 25, 2022

  • Apply changes up to tendermint v0.34.14

BREAKING CHANGE

  • Nothing

FEATURES

  • Nothing

IMPROVEMENTS

  • [backport/tendermint] #361 Main patch tm-v0.34.12
  • [backport/tendermint] #364 Main patch tm-v0.34.13
  • [backport/tendermint] #366 Main patch tm v0.34.14

BUG FIXES

  • Nothing

v1.0.3

Jan 20, 2022

  • Improve p2p/peer reactor so as not to abandon the message
  • Apply changes up to tendermint v0.34.11

BREAKING CHANGE

  • Nothing

FEATURES

  • Nothing

IMPROVEMENTS

  • [p2p/peer] #341 Remove default case
  • [github] #346 Add CODEOWNERS
  • [backport/tendermint] #349 Main patch from tm-v0.34.9
  • [lint] #356 Upgrade to super-linter-v4 for avoiding broken version
  • [backport/tendermint] #358 Main patch from tm-v0.34.10
  • [backport/tendermint] #359 Main patch tm-v0.34.11

BUG FIXES

  • [consensus] #345 fix: Modify omission of change to change ValidatorSet to VoterSet for marverick
  • [version] #348 Fix version.go (Rollback to only use OCCoreSemVer)

v1.0.2

Nov 08, 2021

  • Fix bugs
  • Improve crypto/composite key

BREAKING CHANGES

  • Nothing

FEATURES

  • Nothing

IMPROVEMENTS

  • [test] #327 Add libsodium test on Github Actions
  • [crypto/composite] #335 Improve composite key Bytes/FromBytes and make tools
  • [security] #336 Remove unused package-lock.json
  • [bot] #337 Improve dependabot

BUG FIXES

  • [test] #338 bugfix: wrong binary name
  • [consensus] #340 Modify omission of change to change ValidatorSet to VoterSet

v1.0.1

Sep 30, 2021

  • Improved performances
  • Improved interfaces for abci/light client
  • Add max txs per block
  • Make documents for VRF/BLS
  • Fixed test environments

BREAKING CHANGES

  • Nothing

FEATURES

  • [performance] #287 perf: improve performance and modify some abci
  • [abci] #312 Add VotingPower to abci.Evidence
  • [light] #313 fix: modify verifying interface for integrating lfb
  • [mempool] #317 feat: added max txs per block to config.toml
  • [logging] #324 chore: added extra timing info regarding block generation
  • [docs] #294 doc: [ja] Add ostracon-specific VRF+BLS feature documents
  • [docs] #304 doc: [en] Add ostracon-specific VRF+BLS feature documents

BUG FIXES

  • [test] #290 Fix broken Github Actions environments of main branch
  • [test] #301 Enable maverick node for e2e test
  • [test] #297 Support for VRF implementation with libsodium
  • [test] #303 Update libsodium impl and add benchmark test
  • [test] #307 Remove t.Skip in testcases
  • [test] #315 Support arm64 and arm
  • [test] #319 Fix the test case that often fails

v1.0.0

Jun 29, 2021

  • Changed from the consensus way which the entire validator agrees to a part of the validators is elected as a voter to consensus. The selected validator is called voter
  • The voter to be elected has been changed so that it can be determined in the n-1 block from the one determined by the n-2 block.
  • A BLS signature library was added. The ability to use the BLS signature library will be added in the next version.
  • When distributing rewards in Cosmos-SDK, some ABCIs have been modified to distribute the voting power of elected voters.

BREAKING CHANGES

  • State
    • [state] #92 Add VoterParams to Genesis state
    • [state] #100 Remove NextVoters from state
  • Go API
    • [types] #83 Add StakingPower to Validator
    • [consensus] #83 Change calculation of VotingPower
  • Blockchain Protocol
    • [state] #7 Add round, proof in block
  • P2P Protocol
    • [abci] #100 Add voters_hash field, which is needed for verification of a block header
    • [abci] #102 Add voting power in VoterInfo of abci

FEATURES

  • [types] #40 Add vrf interface and add a function generating vrf proof to PrivValidator
  • [lib/rand] #43 Implementation of selection algorithms using categorical distributions
  • [state] #44 Add genesis seed for electing proposer of first block
  • [types] #48 Replace tendermint's PoS to VRF-based Random Sampling
  • [rpc] #78 Add Voters rpc
  • [consensus] #83 Selection voters using random sampling without replacement
  • [consensus] #92 Apply calculation of voter count
  • [BLS] #81 Modify to generate at the same time as Ed25519 key generation
  • [lite] #100 Lite calls Genesis() rpc when it starts up

BUG FIXES

  • [circleCI] #76 Fix contract test job of circleCI

v0.0.0

Mar 15, 2021

This release rewrite to ostracon.

PreHistory

Initial ostracon is based on the tendermint v0.34.8

[tendermint v0.34.8] - 2021-02-25

Please refer CHANGELOG_OF_TENDERMINT_v0.34.8