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.

730 lines
28 KiB

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