From a6dd0d270abc3c01f223eedee44d8b285ae273f6 Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Tue, 18 Oct 2022 13:04:13 -0400 Subject: [PATCH] Release v0.34.22 (#9583) * Add changelog entry for v0.34.22 Signed-off-by: Thane Thomson * Prepare pending changelog for v0.34.23 Signed-off-by: Thane Thomson * Bump version to v0.34.22 Signed-off-by: Thane Thomson * Reword changelog entry regarding block sync issue Signed-off-by: Thane Thomson Signed-off-by: Thane Thomson --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ CHANGELOG_PENDING.md | 11 +---------- version/version.go | 6 ++---- 3 files changed, 33 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ac5059aab2..f3eee086af8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,36 @@ Friendly reminder, we have a [bug bounty program](https://hackerone.com/cosmos). +## v0.34.22 + +This release includes several bug fixes, [one of +which](https://github.com/tendermint/tendermint/pull/9518) we discovered while +building up a baseline for v0.34 against which to compare our upcoming v0.37 +release during our [QA process](./docs/qa/). + +Special thanks to external contributors on this release: @RiccardoM + +### FEATURES + +- [rpc] [\#9423](https://github.com/tendermint/tendermint/pull/9423) Support + HTTPS URLs from the WebSocket client (@RiccardoM, @cmwaters) + +### BUG FIXES + +- [config] [\#9483](https://github.com/tendermint/tendermint/issues/9483) + Calling `tendermint init` would incorrectly leave out the new `[storage]` + section delimiter in the generated configuration file - this has now been + fixed +- [p2p] [\#9500](https://github.com/tendermint/tendermint/issues/9500) Prevent + peers who have errored being added to the peer set (@jmalicevic) +- [indexer] [\#9473](https://github.com/tendermint/tendermint/issues/9473) Fix + bug that caused the psql indexer to index empty blocks whenever one of the + transactions returned a non zero code. The relevant deduplication logic has + been moved within the kv indexer only (@cmwaters) +- [blocksync] [\#9518](https://github.com/tendermint/tendermint/issues/9518) A + block sync stall was observed during our QA process whereby the node was + unable to make progress. Retrying block requests after a timeout fixes this. + ## v0.34.21 Release highlights include: diff --git a/CHANGELOG_PENDING.md b/CHANGELOG_PENDING.md index 151b15d0a3b..1b0f21f58c6 100644 --- a/CHANGELOG_PENDING.md +++ b/CHANGELOG_PENDING.md @@ -1,6 +1,6 @@ # Unreleased Changes -## v0.34.22 +## v0.34.23 ### BREAKING CHANGES @@ -16,15 +16,6 @@ ### FEATURES -- [rpc] support https inside websocket (@RiccardoM, @cmwaters) - ### IMPROVEMENTS ### BUG FIXES - -- [config] \#9483 Calling `tendermint init` would incorrectly leave out the new - `[storage]` section delimiter in the generated configuration file - this has - now been fixed -- [p2p] \#9500 prevent peers who have errored being added to the peer_set (@jmalicevic) -- [indexer] \#9473 fix bug that caused the psql indexer to index empty blocks whenever one of the transactions returned a non zero code. The relevant deduplication logic has been moved within the kv indexer only (@cmwaters) -- [blocksync] \#9518 handle the case when the sending queue is full: retry block request after a timeout diff --git a/version/version.go b/version/version.go index f90d1bb2b82..1b4c446c45e 100644 --- a/version/version.go +++ b/version/version.go @@ -1,13 +1,11 @@ package version -var ( - TMCoreSemVer = TMVersionDefault -) +var TMCoreSemVer = TMVersionDefault 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.21" + TMVersionDefault = "0.34.22" // ABCISemVer is the semantic version of the ABCI library ABCISemVer = "0.17.0"