You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

791 lines
30 KiB

7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
p2p: introduce peerConn to simplify peer creation (#1226) * expose AuthEnc in the P2P config if AuthEnc is true, dialed peers must have a node ID in the address and it must match the persistent pubkey from the secret handshake. Refs #1157 * fixes after my own review * fix docs * fix build failure ``` p2p/pex/pex_reactor_test.go:288:88: cannot use seed.NodeInfo().NetAddress() (type *p2p.NetAddress) as type string in array or slice literal ``` * p2p: introduce peerConn to simplify peer creation * Introduce `peerConn` containing the known fields of `peer` * `peer` only created in `sw.addPeer` once handshake is complete and NodeInfo is checked * Eliminates some mutable variables and makes the code flow better * Simplifies the `newXxxPeer` funcs * Use ID instead of PubKey where possible. * SetPubKeyFilter -> SetIDFilter * nodeInfo.Validate takes ID * remove peer.PubKey() * persistent node ids * fixes from review * test: use ip_plus_id.sh more * fix invalid memory panic during fast_sync test ``` 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: panic: runtime error: invalid memory address or nil pointer dereference 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: [signal SIGSEGV: segmentation violation code=0x1 addr=0x20 pc=0x98dd3e] 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: goroutine 3432 [running]: 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: github.com/tendermint/tendermint/p2p.newOutboundPeerConn(0xc423fd1380, 0xc420933e00, 0x1, 0x1239a60, 0 xc420128c40, 0x2, 0x42caf6, 0xc42001f300, 0xc422831d98, 0xc4227951c0, ...) 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: #011/go/src/github.com/tendermint/tendermint/p2p/peer.go:123 +0x31e 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: github.com/tendermint/tendermint/p2p.(*Switch).addOutboundPeerWithConfig(0xc4200ad040, 0xc423fd1380, 0 xc420933e00, 0xc423f48801, 0x28, 0x2) 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: #011/go/src/github.com/tendermint/tendermint/p2p/switch.go:455 +0x12b 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: github.com/tendermint/tendermint/p2p.(*Switch).DialPeerWithAddress(0xc4200ad040, 0xc423fd1380, 0x1, 0x 0, 0x0) 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: #011/go/src/github.com/tendermint/tendermint/p2p/switch.go:371 +0xdc 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: github.com/tendermint/tendermint/p2p.(*Switch).reconnectToPeer(0xc4200ad040, 0x123e000, 0xc42007bb00) 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: #011/go/src/github.com/tendermint/tendermint/p2p/switch.go:290 +0x25f 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: created by github.com/tendermint/tendermint/p2p.(*Switch).StopPeerForError 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: #011/go/src/github.com/tendermint/tendermint/p2p/switch.go:256 +0x1b7 ```
6 years ago
p2p: introduce peerConn to simplify peer creation (#1226) * expose AuthEnc in the P2P config if AuthEnc is true, dialed peers must have a node ID in the address and it must match the persistent pubkey from the secret handshake. Refs #1157 * fixes after my own review * fix docs * fix build failure ``` p2p/pex/pex_reactor_test.go:288:88: cannot use seed.NodeInfo().NetAddress() (type *p2p.NetAddress) as type string in array or slice literal ``` * p2p: introduce peerConn to simplify peer creation * Introduce `peerConn` containing the known fields of `peer` * `peer` only created in `sw.addPeer` once handshake is complete and NodeInfo is checked * Eliminates some mutable variables and makes the code flow better * Simplifies the `newXxxPeer` funcs * Use ID instead of PubKey where possible. * SetPubKeyFilter -> SetIDFilter * nodeInfo.Validate takes ID * remove peer.PubKey() * persistent node ids * fixes from review * test: use ip_plus_id.sh more * fix invalid memory panic during fast_sync test ``` 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: panic: runtime error: invalid memory address or nil pointer dereference 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: [signal SIGSEGV: segmentation violation code=0x1 addr=0x20 pc=0x98dd3e] 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: goroutine 3432 [running]: 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: github.com/tendermint/tendermint/p2p.newOutboundPeerConn(0xc423fd1380, 0xc420933e00, 0x1, 0x1239a60, 0 xc420128c40, 0x2, 0x42caf6, 0xc42001f300, 0xc422831d98, 0xc4227951c0, ...) 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: #011/go/src/github.com/tendermint/tendermint/p2p/peer.go:123 +0x31e 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: github.com/tendermint/tendermint/p2p.(*Switch).addOutboundPeerWithConfig(0xc4200ad040, 0xc423fd1380, 0 xc420933e00, 0xc423f48801, 0x28, 0x2) 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: #011/go/src/github.com/tendermint/tendermint/p2p/switch.go:455 +0x12b 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: github.com/tendermint/tendermint/p2p.(*Switch).DialPeerWithAddress(0xc4200ad040, 0xc423fd1380, 0x1, 0x 0, 0x0) 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: #011/go/src/github.com/tendermint/tendermint/p2p/switch.go:371 +0xdc 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: github.com/tendermint/tendermint/p2p.(*Switch).reconnectToPeer(0xc4200ad040, 0x123e000, 0xc42007bb00) 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: #011/go/src/github.com/tendermint/tendermint/p2p/switch.go:290 +0x25f 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: created by github.com/tendermint/tendermint/p2p.(*Switch).StopPeerForError 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: #011/go/src/github.com/tendermint/tendermint/p2p/switch.go:256 +0x1b7 ```
6 years ago
p2p: introduce peerConn to simplify peer creation (#1226) * expose AuthEnc in the P2P config if AuthEnc is true, dialed peers must have a node ID in the address and it must match the persistent pubkey from the secret handshake. Refs #1157 * fixes after my own review * fix docs * fix build failure ``` p2p/pex/pex_reactor_test.go:288:88: cannot use seed.NodeInfo().NetAddress() (type *p2p.NetAddress) as type string in array or slice literal ``` * p2p: introduce peerConn to simplify peer creation * Introduce `peerConn` containing the known fields of `peer` * `peer` only created in `sw.addPeer` once handshake is complete and NodeInfo is checked * Eliminates some mutable variables and makes the code flow better * Simplifies the `newXxxPeer` funcs * Use ID instead of PubKey where possible. * SetPubKeyFilter -> SetIDFilter * nodeInfo.Validate takes ID * remove peer.PubKey() * persistent node ids * fixes from review * test: use ip_plus_id.sh more * fix invalid memory panic during fast_sync test ``` 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: panic: runtime error: invalid memory address or nil pointer dereference 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: [signal SIGSEGV: segmentation violation code=0x1 addr=0x20 pc=0x98dd3e] 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: goroutine 3432 [running]: 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: github.com/tendermint/tendermint/p2p.newOutboundPeerConn(0xc423fd1380, 0xc420933e00, 0x1, 0x1239a60, 0 xc420128c40, 0x2, 0x42caf6, 0xc42001f300, 0xc422831d98, 0xc4227951c0, ...) 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: #011/go/src/github.com/tendermint/tendermint/p2p/peer.go:123 +0x31e 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: github.com/tendermint/tendermint/p2p.(*Switch).addOutboundPeerWithConfig(0xc4200ad040, 0xc423fd1380, 0 xc420933e00, 0xc423f48801, 0x28, 0x2) 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: #011/go/src/github.com/tendermint/tendermint/p2p/switch.go:455 +0x12b 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: github.com/tendermint/tendermint/p2p.(*Switch).DialPeerWithAddress(0xc4200ad040, 0xc423fd1380, 0x1, 0x 0, 0x0) 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: #011/go/src/github.com/tendermint/tendermint/p2p/switch.go:371 +0xdc 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: github.com/tendermint/tendermint/p2p.(*Switch).reconnectToPeer(0xc4200ad040, 0x123e000, 0xc42007bb00) 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: #011/go/src/github.com/tendermint/tendermint/p2p/switch.go:290 +0x25f 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: created by github.com/tendermint/tendermint/p2p.(*Switch).StopPeerForError 2018-02-21T06:30:05Z box887.localdomain docker/local_testnet_4[14907]: #011/go/src/github.com/tendermint/tendermint/p2p/switch.go:256 +0x1b7 ```
6 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. # Changelog
  2. ## 0.19.7
  3. BREAKING:
  4. - [libs/pubsub] TagMap#Get returns a string value
  5. - [libs/pubsub] NewTagMap accepts a map of strings
  6. FEATURES
  7. - [rpc] the RPC documentation is now published to https://tendermint.github.io/slate
  8. - [p2p] AllowDuplicateIP config option to refuse connections from same IP.
  9. - true by default for now, false by default in next breaking release
  10. - [docs] Add docs for query, tx indexing, events, pubsub
  11. IMPROVEMENTS:
  12. - [consensus] consensus reactor now receives events from a separate event bus,
  13. which is not dependant on external RPC load
  14. - [consensus/wal] do not look for height in older files if we've seen height - 1
  15. - [docs] Various cleanup and link fixes
  16. ## 0.19.6
  17. *May 29th, 2018*
  18. BUG FIXES
  19. - [blockchain] Fix fast-sync deadlock during high peer turnover
  20. ## 0.19.5
  21. *May 20th, 2018*
  22. BREAKING CHANGES
  23. - [rpc/client] TxSearch and UnconfirmedTxs have new arguments (see below)
  24. - [rpc/client] TxSearch returns ResultTxSearch
  25. - [version] Breaking changes to Go APIs will not be reflected in breaking
  26. version change, but will be included in changelog.
  27. FEATURES
  28. - [rpc] `/tx_search` takes `page` (starts at 1) and `per_page` (max 100, default 30) args to paginate results
  29. - [rpc] `/unconfirmed_txs` takes `limit` (max 100, default 30) arg to limit the output
  30. - [config] `mempool.size` and `mempool.cache_size` options
  31. IMPROVEMENTS
  32. - [docs] Lots of updates
  33. - [consensus] Only Fsync() the WAL before executing msgs from ourselves
  34. BUG FIXES
  35. - [mempool] Enforce upper bound on number of transactions
  36. ## 0.19.4 (May 17th, 2018)
  37. IMPROVEMENTS
  38. - [state] Improve tx indexing by using batches
  39. - [consensus, state] Improve logging (more consensus logs, fewer tx logs)
  40. - [spec] Moved to `docs/spec` (TODO cleanup the rest of the docs ...)
  41. BUG FIXES
  42. - [consensus] Fix issue #1575 where a late proposer can get stuck
  43. ## 0.19.3 (May 14th, 2018)
  44. FEATURES
  45. - [rpc] New `/consensus_state` returns just the votes seen at the current height
  46. IMPROVEMENTS
  47. - [rpc] Add stringified votes and fraction of power voted to `/dump_consensus_state`
  48. - [rpc] Add PeerStateStats to `/dump_consensus_state`
  49. BUG FIXES
  50. - [cmd] Set GenesisTime during `tendermint init`
  51. - [consensus] fix ValidBlock rules
  52. ## 0.19.2 (April 30th, 2018)
  53. FEATURES:
  54. - [p2p] Allow peers with different Minor versions to connect
  55. - [rpc] `/net_info` includes `n_peers`
  56. IMPROVEMENTS:
  57. - [p2p] Various code comments, cleanup, error types
  58. - [p2p] Change some Error logs to Debug
  59. BUG FIXES:
  60. - [p2p] Fix reconnect to persistent peer when first dial fails
  61. - [p2p] Validate NodeInfo.ListenAddr
  62. - [p2p] Only allow (MaxNumPeers - MaxNumOutboundPeers) inbound peers
  63. - [p2p/pex] Limit max msg size to 64kB
  64. - [p2p] Fix panic when pex=false
  65. - [p2p] Allow multiple IPs per ID in AddrBook
  66. - [p2p] Fix before/after bugs in addrbook isBad()
  67. ## 0.19.1 (April 27th, 2018)
  68. Note this release includes some small breaking changes in the RPC and one in the
  69. config that are really bug fixes. v0.19.1 will work with existing chains, and make Tendermint
  70. easier to use and debug. With <3
  71. BREAKING (MINOR)
  72. - [config] Removed `wal_light` setting. If you really needed this, let us know
  73. FEATURES:
  74. - [networks] moved in tooling from devops repo: terraform and ansible scripts for deploying testnets !
  75. - [cmd] Added `gen_node_key` command
  76. BUG FIXES
  77. Some of these are breaking in the RPC response, but they're really bugs!
  78. - [spec] Document address format and pubkey encoding pre and post Amino
  79. - [rpc] Lower case JSON field names
  80. - [rpc] Fix missing entries, improve, and lower case the fields in `/dump_consensus_state`
  81. - [rpc] Fix NodeInfo.Channels format to hex
  82. - [rpc] Add Validator address to `/status`
  83. - [rpc] Fix `prove` in ABCIQuery
  84. - [cmd] MarshalJSONIndent on init
  85. ## 0.19.0 (April 13th, 2018)
  86. BREAKING:
  87. - [cmd] improved `testnet` command; now it can fill in `persistent_peers` for you in the config file and much more (see `tendermint testnet --help` for details)
  88. - [cmd] `show_node_id` now returns an error if there is no node key
  89. - [rpc]: changed the output format for the `/status` endpoint (see https://godoc.org/github.com/tendermint/tendermint/rpc/core#Status)
  90. Upgrade from go-wire to go-amino. This is a sweeping change that breaks everything that is
  91. serialized to disk or over the network.
  92. See github.com/tendermint/go-amino for details on the new format.
  93. See `scripts/wire2amino.go` for a tool to upgrade
  94. genesis/priv_validator/node_key JSON files.
  95. FEATURES
  96. - [test] docker-compose for local testnet setup (thanks Greg!)
  97. ## 0.18.0 (April 6th, 2018)
  98. BREAKING:
  99. - [types] Merkle tree uses different encoding for varints (see tmlibs v0.8.0)
  100. - [types] ValidtorSet.GetByAddress returns -1 if no validator found
  101. - [p2p] require all addresses come with an ID no matter what
  102. - [rpc] Listening address must contain tcp:// or unix:// prefix
  103. FEATURES:
  104. - [rpc] StartHTTPAndTLSServer (not used yet)
  105. - [rpc] Include validator's voting power in `/status`
  106. - [rpc] `/tx` and `/tx_search` responses now include the transaction hash
  107. - [rpc] Include peer NodeIDs in `/net_info`
  108. IMPROVEMENTS:
  109. - [config] trim whitespace from elements of lists (like `persistent_peers`)
  110. - [rpc] `/tx_search` results are sorted by height
  111. - [p2p] do not try to connect to ourselves (ok, maybe only once)
  112. - [p2p] seeds respond with a bias towards good peers
  113. BUG FIXES:
  114. - [rpc] fix subscribing using an abci.ResponseDeliverTx tag
  115. - [rpc] fix tx_indexers matchRange
  116. - [rpc] fix unsubscribing (see tmlibs v0.8.0)
  117. ## 0.17.1 (March 27th, 2018)
  118. BUG FIXES:
  119. - [types] Actually support `app_state` in genesis as `AppStateJSON`
  120. ## 0.17.0 (March 27th, 2018)
  121. BREAKING:
  122. - [types] WriteSignBytes -> SignBytes
  123. IMPROVEMENTS:
  124. - [all] renamed `dummy` (`persistent_dummy`) to `kvstore` (`persistent_kvstore`) (name "dummy" is deprecated and will not work in the next breaking release)
  125. - [docs] note on determinism (docs/determinism.rst)
  126. - [genesis] `app_options` field is deprecated. please rename it to `app_state` in your genesis file(s). `app_options` will not work in the next breaking release
  127. - [p2p] dial seeds directly without potential peers
  128. - [p2p] exponential backoff for addrs in the address book
  129. - [p2p] mark peer as good if it contributed enough votes or block parts
  130. - [p2p] stop peer if it sends incorrect data, msg to unknown channel, msg we did not expect
  131. - [p2p] when `auth_enc` is true, all dialed peers must have a node ID in their address
  132. - [spec] various improvements
  133. - switched from glide to dep internally for package management
  134. - [wire] prep work for upgrading to new go-wire (which is now called go-amino)
  135. FEATURES:
  136. - [config] exposed `auth_enc` flag to enable/disable encryption
  137. - [config] added the `--p2p.private_peer_ids` flag and `PrivatePeerIDs` config variable (see config for description)
  138. - [rpc] added `/health` endpoint, which returns empty result for now
  139. - [types/priv_validator] new format and socket client, allowing for remote signing
  140. BUG FIXES:
  141. - [consensus] fix liveness bug by introducing ValidBlock mechanism
  142. ## 0.16.0 (February 20th, 2018)
  143. BREAKING CHANGES:
  144. - [config] use $TMHOME/config for all config and json files
  145. - [p2p] old `--p2p.seeds` is now `--p2p.persistent_peers` (persistent peers to which TM will always connect to)
  146. - [p2p] now `--p2p.seeds` only used for getting addresses (if addrbook is empty; not persistent)
  147. - [p2p] NodeInfo: remove RemoteAddr and add Channels
  148. - we must have at least one overlapping channel with peer
  149. - we only send msgs for channels the peer advertised
  150. - [p2p/conn] pong timeout
  151. - [lite] comment out IAVL related code
  152. FEATURES:
  153. - [p2p] added new `/dial_peers&persistent=_` **unsafe** endpoint
  154. - [p2p] persistent node key in `$THMHOME/config/node_key.json`
  155. - [p2p] introduce peer ID and authenticate peers by ID using addresses like `ID@IP:PORT`
  156. - [p2p/pex] new seed mode crawls the network and serves as a seed.
  157. - [config] MempoolConfig.CacheSize
  158. - [config] P2P.SeedMode (`--p2p.seed_mode`)
  159. IMPROVEMENT:
  160. - [p2p/pex] stricter rules in the PEX reactor for better handling of abuse
  161. - [p2p] various improvements to code structure including subpackages for `pex` and `conn`
  162. - [docs] new spec!
  163. - [all] speed up the tests!
  164. BUG FIX:
  165. - [blockchain] StopPeerForError on timeout
  166. - [consensus] StopPeerForError on a bad Maj23 message
  167. - [state] flush mempool conn before calling commit
  168. - [types] fix priv val signing things that only differ by timestamp
  169. - [mempool] fix memory leak causing zombie peers
  170. - [p2p/conn] fix potential deadlock
  171. ## 0.15.0 (December 29, 2017)
  172. BREAKING CHANGES:
  173. - [p2p] enable the Peer Exchange reactor by default
  174. - [types] add Timestamp field to Proposal/Vote
  175. - [types] add new fields to Header: TotalTxs, ConsensusParamsHash, LastResultsHash, EvidenceHash
  176. - [types] add Evidence to Block
  177. - [types] simplify ValidateBasic
  178. - [state] updates to support changes to the header
  179. - [state] Enforce <1/3 of validator set can change at a time
  180. FEATURES:
  181. - [state] Send indices of absent validators and addresses of byzantine validators in BeginBlock
  182. - [state] Historical ConsensusParams and ABCIResponses
  183. - [docs] Specification for the base Tendermint data structures.
  184. - [evidence] New evidence reactor for gossiping and managing evidence
  185. - [rpc] `/block_results?height=X` returns the DeliverTx results for a given height.
  186. IMPROVEMENTS:
  187. - [consensus] Better handling of corrupt WAL file
  188. BUG FIXES:
  189. - [lite] fix race
  190. - [state] validate block.Header.ValidatorsHash
  191. - [p2p] allow seed addresses to be prefixed with eg. `tcp://`
  192. - [p2p] use consistent key to refer to peers so we dont try to connect to existing peers
  193. - [cmd] fix `tendermint init` to ignore files that are there and generate files that aren't.
  194. ## 0.14.0 (December 11, 2017)
  195. BREAKING CHANGES:
  196. - consensus/wal: removed separator
  197. - rpc/client: changed Subscribe/Unsubscribe/UnsubscribeAll funcs signatures to be identical to event bus.
  198. FEATURES:
  199. - new `tendermint lite` command (and `lite/proxy` pkg) for running a light-client RPC proxy.
  200. NOTE it is currently insecure and its APIs are not yet covered by semver
  201. IMPROVEMENTS:
  202. - rpc/client: can act as event bus subscriber (See https://github.com/tendermint/tendermint/issues/945).
  203. - p2p: use exponential backoff from seconds to hours when attempting to reconnect to persistent peer
  204. - config: moniker defaults to the machine's hostname instead of "anonymous"
  205. BUG FIXES:
  206. - p2p: no longer exit if one of the seed addresses is incorrect
  207. ## 0.13.0 (December 6, 2017)
  208. BREAKING CHANGES:
  209. - abci: update to v0.8 using gogo/protobuf; includes tx tags, vote info in RequestBeginBlock, data.Bytes everywhere, use int64, etc.
  210. - types: block heights are now `int64` everywhere
  211. - types & node: EventSwitch and EventCache have been replaced by EventBus and EventBuffer; event types have been overhauled
  212. - node: EventSwitch methods now refer to EventBus
  213. - rpc/lib/types: RPCResponse is no longer a pointer; WSRPCConnection interface has been modified
  214. - rpc/client: WaitForOneEvent takes an EventsClient instead of types.EventSwitch
  215. - rpc/client: Add/RemoveListenerForEvent are now Subscribe/Unsubscribe
  216. - rpc/core/types: ResultABCIQuery wraps an abci.ResponseQuery
  217. - rpc: `/subscribe` and `/unsubscribe` take `query` arg instead of `event`
  218. - rpc: `/status` returns the LatestBlockTime in human readable form instead of in nanoseconds
  219. - mempool: cached transactions return an error instead of an ABCI response with BadNonce
  220. FEATURES:
  221. - rpc: new `/unsubscribe_all` WebSocket RPC endpoint
  222. - rpc: new `/tx_search` endpoint for filtering transactions by more complex queries
  223. - p2p/trust: new trust metric for tracking peers. See ADR-006
  224. - config: TxIndexConfig allows to set what DeliverTx tags to index
  225. IMPROVEMENTS:
  226. - New asynchronous events system using `tmlibs/pubsub`
  227. - logging: Various small improvements
  228. - consensus: Graceful shutdown when app crashes
  229. - tests: Fix various non-deterministic errors
  230. - p2p: more defensive programming
  231. BUG FIXES:
  232. - consensus: fix panic where prs.ProposalBlockParts is not initialized
  233. - p2p: fix panic on bad channel
  234. ## 0.12.1 (November 27, 2017)
  235. BUG FIXES:
  236. - upgrade tmlibs dependency to enable Windows builds for Tendermint
  237. ## 0.12.0 (October 27, 2017)
  238. BREAKING CHANGES:
  239. - rpc/client: websocket ResultsCh and ErrorsCh unified in ResponsesCh.
  240. - rpc/client: ABCIQuery no longer takes `prove`
  241. - state: remove GenesisDoc from state.
  242. - consensus: new binary WAL format provides efficiency and uses checksums to detect corruption
  243. - use scripts/wal2json to convert to json for debugging
  244. FEATURES:
  245. - new `certifiers` pkg contains the tendermint light-client library (name subject to change)!
  246. - rpc: `/genesis` includes the `app_options` .
  247. - rpc: `/abci_query` takes an additional `height` parameter to support historical queries.
  248. - rpc/client: new ABCIQueryWithOptions supports options like `trusted` (set false to get a proof) and `height` to query a historical height.
  249. IMPROVEMENTS:
  250. - rpc: `/genesis` result includes `app_options`
  251. - rpc/lib/client: add jitter to reconnects.
  252. - rpc/lib/types: `RPCError` satisfies the `error` interface.
  253. BUG FIXES:
  254. - rpc/client: fix ws deadlock after stopping
  255. - blockchain: fix panic on AddBlock when peer is nil
  256. - mempool: fix sending on TxsAvailable when a tx has been invalidated
  257. - consensus: dont run WAL catchup if we fast synced
  258. ## 0.11.1 (October 10, 2017)
  259. IMPROVEMENTS:
  260. - blockchain/reactor: respondWithNoResponseMessage for missing height
  261. BUG FIXES:
  262. - rpc: fixed client WebSocket timeout
  263. - rpc: client now resubscribes on reconnection
  264. - rpc: fix panics on missing params
  265. - rpc: fix `/dump_consensus_state` to have normal json output (NOTE: technically breaking, but worth a bug fix label)
  266. - types: fixed out of range error in VoteSet.addVote
  267. - consensus: fix wal autofile via https://github.com/tendermint/tmlibs/blob/master/CHANGELOG.md#032-october-2-2017
  268. ## 0.11.0 (September 22, 2017)
  269. BREAKING:
  270. - genesis file: validator `amount` is now `power`
  271. - abci: Info, BeginBlock, InitChain all take structs
  272. - rpc: various changes to match JSONRPC spec (http://www.jsonrpc.org/specification), including breaking ones:
  273. - requests that previously returned HTTP code 4XX now return 200 with an error code in the JSONRPC.
  274. - `rpctypes.RPCResponse` uses new `RPCError` type instead of `string`.
  275. - cmd: if there is no genesis, exit immediately instead of waiting around for one to show.
  276. - types: `Signer.Sign` returns an error.
  277. - state: every validator set change is persisted to disk, which required some changes to the `State` structure.
  278. - p2p: new `p2p.Peer` interface used for all reactor methods (instead of `*p2p.Peer` struct).
  279. FEATURES:
  280. - rpc: `/validators?height=X` allows querying of validators at previous heights.
  281. - rpc: Leaving the `height` param empty for `/block`, `/validators`, and `/commit` will return the value for the latest height.
  282. IMPROVEMENTS:
  283. - docs: Moved all docs from the website and tools repo in, converted to `.rst`, and cleaned up for presentation on `tendermint.readthedocs.io`
  284. BUG FIXES:
  285. - fix WAL openning issue on Windows
  286. ## 0.10.4 (September 5, 2017)
  287. IMPROVEMENTS:
  288. - docs: Added Slate docs to each rpc function (see rpc/core)
  289. - docs: Ported all website docs to Read The Docs
  290. - config: expose some p2p params to tweak performance: RecvRate, SendRate, and MaxMsgPacketPayloadSize
  291. - rpc: Upgrade the websocket client and server, including improved auto reconnect, and proper ping/pong
  292. BUG FIXES:
  293. - consensus: fix panic on getVoteBitArray
  294. - consensus: hang instead of panicking on byzantine consensus failures
  295. - cmd: dont load config for version command
  296. ## 0.10.3 (August 10, 2017)
  297. FEATURES:
  298. - control over empty block production:
  299. - new flag, `--consensus.create_empty_blocks`; when set to false, blocks are only created when there are txs or when the AppHash changes.
  300. - new config option, `consensus.create_empty_blocks_interval`; an empty block is created after this many seconds.
  301. - in normal operation, `create_empty_blocks = true` and `create_empty_blocks_interval = 0`, so blocks are being created all the time (as in all previous versions of tendermint). The number of empty blocks can be reduced by increasing `create_empty_blocks_interval` or by setting `create_empty_blocks = false`.
  302. - new `TxsAvailable()` method added to Mempool that returns a channel which fires when txs are available.
  303. - new heartbeat message added to consensus reactor to notify peers that a node is waiting for txs before entering propose step.
  304. - rpc: Add `syncing` field to response returned by `/status`. Is `true` while in fast-sync mode.
  305. IMPROVEMENTS:
  306. - various improvements to documentation and code comments
  307. BUG FIXES:
  308. - mempool: pass height into constructor so it doesn't always start at 0
  309. ## 0.10.2 (July 10, 2017)
  310. FEATURES:
  311. - Enable lower latency block commits by adding consensus reactor sleep durations and p2p flush throttle timeout to the config
  312. IMPROVEMENTS:
  313. - More detailed logging in the consensus reactor and state machine
  314. - More in-code documentation for many exposed functions, especially in consensus/reactor.go and p2p/switch.go
  315. - Improved readability for some function definitions and code blocks with long lines
  316. ## 0.10.1 (June 28, 2017)
  317. FEATURES:
  318. - Use `--trace` to get stack traces for logged errors
  319. - types: GenesisDoc.ValidatorHash returns the hash of the genesis validator set
  320. - types: GenesisDocFromFile parses a GenesiDoc from a JSON file
  321. IMPROVEMENTS:
  322. - Add a Code of Conduct
  323. - Variety of improvements as suggested by `megacheck` tool
  324. - rpc: deduplicate tests between rpc/client and rpc/tests
  325. - rpc: addresses without a protocol prefix default to `tcp://`. `http://` is also accepted as an alias for `tcp://`
  326. - cmd: commands are more easily reuseable from other tools
  327. - DOCKER: automate build/push
  328. BUG FIXES:
  329. - Fix log statements using keys with spaces (logger does not currently support spaces)
  330. - rpc: set logger on websocket connection
  331. - rpc: fix ws connection stability by setting write deadline on pings
  332. ## 0.10.0 (June 2, 2017)
  333. Includes major updates to configuration, logging, and json serialization.
  334. Also includes the Grand Repo-Merge of 2017.
  335. BREAKING CHANGES:
  336. - Config and Flags:
  337. - The `config` map is replaced with a [`Config` struct](https://github.com/tendermint/tendermint/blob/master/config/config.go#L11),
  338. containing substructs: `BaseConfig`, `P2PConfig`, `MempoolConfig`, `ConsensusConfig`, `RPCConfig`
  339. - This affects the following flags:
  340. - `--seeds` is now `--p2p.seeds`
  341. - `--node_laddr` is now `--p2p.laddr`
  342. - `--pex` is now `--p2p.pex`
  343. - `--skip_upnp` is now `--p2p.skip_upnp`
  344. - `--rpc_laddr` is now `--rpc.laddr`
  345. - `--grpc_laddr` is now `--rpc.grpc_laddr`
  346. - Any configuration option now within a substract must come under that heading in the `config.toml`, for instance:
  347. ```
  348. [p2p]
  349. laddr="tcp://1.2.3.4:46656"
  350. [consensus]
  351. timeout_propose=1000
  352. ```
  353. - Use viper and `DefaultConfig() / TestConfig()` functions to handle defaults, and remove `config/tendermint` and `config/tendermint_test`
  354. - Change some function and method signatures to
  355. - Change some [function and method signatures](https://gist.github.com/ebuchman/640d5fc6c2605f73497992fe107ebe0b) accomodate new config
  356. - Logger
  357. - Replace static `log15` logger with a simple interface, and provide a new implementation using `go-kit`.
  358. See our new [logging library](https://github.com/tendermint/tmlibs/log) and [blog post](https://tendermint.com/blog/abstracting-the-logger-interface-in-go) for more details
  359. - Levels `warn` and `notice` are removed (you may need to change them in your `config.toml`!)
  360. - Change some [function and method signatures](https://gist.github.com/ebuchman/640d5fc6c2605f73497992fe107ebe0b) to accept a logger
  361. - JSON serialization:
  362. - Replace `[TypeByte, Xxx]` with `{"type": "some-type", "data": Xxx}` in RPC and all `.json` files by using `go-wire/data`. For instance, a public key is now:
  363. ```
  364. "pub_key": {
  365. "type": "ed25519",
  366. "data": "83DDF8775937A4A12A2704269E2729FCFCD491B933C4B0A7FFE37FE41D7760D0"
  367. }
  368. ```
  369. - Remove type information about RPC responses, so `[TypeByte, {"jsonrpc": "2.0", ... }]` is now just `{"jsonrpc": "2.0", ... }`
  370. - Change `[]byte` to `data.Bytes` in all serialized types (for hex encoding)
  371. - Lowercase the JSON tags in `ValidatorSet` fields
  372. - Introduce `EventDataInner` for serializing events
  373. - Other:
  374. - Send InitChain message in handshake if `appBlockHeight == 0`
  375. - Do not include the `Accum` field when computing the validator hash. This makes the ValidatorSetHash unique for a given validator set, rather than changing with every block (as the Accum changes)
  376. - Unsafe RPC calls are not enabled by default. This includes `/dial_seeds`, and all calls prefixed with `unsafe`. Use the `--rpc.unsafe` flag to enable.
  377. FEATURES:
  378. - Per-module log levels. For instance, the new default is `state:info,*:error`, which means the `state` package logs at `info` level, and everything else logs at `error` level
  379. - Log if a node is validator or not in every consensus round
  380. - Use ldflags to set git hash as part of the version
  381. - Ignore `address` and `pub_key` fields in `priv_validator.json` and overwrite them with the values derrived from the `priv_key`
  382. IMPROVEMENTS:
  383. - Merge `tendermint/go-p2p -> tendermint/tendermint/p2p` and `tendermint/go-rpc -> tendermint/tendermint/rpc/lib`
  384. - Update paths for grand repo merge:
  385. - `go-common -> tmlibs/common`
  386. - `go-data -> go-wire/data`
  387. - All other `go-` libs, except `go-crypto` and `go-wire`, are merged under `tmlibs`
  388. - No global loggers (loggers are passed into constructors, or preferably set with a SetLogger method)
  389. - Return HTTP status codes with errors for RPC responses
  390. - Limit `/blockchain_info` call to return a maximum of 20 blocks
  391. - Use `.Wrap()` and `.Unwrap()` instead of eg. `PubKeyS` for `go-crypto` types
  392. - RPC JSON responses use pretty printing (via `json.MarshalIndent`)
  393. - Color code different instances of the consensus for tests
  394. - Isolate viper to `cmd/tendermint/commands` and do not read config from file for tests
  395. ## 0.9.2 (April 26, 2017)
  396. BUG FIXES:
  397. - Fix bug in `ResetPrivValidator` where we were using the global config and log (causing external consumers, eg. basecoin, to fail).
  398. ## 0.9.1 (April 21, 2017)
  399. FEATURES:
  400. - Transaction indexing - txs are indexed by their hash using a simple key-value store; easily extended to more advanced indexers
  401. - New `/tx?hash=X` endpoint to query for transactions and their DeliverTx result by hash. Optionally returns a proof of the tx's inclusion in the block
  402. - `tendermint testnet` command initializes files for a testnet
  403. IMPROVEMENTS:
  404. - CLI now uses Cobra framework
  405. - TMROOT is now TMHOME (TMROOT will stop working in 0.10.0)
  406. - `/broadcast_tx_XXX` also returns the Hash (can be used to query for the tx)
  407. - `/broadcast_tx_commit` also returns the height the block was committed in
  408. - ABCIResponses struct persisted to disk before calling Commit; makes handshake replay much cleaner
  409. - WAL uses #ENDHEIGHT instead of #HEIGHT (#HEIGHT will stop working in 0.10.0)
  410. - Peers included via `--seeds`, under `seeds` in the config, or in `/dial_seeds` are now persistent, and will be reconnected to if the connection breaks
  411. BUG FIXES:
  412. - Fix bug in fast-sync where we stop syncing after a peer is removed, even if they're re-added later
  413. - Fix handshake replay to handle validator set changes and results of DeliverTx when we crash after app.Commit but before state.Save()
  414. ## 0.9.0 (March 6, 2017)
  415. BREAKING CHANGES:
  416. - Update ABCI to v0.4.0, where Query is now `Query(RequestQuery) ResponseQuery`, enabling precise proofs at particular heights:
  417. ```
  418. message RequestQuery{
  419. bytes data = 1;
  420. string path = 2;
  421. uint64 height = 3;
  422. bool prove = 4;
  423. }
  424. message ResponseQuery{
  425. CodeType code = 1;
  426. int64 index = 2;
  427. bytes key = 3;
  428. bytes value = 4;
  429. bytes proof = 5;
  430. uint64 height = 6;
  431. string log = 7;
  432. }
  433. ```
  434. - `BlockMeta` data type unifies its Hash and PartSetHash under a `BlockID`:
  435. ```
  436. type BlockMeta struct {
  437. BlockID BlockID `json:"block_id"` // the block hash and partsethash
  438. Header *Header `json:"header"` // The block's Header
  439. }
  440. ```
  441. - `ValidatorSet.Proposer` is exposed as a field and persisted with the `State`. Use `GetProposer()` to initialize or update after validator-set changes.
  442. - `tendermint gen_validator` command output is now pure JSON
  443. FEATURES:
  444. - New RPC endpoint `/commit?height=X` returns header and commit for block at height `X`
  445. - Client API for each endpoint, including mocks for testing
  446. IMPROVEMENTS:
  447. - `Node` is now a `BaseService`
  448. - Simplified starting Tendermint in-process from another application
  449. - Better organized Makefile
  450. - Scripts for auto-building binaries across platforms
  451. - Docker image improved, slimmed down (using Alpine), and changed from tendermint/tmbase to tendermint/tendermint
  452. - New repo files: `CONTRIBUTING.md`, Github `ISSUE_TEMPLATE`, `CHANGELOG.md`
  453. - Improvements on CircleCI for managing build/test artifacts
  454. - Handshake replay is doen through the consensus package, possibly using a mockApp
  455. - Graceful shutdown of RPC listeners
  456. - Tests for the PEX reactor and DialSeeds
  457. BUG FIXES:
  458. - Check peer.Send for failure before updating PeerState in consensus
  459. - Fix panic in `/dial_seeds` with invalid addresses
  460. - Fix proposer selection logic in ValidatorSet by taking the address into account in the `accumComparable`
  461. - Fix inconcistencies with `ValidatorSet.Proposer` across restarts by persisting it in the `State`
  462. ## 0.8.0 (January 13, 2017)
  463. BREAKING CHANGES:
  464. - New data type `BlockID` to represent blocks:
  465. ```
  466. type BlockID struct {
  467. Hash []byte `json:"hash"`
  468. PartsHeader PartSetHeader `json:"parts"`
  469. }
  470. ```
  471. - `Vote` data type now includes validator address and index:
  472. ```
  473. type Vote struct {
  474. ValidatorAddress []byte `json:"validator_address"`
  475. ValidatorIndex int `json:"validator_index"`
  476. Height int `json:"height"`
  477. Round int `json:"round"`
  478. Type byte `json:"type"`
  479. BlockID BlockID `json:"block_id"` // zero if vote is nil.
  480. Signature crypto.Signature `json:"signature"`
  481. }
  482. ```
  483. - Update TMSP to v0.3.0, where it is now called ABCI and AppendTx is DeliverTx
  484. - Hex strings in the RPC are now "0x" prefixed
  485. FEATURES:
  486. - New message type on the ConsensusReactor, `Maj23Msg`, for peers to alert others they've seen a Maj23,
  487. in order to track and handle conflicting votes intelligently to prevent Byzantine faults from causing halts:
  488. ```
  489. type VoteSetMaj23Message struct {
  490. Height int
  491. Round int
  492. Type byte
  493. BlockID types.BlockID
  494. }
  495. ```
  496. - Configurable block part set size
  497. - Validator set changes
  498. - Optionally skip TimeoutCommit if we have all the votes
  499. - Handshake between Tendermint and App on startup to sync latest state and ensure consistent recovery from crashes
  500. - GRPC server for BroadcastTx endpoint
  501. IMPROVEMENTS:
  502. - Less verbose logging
  503. - Better test coverage (37% -> 49%)
  504. - Canonical SignBytes for signable types
  505. - Write-Ahead Log for Mempool and Consensus via tmlibs/autofile
  506. - Better in-process testing for the consensus reactor and byzantine faults
  507. - Better crash/restart testing for individual nodes at preset failure points, and of networks at arbitrary points
  508. - Better abstraction over timeout mechanics
  509. BUG FIXES:
  510. - Fix memory leak in mempool peer
  511. - Fix panic on POLRound=-1
  512. - Actually set the CommitTime
  513. - Actually send BeginBlock message
  514. - Fix a liveness issues caused by Byzantine proposals/votes. Uses the new `Maj23Msg`.
  515. ## 0.7.4 (December 14, 2016)
  516. FEATURES:
  517. - Enable the Peer Exchange reactor with the `--pex` flag for more resilient gossip network (feature still in development, beware dragons)
  518. IMPROVEMENTS:
  519. - Remove restrictions on RPC endpoint `/dial_seeds` to enable manual network configuration
  520. ## 0.7.3 (October 20, 2016)
  521. IMPROVEMENTS:
  522. - Type safe FireEvent
  523. - More WAL/replay tests
  524. - Cleanup some docs
  525. BUG FIXES:
  526. - Fix deadlock in mempool for synchronous apps
  527. - Replay handles non-empty blocks
  528. - Fix race condition in HeightVoteSet
  529. ## 0.7.2 (September 11, 2016)
  530. BUG FIXES:
  531. - Set mustConnect=false so tendermint will retry connecting to the app
  532. ## 0.7.1 (September 10, 2016)
  533. FEATURES:
  534. - New TMSP connection for Query/Info
  535. - New RPC endpoints:
  536. - `tmsp_query`
  537. - `tmsp_info`
  538. - Allow application to filter peers through Query (off by default)
  539. IMPROVEMENTS:
  540. - TMSP connection type enforced at compile time
  541. - All listen/client urls use a "tcp://" or "unix://" prefix
  542. BUG FIXES:
  543. - Save LastSignature/LastSignBytes to `priv_validator.json` for recovery
  544. - Fix event unsubscribe
  545. - Fix fastsync/blockchain reactor
  546. ## 0.7.0 (August 7, 2016)
  547. BREAKING CHANGES:
  548. - Strict SemVer starting now!
  549. - Update to ABCI v0.2.0
  550. - Validation types now called Commit
  551. - NewBlock event only returns the block header
  552. FEATURES:
  553. - TMSP and RPC support TCP and UNIX sockets
  554. - Addition config options including block size and consensus parameters
  555. - New WAL mode `cswal_light`; logs only the validator's own votes
  556. - New RPC endpoints:
  557. - for starting/stopping profilers, and for updating config
  558. - `/broadcast_tx_commit`, returns when tx is included in a block, else an error
  559. - `/unsafe_flush_mempool`, empties the mempool
  560. IMPROVEMENTS:
  561. - Various optimizations
  562. - Remove bad or invalidated transactions from the mempool cache (allows later duplicates)
  563. - More elaborate testing using CircleCI including benchmarking throughput on 4 digitalocean droplets
  564. BUG FIXES:
  565. - Various fixes to WAL and replay logic
  566. - Various race conditions
  567. ## PreHistory
  568. Strict versioning only began with the release of v0.7.0, in late summer 2016.
  569. The project itself began in early summer 2014 and was workable decentralized cryptocurrency software by the end of that year.
  570. Through the course of 2015, in collaboration with Eris Industries (now Monax Indsutries),
  571. many additional features were integrated, including an implementation from scratch of the Ethereum Virtual Machine.
  572. That implementation now forms the heart of [Burrow](https://github.com/hyperledger/burrow).
  573. In the later half of 2015, the consensus algorithm was upgraded with a more asynchronous design and a more deterministic and robust implementation.
  574. By late 2015, frustration with the difficulty of forking a large monolithic stack to create alternative cryptocurrency designs led to the
  575. invention of the Application Blockchain Interface (ABCI), then called the Tendermint Socket Protocol (TMSP).
  576. The Ethereum Virtual Machine and various other transaction features were removed, and Tendermint was whittled down to a core consensus engine
  577. driving an application running in another process.
  578. The ABCI interface and implementation were iterated on and improved over the course of 2016,
  579. until versioned history kicked in with v0.7.0.