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.

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