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.

193 lines
7.2 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.27.0
  5. This release contains some breaking changes to the block and p2p protocols,
  6. but does not change any core data structures, so it should be compatible with
  7. existing blockchains from the v0.26 series that only used Ed25519 validator keys.
  8. Blockchains using Secp256k1 for validators will not be compatible. This is due
  9. to the fact that we now enforce which key types validators can use as a
  10. consensus param. The default is Ed25519, and Secp256k1 must be activated
  11. explicitly.
  12. It is recommended to upgrade all nodes at once to avoid incompatibilities at the
  13. peer layer - namely, the heartbeat consensus message has been removed (only
  14. relevant if `create_empty_blocks=false` or `create_empty_blocks_interval > 0`),
  15. and the proposer selection algorithm has changed. Since proposer information is
  16. never included in the blockchain, this change only affects the peer layer.
  17. ### Go API Changes
  18. #### libs/db
  19. The ReverseIterator API has changed the meaning of `start` and `end`.
  20. Before, iteration was from `start` to `end`, where
  21. `start > end`. Now, iteration is from `end` to `start`, where `start < end`.
  22. The iterator also excludes `end`. This change allows a simplified and more
  23. intuitive logic, aligning the semantic meaning of `start` and `end` in the
  24. `Iterator` and `ReverseIterator`.
  25. ### Applications
  26. This release enforces a new consensus parameter, the
  27. ValidatorParams.PubKeyTypes. Applications must ensure that they only return
  28. validator updates with the allowed PubKeyTypes. If a validator update includes a
  29. pubkey type that is not included in the ConsensusParams.Validator.PubKeyTypes,
  30. block execution will fail and the consensus will halt.
  31. By default, only Ed25519 pubkeys may be used for validators. Enabling
  32. Secp256k1 requires explicit modification of the ConsensusParams.
  33. Please update your application accordingly (ie. restrict validators to only be
  34. able to use Ed25519 keys, or explicitly add additional key types to the genesis
  35. file).
  36. ## v0.26.0
  37. This release contains a lot of changes to core data types and protocols. It is not
  38. compatible to the old versions and there is no straight forward way to update
  39. old data to be compatible with the new version.
  40. To reset the state do:
  41. ```
  42. $ tendermint unsafe_reset_all
  43. ```
  44. Here we summarize some other notable changes to be mindful of.
  45. ### Config Changes
  46. All timeouts must be changed from integers to strings with their duration, for
  47. instance `flush_throttle_timeout = 100` would be changed to
  48. `flush_throttle_timeout = "100ms"` and `timeout_propose = 3000` would be changed
  49. to `timeout_propose = "3s"`.
  50. ### RPC Changes
  51. The default behaviour of `/abci_query` has been changed to not return a proof,
  52. and the name of the parameter that controls this has been changed from `trusted`
  53. to `prove`. To get proofs with your queries, ensure you set `prove=true`.
  54. Various version fields like `amino_version`, `p2p_version`, `consensus_version`,
  55. and `rpc_version` have been removed from the `node_info.other` and are
  56. consolidated under the tendermint semantic version (ie. `node_info.version`) and
  57. the new `block` and `p2p` protocol versions under `node_info.protocol_version`.
  58. ### ABCI Changes
  59. Field numbers were bumped in the `Header` and `ResponseInfo` messages to make
  60. room for new `version` fields. It should be straight forward to recompile the
  61. protobuf file for these changes.
  62. #### Proofs
  63. The `ResponseQuery.Proof` field is now structured as a `[]ProofOp` to support
  64. generalized Merkle tree constructions where the leaves of one Merkle tree are
  65. the root of another. If you don't need this functionality, and you used to
  66. return `<proof bytes>` here, you should instead return a single `ProofOp` with
  67. just the `Data` field set:
  68. ```
  69. []ProofOp{
  70. ProofOp{
  71. Data: <proof bytes>,
  72. }
  73. }
  74. ```
  75. For more information, see:
  76. - [ADR-026](https://github.com/tendermint/tendermint/blob/30519e8361c19f4bf320ef4d26288ebc621ad725/docs/architecture/adr-026-general-merkle-proof.md)
  77. - [Relevant ABCI
  78. documentation](https://github.com/tendermint/tendermint/blob/30519e8361c19f4bf320ef4d26288ebc621ad725/docs/spec/abci/apps.md#query-proofs)
  79. - [Description of
  80. keys](https://github.com/tendermint/tendermint/blob/30519e8361c19f4bf320ef4d26288ebc621ad725/crypto/merkle/proof_key_path.go#L14)
  81. ### Go API Changes
  82. #### crypto/merkle
  83. The `merkle.Hasher` interface was removed. Functions which used to take `Hasher`
  84. now simply take `[]byte`. This means that any objects being Merklized should be
  85. serialized before they are passed in.
  86. #### node
  87. The `node.RunForever` function was removed. Signal handling and running forever
  88. should instead be explicitly configured by the caller. See how we do it
  89. [here](https://github.com/tendermint/tendermint/blob/30519e8361c19f4bf320ef4d26288ebc621ad725/cmd/tendermint/commands/run_node.go#L60).
  90. ### Other
  91. All hashes, except for public key addresses, are now 32-bytes.
  92. ## v0.25.0
  93. This release has minimal impact.
  94. If you use GasWanted in ABCI and want to enforce it, set the MaxGas in the genesis file (default is no max).
  95. ## v0.24.0
  96. New 0.24.0 release contains a lot of changes to the state and types. It's not
  97. compatible to the old versions and there is no straight forward way to update
  98. old data to be compatible with the new version.
  99. To reset the state do:
  100. ```
  101. $ tendermint unsafe_reset_all
  102. ```
  103. Here we summarize some other notable changes to be mindful of.
  104. ### Config changes
  105. `p2p.max_num_peers` was removed in favor of `p2p.max_num_inbound_peers` and
  106. `p2p.max_num_outbound_peers`.
  107. ```
  108. # Maximum number of inbound peers
  109. max_num_inbound_peers = 40
  110. # Maximum number of outbound peers to connect to, excluding persistent peers
  111. max_num_outbound_peers = 10
  112. ```
  113. As you can see, the default ratio of inbound/outbound peers is 4/1. The reason
  114. is we want it to be easier for new nodes to connect to the network. You can
  115. tweak these parameters to alter the network topology.
  116. ### RPC Changes
  117. The result of `/commit` used to contain `header` and `commit` fields at the top level. These are now contained under the `signed_header` field.
  118. ### ABCI Changes
  119. The header has been upgraded and contains new fields, but none of the existing
  120. fields were changed, except their order.
  121. The `Validator` type was split into two, one containing an `Address` and one
  122. containing a `PubKey`. When processing `RequestBeginBlock`, use the `Validator`
  123. type, which contains just the `Address`. When returning `ResponseEndBlock`, use
  124. the `ValidatorUpdate` type, which contains just the `PubKey`.
  125. ### Validator Set Updates
  126. Validator set updates returned in ResponseEndBlock for height `H` used to take
  127. effect immediately at height `H+1`. Now they will be delayed one block, to take
  128. effect at height `H+2`. Note this means that the change will be seen by the ABCI
  129. app in the `RequestBeginBlock.LastCommitInfo` at block `H+3`. Apps were already
  130. required to maintain a map from validator addresses to pubkeys since v0.23 (when
  131. pubkeys were removed from RequestBeginBlock), but now they may need to track
  132. multiple validator sets at once to accomodate this delay.
  133. ### Block Size
  134. The `ConsensusParams.BlockSize.MaxTxs` was removed in favour of
  135. `ConsensusParams.BlockSize.MaxBytes`, which is now enforced. This means blocks
  136. are limitted only by byte-size, not by number of transactions.