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.

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