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.

587 lines
22 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.34.0
  5. **This release is not compatible with previous blockchains** due to switching
  6. from amino to proto3 encoding and breaking changes to the header.
  7. ### ABCI application changes
  8. New ABCI methods (`ListSnapshots`, `LoadSnapshotChunk`, `OfferSnapshot`, and
  9. `ApplySnapshotChunk`) were added for the highly anticipated state sync feature.
  10. With it, new nodes are able to join the network in a matter of seconds. Read
  11. [the spec](https://docs.tendermint.com/master/spec/abci/apps.html#state-sync)
  12. if you want to learn more & support it (with cosmos-sdk you get it
  13. automatically). If you don't want to support it, just leave these methods
  14. empty.
  15. `KV.Pair` has been replaced with `abci.EventAttribute`. `EventAttribute.Index`
  16. field allows ABCI applications to dictate which events should be indexed
  17. ignoring the `tx_index.index_keys` config setting. See
  18. [\#4877](https://github.com/tendermint/tendermint/issues/4877), where we're
  19. discussing future direction of indexing.
  20. ### P2P Protocol
  21. The default codec is now proto3, not amino. Check out the [TODO]() for
  22. motivation behind this change. The schema files can be found in the `/proto`
  23. directory. In the future we're considering using gRPC for the remote private
  24. validator and ABCI
  25. ([\#4698](https://github.com/tendermint/tendermint/issues/4698)).
  26. ### Blockchain Protocol
  27. `Header#LastResultsHash`, which previously was the root hash of a Merkle tree
  28. built from `ResponseDeliverTx(Code, Data)` responses, became the root hash of a
  29. Merkle tree built from:
  30. - `BeginBlock#Events`;
  31. - root hash of a Merkle tree built from `ResponseDeliverTx(Code, Data,
  32. GasWanted, GasUsed, Events)` responses;
  33. - `BeginBlock#Events`.
  34. ### Protobuf
  35. With this release we are happy to announce the full protobuf migration of the Tendermint repo. This consists of changes that you may need to be aware of:
  36. - All proto files have been moved under one directory, `/proto`. This is in line with the recommended file layout by [buf](https://buf.build), you can read more about it [here](https://buf.build/docs/lint-checkers#file_layout)
  37. - We use the generated protobuf types for only on disk and over the wire serialization. This means that these changes should not effect you as user of Tendermint.
  38. - A few notable changes in the abci:
  39. - In `ValidatorUpdates` the public key type has been migrated to a protobuf `oneof` type. Since Tendermint only supports ed25519 validator keys this is the only available key in the oneof.
  40. ## v0.33.4
  41. ### Go API
  42. - `rpc/client` HTTP and local clients have been moved into `http` and `local`
  43. subpackages, and their constructors have been renamed to `New()`.
  44. ### Protobuf Changes
  45. When upgrading to version 0.33.4 you will have to fetch the `third_party`
  46. directory along with the updated proto files.
  47. ## v0.33.0
  48. This release is not compatible with previous blockchains due to commit becoming
  49. signatures only and fields in the header have been removed.
  50. ### Blockchain Protocol
  51. `TotalTxs` and `NumTxs` were removed from the header. `Commit` now consists
  52. mostly of just signatures.
  53. ```go
  54. type Commit struct {
  55. Height int64
  56. Round int
  57. BlockID BlockID
  58. Signatures []CommitSig
  59. }
  60. ```
  61. ```go
  62. type BlockIDFlag byte
  63. const (
  64. // BlockIDFlagAbsent - no vote was received from a validator.
  65. BlockIDFlagAbsent BlockIDFlag = 0x01
  66. // BlockIDFlagCommit - voted for the Commit.BlockID.
  67. BlockIDFlagCommit = 0x02
  68. // BlockIDFlagNil - voted for nil.
  69. BlockIDFlagNil = 0x03
  70. )
  71. type CommitSig struct {
  72. BlockIDFlag BlockIDFlag
  73. ValidatorAddress Address
  74. Timestamp time.Time
  75. Signature []byte
  76. }
  77. ```
  78. See [\#63](https://github.com/tendermint/spec/pull/63) for the complete spec
  79. change.
  80. ### P2P Protocol
  81. The secret connection now includes a transcript hashing. If you want to
  82. implement a handshake (or otherwise have an existing implementation), you'll
  83. need to make the same changes that were made
  84. [here](https://github.com/tendermint/tendermint/pull/3668).
  85. ### Config Changes
  86. You will need to generate a new config if you have used a prior version of tendermint.
  87. Tags have been entirely renamed throughout the codebase to events and there
  88. keys are called
  89. [compositeKeys](https://github.com/tendermint/tendermint/blob/6d05c531f7efef6f0619155cf10ae8557dd7832f/docs/app-dev/indexing-transactions.md).
  90. Evidence Params has been changed to include duration.
  91. - `consensus_params.evidence.max_age_duration`.
  92. - Renamed `consensus_params.evidence.max_age` to `max_age_num_blocks`.
  93. ### Go API
  94. - `libs/common` has been removed in favor of specific pkgs.
  95. - `async`
  96. - `service`
  97. - `rand`
  98. - `net`
  99. - `strings`
  100. - `cmap`
  101. - removal of `errors` pkg
  102. ### RPC Changes
  103. - `/validators` is now paginated (default: 30 vals per page)
  104. - `/block_results` response format updated [see RPC docs for details](https://docs.tendermint.com/master/rpc/#/Info/block_results)
  105. - Event suffix has been removed from the ID in event responses
  106. - IDs are now integers not `json-client-XYZ`
  107. ## v0.32.0
  108. This release is compatible with previous blockchains,
  109. however the new ABCI Events mechanism may create some complexity
  110. for nodes wishing to continue operation with v0.32 from a previous version.
  111. There are some minor breaking changes to the RPC.
  112. ### Config Changes
  113. If you have `db_backend` set to `leveldb` in your config file, please change it
  114. to `goleveldb` or `cleveldb`.
  115. ### RPC Changes
  116. The default listen address for the RPC is now `127.0.0.1`. If you want to expose
  117. it publicly, you have to explicitly configure it. Note exposing the RPC to the
  118. public internet may not be safe - endpoints which return a lot of data may
  119. enable resource exhaustion attacks on your node, causing the process to crash.
  120. Any consumers of `/block_results` need to be mindful of the change in all field
  121. names from CamelCase to Snake case, eg. `results.DeliverTx` is now `results.deliver_tx`.
  122. This is a fix, but it's breaking.
  123. ### ABCI Changes
  124. ABCI responses which previously had a `Tags` field now have an `Events` field
  125. instead. The original `Tags` field was simply a list of key-value pairs, where
  126. each key effectively represented some attribute of an event occuring in the
  127. blockchain, like `sender`, `receiver`, or `amount`. However, it was difficult to
  128. represent the occurence of multiple events (for instance, multiple transfers) in a single list.
  129. The new `Events` field contains a list of `Event`, where each `Event` is itself a list
  130. of key-value pairs, allowing for more natural expression of multiple events in
  131. eg. a single DeliverTx or EndBlock. Note each `Event` also includes a `Type`, which is meant to categorize the
  132. event.
  133. For transaction indexing, the index key is
  134. prefixed with the event type: `{eventType}.{attributeKey}`.
  135. If the same event type and attribute key appear multiple times, the values are
  136. appended in a list.
  137. To make queries, include the event type as a prefix. For instance if you
  138. previously queried for `recipient = 'XYZ'`, and after the upgrade you name your event `transfer`,
  139. the new query would be for `transfer.recipient = 'XYZ'`.
  140. Note that transactions indexed on a node before upgrading to v0.32 will still be indexed
  141. using the old scheme. For instance, if a node upgraded at height 100,
  142. transactions before 100 would be queried with `recipient = 'XYZ'` and
  143. transactions after 100 would be queried with `transfer.recipient = 'XYZ'`.
  144. While this presents additional complexity to clients, it avoids the need to
  145. reindex. Of course, you can reset the node and sync from scratch to re-index
  146. entirely using the new scheme.
  147. We illustrate further with a more complete example.
  148. Prior to the update, suppose your `ResponseDeliverTx` look like:
  149. ```go
  150. abci.ResponseDeliverTx{
  151. Tags: []kv.Pair{
  152. {Key: []byte("sender"), Value: []byte("foo")},
  153. {Key: []byte("recipient"), Value: []byte("bar")},
  154. {Key: []byte("amount"), Value: []byte("35")},
  155. }
  156. }
  157. ```
  158. The following queries would match this transaction:
  159. ```go
  160. query.MustParse("tm.event = 'Tx' AND sender = 'foo'")
  161. query.MustParse("tm.event = 'Tx' AND recipient = 'bar'")
  162. query.MustParse("tm.event = 'Tx' AND sender = 'foo' AND recipient = 'bar'")
  163. ```
  164. Following the upgrade, your `ResponseDeliverTx` would look something like:
  165. the following `Events`:
  166. ```go
  167. abci.ResponseDeliverTx{
  168. Events: []abci.Event{
  169. {
  170. Type: "transfer",
  171. Attributes: kv.Pairs{
  172. {Key: []byte("sender"), Value: []byte("foo")},
  173. {Key: []byte("recipient"), Value: []byte("bar")},
  174. {Key: []byte("amount"), Value: []byte("35")},
  175. },
  176. }
  177. }
  178. ```
  179. Now the following queries would match this transaction:
  180. ```go
  181. query.MustParse("tm.event = 'Tx' AND transfer.sender = 'foo'")
  182. query.MustParse("tm.event = 'Tx' AND transfer.recipient = 'bar'")
  183. query.MustParse("tm.event = 'Tx' AND transfer.sender = 'foo' AND transfer.recipient = 'bar'")
  184. ```
  185. For further documentation on `Events`, see the [docs](https://github.com/tendermint/tendermint/blob/60827f75623b92eff132dc0eff5b49d2025c591e/docs/spec/abci/abci.md#events).
  186. ### Go Applications
  187. The ABCI Application interface changed slightly so the CheckTx and DeliverTx
  188. methods now take Request structs. The contents of these structs are just the raw
  189. tx bytes, which were previously passed in as the argument.
  190. ## v0.31.6
  191. There are no breaking changes in this release except Go API of p2p and
  192. mempool packages. Hovewer, if you're using cleveldb, you'll need to change
  193. the compilation tag:
  194. Use `cleveldb` tag instead of `gcc` to compile Tendermint with CLevelDB or
  195. use `make build_c` / `make install_c` (full instructions can be found at
  196. https://tendermint.com/docs/introduction/install.html#compile-with-cleveldb-support)
  197. ## v0.31.0
  198. This release contains a breaking change to the behaviour of the pubsub system.
  199. It also contains some minor breaking changes in the Go API and ABCI.
  200. There are no changes to the block or p2p protocols, so v0.31.0 should work fine
  201. with blockchains created from the v0.30 series.
  202. ### RPC
  203. The pubsub no longer blocks on publishing. This may cause some WebSocket (WS) clients to stop working as expected.
  204. If your WS client is not consuming events fast enough, Tendermint can terminate the subscription.
  205. In this case, the WS client will receive an error with description:
  206. ```json
  207. {
  208. "jsonrpc": "2.0",
  209. "id": "{ID}#event",
  210. "error": {
  211. "code": -32000,
  212. "msg": "Server error",
  213. "data": "subscription was cancelled (reason: client is not pulling messages fast enough)" // or "subscription was cancelled (reason: Tendermint exited)"
  214. }
  215. }
  216. Additionally, there are now limits on the number of subscribers and
  217. subscriptions that can be active at once. See the new
  218. `rpc.max_subscription_clients` and `rpc.max_subscriptions_per_client` values to
  219. configure this.
  220. ```
  221. ### Applications
  222. Simple rename of `ConsensusParams.BlockSize` to `ConsensusParams.Block`.
  223. The `ConsensusParams.Block.TimeIotaMS` field was also removed. It's configured
  224. in the ConsensusParsm in genesis.
  225. ### Go API
  226. See the [CHANGELOG](CHANGELOG.md). These are relatively straight forward.
  227. ## v0.30.0
  228. This release contains a breaking change to both the block and p2p protocols,
  229. however it may be compatible with blockchains created with v0.29.0 depending on
  230. the chain history. If your blockchain has not included any pieces of evidence,
  231. or no piece of evidence has been included in more than one block,
  232. and if your application has never returned multiple updates
  233. for the same validator in a single block, then v0.30.0 will work fine with
  234. blockchains created with v0.29.0.
  235. The p2p protocol change is to fix the proposer selection algorithm again.
  236. Note that proposer selection is purely a p2p concern right
  237. now since the algorithm is only relevant during real time consensus.
  238. This change is thus compatible with v0.29.0, but
  239. all nodes must be upgraded to avoid disagreements on the proposer.
  240. ### Applications
  241. Applications must ensure they do not return duplicates in
  242. `ResponseEndBlock.ValidatorUpdates`. A pubkey must only appear once per set of
  243. updates. Duplicates will cause irrecoverable failure. If you have a very good
  244. reason why we shouldn't do this, please open an issue.
  245. ## v0.29.0
  246. This release contains some breaking changes to the block and p2p protocols,
  247. and will not be compatible with any previous versions of the software, primarily
  248. due to changes in how various data structures are hashed.
  249. Any implementations of Tendermint blockchain verification, including lite clients,
  250. will need to be updated. For specific details:
  251. - [Merkle tree](https://github.com/tendermint/spec/blob/master/spec/blockchain/encoding.md#merkle-trees)
  252. - [ConsensusParams](https://github.com/tendermint/spec/blob/master/spec/blockchain/state.md#consensusparams)
  253. There was also a small change to field ordering in the vote struct. Any
  254. implementations of an out-of-process validator (like a Key-Management Server)
  255. will need to be updated. For specific details:
  256. - [Vote](https://github.com/tendermint/spec/blob/master/spec/consensus/signing.md#votes)
  257. Finally, the proposer selection algorithm continues to evolve. See the
  258. [work-in-progress
  259. specification](https://github.com/tendermint/tendermint/pull/3140).
  260. For everything else, please see the [CHANGELOG](./CHANGELOG.md#v0.29.0).
  261. ## v0.28.0
  262. This release breaks the format for the `priv_validator.json` file
  263. and the protocol used for the external validator process.
  264. It is compatible with v0.27.0 blockchains (neither the BlockProtocol nor the
  265. P2PProtocol have changed).
  266. Please read carefully for details about upgrading.
  267. **Note:** Backup your `config/priv_validator.json`
  268. before proceeding.
  269. ### `priv_validator.json`
  270. The `config/priv_validator.json` is now two files:
  271. `config/priv_validator_key.json` and `data/priv_validator_state.json`.
  272. The former contains the key material, the later contains the details on the last
  273. message signed.
  274. When running v0.28.0 for the first time, it will back up any pre-existing
  275. `priv_validator.json` file and proceed to split it into the two new files.
  276. Upgrading should happen automatically without problem.
  277. To upgrade manually, use the provided `privValUpgrade.go` script, with exact paths for the old
  278. `priv_validator.json` and the locations for the two new files. It's recomended
  279. to use the default paths, of `config/priv_validator_key.json` and
  280. `data/priv_validator_state.json`, respectively:
  281. ```
  282. go run scripts/privValUpgrade.go <old-path> <new-key-path> <new-state-path>
  283. ```
  284. ### External validator signers
  285. The Unix and TCP implementations of the remote signing validator
  286. have been consolidated into a single implementation.
  287. Thus in both cases, the external process is expected to dial
  288. Tendermint. This is different from how Unix sockets used to work, where
  289. Tendermint dialed the external process.
  290. The `PubKeyMsg` was also split into separate `Request` and `Response` types
  291. for consistency with other messages.
  292. Note that the TCP sockets don't yet use a persistent key,
  293. so while they're encrypted, they can't yet be properly authenticated.
  294. See [#3105](https://github.com/tendermint/tendermint/issues/3105).
  295. Note the Unix socket has neither encryption nor authentication, but will
  296. add a shared-secret in [#3099](https://github.com/tendermint/tendermint/issues/3099).
  297. ## v0.27.0
  298. This release contains some breaking changes to the block and p2p protocols,
  299. but does not change any core data structures, so it should be compatible with
  300. existing blockchains from the v0.26 series that only used Ed25519 validator keys.
  301. Blockchains using Secp256k1 for validators will not be compatible. This is due
  302. to the fact that we now enforce which key types validators can use as a
  303. consensus param. The default is Ed25519, and Secp256k1 must be activated
  304. explicitly.
  305. It is recommended to upgrade all nodes at once to avoid incompatibilities at the
  306. peer layer - namely, the heartbeat consensus message has been removed (only
  307. relevant if `create_empty_blocks=false` or `create_empty_blocks_interval > 0`),
  308. and the proposer selection algorithm has changed. Since proposer information is
  309. never included in the blockchain, this change only affects the peer layer.
  310. ### Go API Changes
  311. #### libs/db
  312. The ReverseIterator API has changed the meaning of `start` and `end`.
  313. Before, iteration was from `start` to `end`, where
  314. `start > end`. Now, iteration is from `end` to `start`, where `start < end`.
  315. The iterator also excludes `end`. This change allows a simplified and more
  316. intuitive logic, aligning the semantic meaning of `start` and `end` in the
  317. `Iterator` and `ReverseIterator`.
  318. ### Applications
  319. This release enforces a new consensus parameter, the
  320. ValidatorParams.PubKeyTypes. Applications must ensure that they only return
  321. validator updates with the allowed PubKeyTypes. If a validator update includes a
  322. pubkey type that is not included in the ConsensusParams.Validator.PubKeyTypes,
  323. block execution will fail and the consensus will halt.
  324. By default, only Ed25519 pubkeys may be used for validators. Enabling
  325. Secp256k1 requires explicit modification of the ConsensusParams.
  326. Please update your application accordingly (ie. restrict validators to only be
  327. able to use Ed25519 keys, or explicitly add additional key types to the genesis
  328. file).
  329. ## v0.26.0
  330. This release contains a lot of changes to core data types and protocols. It is not
  331. compatible to the old versions and there is no straight forward way to update
  332. old data to be compatible with the new version.
  333. To reset the state do:
  334. ```
  335. $ tendermint unsafe_reset_all
  336. ```
  337. Here we summarize some other notable changes to be mindful of.
  338. ### Config Changes
  339. All timeouts must be changed from integers to strings with their duration, for
  340. instance `flush_throttle_timeout = 100` would be changed to
  341. `flush_throttle_timeout = "100ms"` and `timeout_propose = 3000` would be changed
  342. to `timeout_propose = "3s"`.
  343. ### RPC Changes
  344. The default behaviour of `/abci_query` has been changed to not return a proof,
  345. and the name of the parameter that controls this has been changed from `trusted`
  346. to `prove`. To get proofs with your queries, ensure you set `prove=true`.
  347. Various version fields like `amino_version`, `p2p_version`, `consensus_version`,
  348. and `rpc_version` have been removed from the `node_info.other` and are
  349. consolidated under the tendermint semantic version (ie. `node_info.version`) and
  350. the new `block` and `p2p` protocol versions under `node_info.protocol_version`.
  351. ### ABCI Changes
  352. Field numbers were bumped in the `Header` and `ResponseInfo` messages to make
  353. room for new `version` fields. It should be straight forward to recompile the
  354. protobuf file for these changes.
  355. #### Proofs
  356. The `ResponseQuery.Proof` field is now structured as a `[]ProofOp` to support
  357. generalized Merkle tree constructions where the leaves of one Merkle tree are
  358. the root of another. If you don't need this functionality, and you used to
  359. return `<proof bytes>` here, you should instead return a single `ProofOp` with
  360. just the `Data` field set:
  361. ```
  362. []ProofOp{
  363. ProofOp{
  364. Data: <proof bytes>,
  365. }
  366. }
  367. ```
  368. For more information, see:
  369. - [ADR-026](https://github.com/tendermint/tendermint/blob/30519e8361c19f4bf320ef4d26288ebc621ad725/docs/architecture/adr-026-general-merkle-proof.md)
  370. - [Relevant ABCI
  371. documentation](https://github.com/tendermint/tendermint/blob/30519e8361c19f4bf320ef4d26288ebc621ad725/docs/spec/abci/apps.md#query-proofs)
  372. - [Description of
  373. keys](https://github.com/tendermint/tendermint/blob/30519e8361c19f4bf320ef4d26288ebc621ad725/crypto/merkle/proof_key_path.go#L14)
  374. ### Go API Changes
  375. #### crypto/merkle
  376. The `merkle.Hasher` interface was removed. Functions which used to take `Hasher`
  377. now simply take `[]byte`. This means that any objects being Merklized should be
  378. serialized before they are passed in.
  379. #### node
  380. The `node.RunForever` function was removed. Signal handling and running forever
  381. should instead be explicitly configured by the caller. See how we do it
  382. [here](https://github.com/tendermint/tendermint/blob/30519e8361c19f4bf320ef4d26288ebc621ad725/cmd/tendermint/commands/run_node.go#L60).
  383. ### Other
  384. All hashes, except for public key addresses, are now 32-bytes.
  385. ## v0.25.0
  386. This release has minimal impact.
  387. If you use GasWanted in ABCI and want to enforce it, set the MaxGas in the genesis file (default is no max).
  388. ## v0.24.0
  389. New 0.24.0 release contains a lot of changes to the state and types. It's not
  390. compatible to the old versions and there is no straight forward way to update
  391. old data to be compatible with the new version.
  392. To reset the state do:
  393. ```
  394. $ tendermint unsafe_reset_all
  395. ```
  396. Here we summarize some other notable changes to be mindful of.
  397. ### Config changes
  398. `p2p.max_num_peers` was removed in favor of `p2p.max_num_inbound_peers` and
  399. `p2p.max_num_outbound_peers`.
  400. ```
  401. # Maximum number of inbound peers
  402. max_num_inbound_peers = 40
  403. # Maximum number of outbound peers to connect to, excluding persistent peers
  404. max_num_outbound_peers = 10
  405. ```
  406. As you can see, the default ratio of inbound/outbound peers is 4/1. The reason
  407. is we want it to be easier for new nodes to connect to the network. You can
  408. tweak these parameters to alter the network topology.
  409. ### RPC Changes
  410. The result of `/commit` used to contain `header` and `commit` fields at the top level. These are now contained under the `signed_header` field.
  411. ### ABCI Changes
  412. The header has been upgraded and contains new fields, but none of the existing
  413. fields were changed, except their order.
  414. The `Validator` type was split into two, one containing an `Address` and one
  415. containing a `PubKey`. When processing `RequestBeginBlock`, use the `Validator`
  416. type, which contains just the `Address`. When returning `ResponseEndBlock`, use
  417. the `ValidatorUpdate` type, which contains just the `PubKey`.
  418. ### Validator Set Updates
  419. Validator set updates returned in ResponseEndBlock for height `H` used to take
  420. effect immediately at height `H+1`. Now they will be delayed one block, to take
  421. effect at height `H+2`. Note this means that the change will be seen by the ABCI
  422. app in the `RequestBeginBlock.LastCommitInfo` at block `H+3`. Apps were already
  423. required to maintain a map from validator addresses to pubkeys since v0.23 (when
  424. pubkeys were removed from RequestBeginBlock), but now they may need to track
  425. multiple validator sets at once to accomodate this delay.
  426. ### Block Size
  427. The `ConsensusParams.BlockSize.MaxTxs` was removed in favour of
  428. `ConsensusParams.BlockSize.MaxBytes`, which is now enforced. This means blocks
  429. are limitted only by byte-size, not by number of transactions.