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.

774 lines
30 KiB

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