You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This release is primarily about adding Version fields to various data structures,
12
+
optimizing consensus messages for signing and verification in
13
+
restricted environments (like HSMs and the Ethereum Virtual Machine), and
14
+
aligning the consensus code with the [specification](https://arxiv.org/abs/1807.04938).
15
+
It also includes our first take at a generalized merkle proof system.
16
+
17
+
See the [UPGRADING.md](UPGRADING.md#v0.26.0) for details on upgrading to the new
18
+
version.
19
+
20
+
Friendly reminder, we have a [bug bounty program](https://hackerone.com/tendermint).
5
21
6
22
BREAKING CHANGES:
7
23
8
24
* CLI/RPC/Config
9
25
*[config]\#2232 timeouts as time.Duration, not ints
10
26
*[config]\#2505 Remove Mempool.RecheckEmpty (it was effectively useless anyways)
11
27
*[config]`mempool.wal` is disabled by default
12
-
*[rpc]\#2298 `/abci_query` takes `prove` argument instead of `trusted` and switches the default
13
-
behaviour to `prove=false`
14
28
*[privval]\#2459 Split `SocketPVMsg`s implementations into Request and Response, where the Response may contain a error message (returned by the remote signer)
15
29
*[state]\#2644 Add Version field to State, breaking the format of State as
16
30
encoded on disk.
31
+
*[rpc]\#2298 `/abci_query` takes `prove` argument instead of `trusted` and switches the default
32
+
behaviour to `prove=false`
17
33
*[rpc]\#2654 Remove all `node_info.other.*_version` fields in `/status` and
18
34
`/net_info`
19
35
@@ -25,13 +41,13 @@ BREAKING CHANGES:
25
41
`AppVersion`
26
42
27
43
* Go API
28
-
*[node] Remove node.RunForever
29
44
*[config]\#2232 timeouts as time.Duration, not ints
0 commit comments