|
1 | 1 | # CHANGELOG
|
2 | 2 |
|
3 |
| -## Unreleased |
| 3 | +## v0.34.27 |
| 4 | + |
| 5 | +*Feb 27, 2023* |
| 6 | + |
| 7 | +This is the first official release of CometBFT - a fork of [Tendermint |
| 8 | +Core](https://github.com/tendermint/tendermint). This particular release is |
| 9 | +intended to be compatible with the Tendermint Core v0.34 release series. |
| 10 | + |
| 11 | +For details as to how to upgrade to CometBFT from Tendermint Core, please see |
| 12 | +our [upgrading guidelines](./UPGRADING.md). |
| 13 | + |
| 14 | +If you have any questions, comments, concerns or feedback on this release, we |
| 15 | +would love to hear from you! Please contact us via [GitHub |
| 16 | +Discussions](https://github.com/cometbft/cometbft/discussions), |
| 17 | +[Discord](https://discord.gg/cosmosnetwork) (in the `#cometbft` channel) or |
| 18 | +[Telegram](https://t.me/CometBFT). |
| 19 | + |
| 20 | +Special thanks to @wcsiu, @ze97286, @faddat and @JayT106 for their contributions |
| 21 | +to this release! |
4 | 22 |
|
5 | 23 | ### BREAKING CHANGES
|
6 | 24 |
|
7 | 25 | - Rename binary to `cometbft` and Docker image to `cometbft/cometbft`
|
8 | 26 | ([\#152](https://github.com/cometbft/cometbft/pull/152))
|
9 |
| -- The `TMHOME` environment variable was renamed to `CMTHOME`, and all environment variables starting with `TM_` are instead prefixed with `CMT_` |
| 27 | +- The `TMHOME` environment variable was renamed to `CMTHOME`, and all |
| 28 | + environment variables starting with `TM_` are instead prefixed with `CMT_` |
10 | 29 | ([\#211](https://github.com/cometbft/cometbft/issues/211))
|
| 30 | +- Use Go 1.19 to build CometBFT, since Go 1.18 has reached end-of-life. |
| 31 | + ([\#360](https://github.com/cometbft/cometbft/issues/360)) |
11 | 32 |
|
12 | 33 | ### BUG FIXES
|
13 | 34 |
|
14 |
| -- `[consensus]` Fixed a busy loop that happened when sending of a block part failed by sleeping in case of error. |
| 35 | +- `[consensus]` Fixed a busy loop that happened when sending of a block part |
| 36 | + failed by sleeping in case of error. |
15 | 37 | ([\#4](https://github.com/informalsystems/tendermint/pull/4))
|
| 38 | +- `[state/kvindexer]` Resolved crashes when event values contained slashes, |
| 39 | + introduced after adding event sequences. |
| 40 | + (\#[383](https://github.com/cometbft/cometbft/pull/383): @jmalicevic) |
| 41 | +- `[consensus]` Short-term fix for the case when `needProofBlock` cannot find |
| 42 | + previous block meta by defaulting to the creation of a new proof block. |
| 43 | + ([\#386](https://github.com/cometbft/cometbft/pull/386): @adizere) |
| 44 | + - Special thanks to the [Vega.xyz](https://vega.xyz/) team, and in particular |
| 45 | + to Zohar (@ze97286), for reporting the problem and working with us to get to |
| 46 | + a fix. |
16 | 47 | - `[p2p]` Correctly use non-blocking `TrySendEnvelope` method when attempting to
|
17 | 48 | send messages, as opposed to the blocking `SendEnvelope` method. It is unclear
|
18 | 49 | whether this has a meaningful impact on P2P performance, but this patch does
|
|
0 commit comments