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.

945 lines
37 KiB

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