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.

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