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.

328 lines
13 KiB

  1. # Upgrading Tendermint Core
  2. This guide provides steps to be followed when you upgrade your applications to
  3. a newer version of Tendermint Core.
  4. ## v0.31.0
  5. This release contains a breaking change to the behaviour of the pubsub system.
  6. It also contains some minor breaking changes in the Go API and ABCI.
  7. There are no changes to the block or p2p protocols, so v0.31.0 should work fine
  8. with blockchains created from the v0.30 series.
  9. ### RPC
  10. The pubsub no longer blocks on publishing. This may cause some WebSocket (WS) clients to stop working as expected.
  11. If your WS client is not consuming events fast enough, Tendermint can terminate the subscription.
  12. In this case, the WS client will receive an error with description:
  13. ```json
  14. {
  15. "jsonrpc": "2.0",
  16. "id": "{ID}#event",
  17. "error": {
  18. "code": -32000,
  19. "msg": "Server error",
  20. "data": "subscription was cancelled (reason: client is not pulling messages fast enough)" // or "subscription was cancelled (reason: Tendermint exited)"
  21. }
  22. }
  23. Additionally, there are now limits on the number of subscribers and
  24. subscriptions that can be active at once. See the new
  25. `rpc.max_subscription_clients` and `rpc.max_subscriptions_per_client` values to
  26. configure this.
  27. ```
  28. ### Applications
  29. Simple rename of `ConsensusParams.BlockSize` to `ConsensusParams.Block`.
  30. The `ConsensusParams.Block.TimeIotaMS` field was also removed. It's configured
  31. in the ConsensusParsm in genesis.
  32. ### Go API
  33. See the [CHANGELOG](CHANGELOG.md). These are relatively straight forward.
  34. ## v0.30.0
  35. This release contains a breaking change to both the block and p2p protocols,
  36. however it may be compatible with blockchains created with v0.29.0 depending on
  37. the chain history. If your blockchain has not included any pieces of evidence,
  38. or no piece of evidence has been included in more than one block,
  39. and if your application has never returned multiple updates
  40. for the same validator in a single block, then v0.30.0 will work fine with
  41. blockchains created with v0.29.0.
  42. The p2p protocol change is to fix the proposer selection algorithm again.
  43. Note that proposer selection is purely a p2p concern right
  44. now since the algorithm is only relevant during real time consensus.
  45. This change is thus compatible with v0.29.0, but
  46. all nodes must be upgraded to avoid disagreements on the proposer.
  47. ### Applications
  48. Applications must ensure they do not return duplicates in
  49. `ResponseEndBlock.ValidatorUpdates`. A pubkey must only appear once per set of
  50. updates. Duplicates will cause irrecoverable failure. If you have a very good
  51. reason why we shouldn't do this, please open an issue.
  52. ## v0.29.0
  53. This release contains some breaking changes to the block and p2p protocols,
  54. and will not be compatible with any previous versions of the software, primarily
  55. due to changes in how various data structures are hashed.
  56. Any implementations of Tendermint blockchain verification, including lite clients,
  57. will need to be updated. For specific details:
  58. - [Merkle tree](./docs/spec/blockchain/encoding.md#merkle-trees)
  59. - [ConsensusParams](./docs/spec/blockchain/state.md#consensusparams)
  60. There was also a small change to field ordering in the vote struct. Any
  61. implementations of an out-of-process validator (like a Key-Management Server)
  62. will need to be updated. For specific details:
  63. - [Vote](https://github.com/tendermint/tendermint/blob/develop/docs/spec/consensus/signing.md#votes)
  64. Finally, the proposer selection algorithm continues to evolve. See the
  65. [work-in-progress
  66. specification](https://github.com/tendermint/tendermint/pull/3140).
  67. For everything else, please see the [CHANGELOG](./CHANGELOG.md#v0.29.0).
  68. ## v0.28.0
  69. This release breaks the format for the `priv_validator.json` file
  70. and the protocol used for the external validator process.
  71. It is compatible with v0.27.0 blockchains (neither the BlockProtocol nor the
  72. P2PProtocol have changed).
  73. Please read carefully for details about upgrading.
  74. **Note:** Backup your `config/priv_validator.json`
  75. before proceeding.
  76. ### `priv_validator.json`
  77. The `config/priv_validator.json` is now two files:
  78. `config/priv_validator_key.json` and `data/priv_validator_state.json`.
  79. The former contains the key material, the later contains the details on the last
  80. message signed.
  81. When running v0.28.0 for the first time, it will back up any pre-existing
  82. `priv_validator.json` file and proceed to split it into the two new files.
  83. Upgrading should happen automatically without problem.
  84. To upgrade manually, use the provided `privValUpgrade.go` script, with exact paths for the old
  85. `priv_validator.json` and the locations for the two new files. It's recomended
  86. to use the default paths, of `config/priv_validator_key.json` and
  87. `data/priv_validator_state.json`, respectively:
  88. ```
  89. go run scripts/privValUpgrade.go <old-path> <new-key-path> <new-state-path>
  90. ```
  91. ### External validator signers
  92. The Unix and TCP implementations of the remote signing validator
  93. have been consolidated into a single implementation.
  94. Thus in both cases, the external process is expected to dial
  95. Tendermint. This is different from how Unix sockets used to work, where
  96. Tendermint dialed the external process.
  97. The `PubKeyMsg` was also split into separate `Request` and `Response` types
  98. for consistency with other messages.
  99. Note that the TCP sockets don't yet use a persistent key,
  100. so while they're encrypted, they can't yet be properly authenticated.
  101. See [#3105](https://github.com/tendermint/tendermint/issues/3105).
  102. Note the Unix socket has neither encryption nor authentication, but will
  103. add a shared-secret in [#3099](https://github.com/tendermint/tendermint/issues/3099).
  104. ## v0.27.0
  105. This release contains some breaking changes to the block and p2p protocols,
  106. but does not change any core data structures, so it should be compatible with
  107. existing blockchains from the v0.26 series that only used Ed25519 validator keys.
  108. Blockchains using Secp256k1 for validators will not be compatible. This is due
  109. to the fact that we now enforce which key types validators can use as a
  110. consensus param. The default is Ed25519, and Secp256k1 must be activated
  111. explicitly.
  112. It is recommended to upgrade all nodes at once to avoid incompatibilities at the
  113. peer layer - namely, the heartbeat consensus message has been removed (only
  114. relevant if `create_empty_blocks=false` or `create_empty_blocks_interval > 0`),
  115. and the proposer selection algorithm has changed. Since proposer information is
  116. never included in the blockchain, this change only affects the peer layer.
  117. ### Go API Changes
  118. #### libs/db
  119. The ReverseIterator API has changed the meaning of `start` and `end`.
  120. Before, iteration was from `start` to `end`, where
  121. `start > end`. Now, iteration is from `end` to `start`, where `start < end`.
  122. The iterator also excludes `end`. This change allows a simplified and more
  123. intuitive logic, aligning the semantic meaning of `start` and `end` in the
  124. `Iterator` and `ReverseIterator`.
  125. ### Applications
  126. This release enforces a new consensus parameter, the
  127. ValidatorParams.PubKeyTypes. Applications must ensure that they only return
  128. validator updates with the allowed PubKeyTypes. If a validator update includes a
  129. pubkey type that is not included in the ConsensusParams.Validator.PubKeyTypes,
  130. block execution will fail and the consensus will halt.
  131. By default, only Ed25519 pubkeys may be used for validators. Enabling
  132. Secp256k1 requires explicit modification of the ConsensusParams.
  133. Please update your application accordingly (ie. restrict validators to only be
  134. able to use Ed25519 keys, or explicitly add additional key types to the genesis
  135. file).
  136. ## v0.26.0
  137. This release contains a lot of changes to core data types and protocols. It is not
  138. compatible to the old versions and there is no straight forward way to update
  139. old data to be compatible with the new version.
  140. To reset the state do:
  141. ```
  142. $ tendermint unsafe_reset_all
  143. ```
  144. Here we summarize some other notable changes to be mindful of.
  145. ### Config Changes
  146. All timeouts must be changed from integers to strings with their duration, for
  147. instance `flush_throttle_timeout = 100` would be changed to
  148. `flush_throttle_timeout = "100ms"` and `timeout_propose = 3000` would be changed
  149. to `timeout_propose = "3s"`.
  150. ### RPC Changes
  151. The default behaviour of `/abci_query` has been changed to not return a proof,
  152. and the name of the parameter that controls this has been changed from `trusted`
  153. to `prove`. To get proofs with your queries, ensure you set `prove=true`.
  154. Various version fields like `amino_version`, `p2p_version`, `consensus_version`,
  155. and `rpc_version` have been removed from the `node_info.other` and are
  156. consolidated under the tendermint semantic version (ie. `node_info.version`) and
  157. the new `block` and `p2p` protocol versions under `node_info.protocol_version`.
  158. ### ABCI Changes
  159. Field numbers were bumped in the `Header` and `ResponseInfo` messages to make
  160. room for new `version` fields. It should be straight forward to recompile the
  161. protobuf file for these changes.
  162. #### Proofs
  163. The `ResponseQuery.Proof` field is now structured as a `[]ProofOp` to support
  164. generalized Merkle tree constructions where the leaves of one Merkle tree are
  165. the root of another. If you don't need this functionality, and you used to
  166. return `<proof bytes>` here, you should instead return a single `ProofOp` with
  167. just the `Data` field set:
  168. ```
  169. []ProofOp{
  170. ProofOp{
  171. Data: <proof bytes>,
  172. }
  173. }
  174. ```
  175. For more information, see:
  176. - [ADR-026](https://github.com/tendermint/tendermint/blob/30519e8361c19f4bf320ef4d26288ebc621ad725/docs/architecture/adr-026-general-merkle-proof.md)
  177. - [Relevant ABCI
  178. documentation](https://github.com/tendermint/tendermint/blob/30519e8361c19f4bf320ef4d26288ebc621ad725/docs/spec/abci/apps.md#query-proofs)
  179. - [Description of
  180. keys](https://github.com/tendermint/tendermint/blob/30519e8361c19f4bf320ef4d26288ebc621ad725/crypto/merkle/proof_key_path.go#L14)
  181. ### Go API Changes
  182. #### crypto/merkle
  183. The `merkle.Hasher` interface was removed. Functions which used to take `Hasher`
  184. now simply take `[]byte`. This means that any objects being Merklized should be
  185. serialized before they are passed in.
  186. #### node
  187. The `node.RunForever` function was removed. Signal handling and running forever
  188. should instead be explicitly configured by the caller. See how we do it
  189. [here](https://github.com/tendermint/tendermint/blob/30519e8361c19f4bf320ef4d26288ebc621ad725/cmd/tendermint/commands/run_node.go#L60).
  190. ### Other
  191. All hashes, except for public key addresses, are now 32-bytes.
  192. ## v0.25.0
  193. This release has minimal impact.
  194. If you use GasWanted in ABCI and want to enforce it, set the MaxGas in the genesis file (default is no max).
  195. ## v0.24.0
  196. New 0.24.0 release contains a lot of changes to the state and types. It's not
  197. compatible to the old versions and there is no straight forward way to update
  198. old data to be compatible with the new version.
  199. To reset the state do:
  200. ```
  201. $ tendermint unsafe_reset_all
  202. ```
  203. Here we summarize some other notable changes to be mindful of.
  204. ### Config changes
  205. `p2p.max_num_peers` was removed in favor of `p2p.max_num_inbound_peers` and
  206. `p2p.max_num_outbound_peers`.
  207. ```
  208. # Maximum number of inbound peers
  209. max_num_inbound_peers = 40
  210. # Maximum number of outbound peers to connect to, excluding persistent peers
  211. max_num_outbound_peers = 10
  212. ```
  213. As you can see, the default ratio of inbound/outbound peers is 4/1. The reason
  214. is we want it to be easier for new nodes to connect to the network. You can
  215. tweak these parameters to alter the network topology.
  216. ### RPC Changes
  217. The result of `/commit` used to contain `header` and `commit` fields at the top level. These are now contained under the `signed_header` field.
  218. ### ABCI Changes
  219. The header has been upgraded and contains new fields, but none of the existing
  220. fields were changed, except their order.
  221. The `Validator` type was split into two, one containing an `Address` and one
  222. containing a `PubKey`. When processing `RequestBeginBlock`, use the `Validator`
  223. type, which contains just the `Address`. When returning `ResponseEndBlock`, use
  224. the `ValidatorUpdate` type, which contains just the `PubKey`.
  225. ### Validator Set Updates
  226. Validator set updates returned in ResponseEndBlock for height `H` used to take
  227. effect immediately at height `H+1`. Now they will be delayed one block, to take
  228. effect at height `H+2`. Note this means that the change will be seen by the ABCI
  229. app in the `RequestBeginBlock.LastCommitInfo` at block `H+3`. Apps were already
  230. required to maintain a map from validator addresses to pubkeys since v0.23 (when
  231. pubkeys were removed from RequestBeginBlock), but now they may need to track
  232. multiple validator sets at once to accomodate this delay.
  233. ### Block Size
  234. The `ConsensusParams.BlockSize.MaxTxs` was removed in favour of
  235. `ConsensusParams.BlockSize.MaxBytes`, which is now enforced. This means blocks
  236. are limitted only by byte-size, not by number of transactions.