Skip to content

Commit a41c5ee

Browse files
authored
release: prepare v0.34.21 (#9285)
1 parent bca737c commit a41c5ee

File tree

3 files changed

+34
-26
lines changed

3 files changed

+34
-26
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,38 @@
22

33
Friendly reminder, we have a [bug bounty program](https://hackerone.com/cosmos).
44

5+
## v0.34.21
6+
7+
Release highlights include:
8+
9+
- A new `[storage]` configuration section and flag `discard_abci_responses`,
10+
which, if enabled, discards all ABCI responses except the latest one in order
11+
to reduce disk space usage in the state store. When enabled, the
12+
`block_results` RPC endpoint can no longer function and will return an error.
13+
- A new CLI command, `reindex-event`, to re-index block and tx events to the
14+
event sinks. You can run this command when the event store backend
15+
dropped/disconnected or you want to replace the backend. When
16+
`discard_abci_responses` is enabled, you will not be able to use this command.
17+
18+
Special thanks to external contributors on this release: @rootwarp & @animart
19+
20+
### FEATURES
21+
22+
- [cli] [\#9083](https://github.com/tendermint/tendermint/issues/9083) Backport command to reindex missed events (@cmwaters)
23+
- [cli] [\#9107](https://github.com/tendermint/tendermint/issues/9107) Add the `p2p.external-address` argument to set the node P2P external address (@amimart)
24+
25+
### IMPROVEMENTS
26+
27+
- [config] [\#9054](https://github.com/tendermint/tendermint/issues/9054) `discard_abci_responses` flag added to discard all ABCI
28+
responses except the last in order to save on storage space in the state
29+
store (@samricotta)
30+
31+
### BUG FIXES
32+
33+
- [mempool] [\#9033](https://github.com/tendermint/tendermint/issues/9033) Rework lock discipline to mitigate callback deadlocks in the
34+
priority mempool
35+
- [cli] [\#9103](https://github.com/tendermint/tendermint/issues/9103) fix unsafe-reset-all for working with home path (@rootwarp)
36+
537
## v0.34.20
638

739
Special thanks to external contributors on this release: @joeabbey @yihuang

CHANGELOG_PENDING.md

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,6 @@
11
# Unreleased Changes
22

3-
## v0.34.21
4-
5-
Release highlights include:
6-
- A new `[storage]` configuration section and flag `discard_abci_responses`,
7-
which, if enabled, discards all ABCI responses except the latest one in order
8-
to reduce disk space usage in the state store. When enabled, the
9-
`block_results` RPC endpoint can no longer function and will return an error.
10-
- A new CLI command, `reindex-event`, to re-index block and tx events to the
11-
event sinks. You can run this command when the event store backend
12-
dropped/disconnected or you want to replace the backend. When
13-
`discard_abci_responses` is enabled, you will not be able to use this command.
14-
15-
Special thanks to external contributors on this release:
16-
17-
Friendly reminder, we have a [bug bounty program](https://hackerone.com/tendermint).
3+
## v0.34.22
184

195
### BREAKING CHANGES
206

@@ -30,17 +16,7 @@ Friendly reminder, we have a [bug bounty program](https://hackerone.com/tendermi
3016

3117
### FEATURES
3218

33-
- [cli] \#9083 Backport command to reindex missed events (@cmwaters)
34-
- [cli] \#9107 Add the `p2p.external-address` argument to set the node P2P external address (@amimart)
35-
3619
### IMPROVEMENTS
3720

38-
- [config] \#9054 `discard_abci_responses` flag added to discard all ABCI
39-
responses except the last in order to save on storage space in the state
40-
store (@samricotta)
41-
4221
### BUG FIXES
4322

44-
- [mempool] \#9033 Rework lock discipline to mitigate callback deadlocks in the
45-
priority mempool
46-
- [cli] \#9103 fix unsafe-reset-all for working with home path (@rootwarp)

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var (
77
const (
88
// TMVersionDefault is the used as the fallback version of Tendermint Core
99
// when not using git describe. It is formatted with semantic versioning.
10-
TMVersionDefault = "0.34.20"
10+
TMVersionDefault = "0.34.21"
1111
// ABCISemVer is the semantic version of the ABCI library
1212
ABCISemVer = "0.17.0"
1313

0 commit comments

Comments
 (0)