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.

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