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.

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