Skip to content

Commit

Permalink
release: prepare v0.34.21 (#9285)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmwaters committed Aug 18, 2022
1 parent bca737c commit a41c5ee
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 26 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@

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

## v0.34.21

Release highlights include:

- A new `[storage]` configuration section and flag `discard_abci_responses`,
which, if enabled, discards all ABCI responses except the latest one in order
to reduce disk space usage in the state store. When enabled, the
`block_results` RPC endpoint can no longer function and will return an error.
- A new CLI command, `reindex-event`, to re-index block and tx events to the
event sinks. You can run this command when the event store backend
dropped/disconnected or you want to replace the backend. When
`discard_abci_responses` is enabled, you will not be able to use this command.

Special thanks to external contributors on this release: @rootwarp & @animart

### FEATURES

- [cli] [\#9083](https://github.com/tendermint/tendermint/issues/9083) Backport command to reindex missed events (@cmwaters)
- [cli] [\#9107](https://github.com/tendermint/tendermint/issues/9107) Add the `p2p.external-address` argument to set the node P2P external address (@amimart)

### IMPROVEMENTS

- [config] [\#9054](https://github.com/tendermint/tendermint/issues/9054) `discard_abci_responses` flag added to discard all ABCI
responses except the last in order to save on storage space in the state
store (@samricotta)

### BUG FIXES

- [mempool] [\#9033](https://github.com/tendermint/tendermint/issues/9033) Rework lock discipline to mitigate callback deadlocks in the
priority mempool
- [cli] [\#9103](https://github.com/tendermint/tendermint/issues/9103) fix unsafe-reset-all for working with home path (@rootwarp)

## v0.34.20

Special thanks to external contributors on this release: @joeabbey @yihuang
Expand Down
26 changes: 1 addition & 25 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,6 @@
# Unreleased Changes

## v0.34.21

Release highlights include:
- A new `[storage]` configuration section and flag `discard_abci_responses`,
which, if enabled, discards all ABCI responses except the latest one in order
to reduce disk space usage in the state store. When enabled, the
`block_results` RPC endpoint can no longer function and will return an error.
- A new CLI command, `reindex-event`, to re-index block and tx events to the
event sinks. You can run this command when the event store backend
dropped/disconnected or you want to replace the backend. When
`discard_abci_responses` is enabled, you will not be able to use this command.

Special thanks to external contributors on this release:

Friendly reminder, we have a [bug bounty program](https://hackerone.com/tendermint).
## v0.34.22

### BREAKING CHANGES

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

### FEATURES

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

### IMPROVEMENTS

- [config] \#9054 `discard_abci_responses` flag added to discard all ABCI
responses except the last in order to save on storage space in the state
store (@samricotta)

### BUG FIXES

- [mempool] \#9033 Rework lock discipline to mitigate callback deadlocks in the
priority mempool
- [cli] \#9103 fix unsafe-reset-all for working with home path (@rootwarp)
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var (
const (
// TMVersionDefault is the used as the fallback version of Tendermint Core
// when not using git describe. It is formatted with semantic versioning.
TMVersionDefault = "0.34.20"
TMVersionDefault = "0.34.21"
// ABCISemVer is the semantic version of the ABCI library
ABCISemVer = "0.17.0"

Expand Down

0 comments on commit a41c5ee

Please sign in to comment.