Skip to content

Commit a6dd0d2

Browse files
authored
Release v0.34.22 (tendermint#9583)
* Add changelog entry for v0.34.22 Signed-off-by: Thane Thomson <[email protected]> * Prepare pending changelog for v0.34.23 Signed-off-by: Thane Thomson <[email protected]> * Bump version to v0.34.22 Signed-off-by: Thane Thomson <[email protected]> * Reword changelog entry regarding block sync issue Signed-off-by: Thane Thomson <[email protected]> Signed-off-by: Thane Thomson <[email protected]>
1 parent bf4688b commit a6dd0d2

File tree

3 files changed

+33
-14
lines changed

3 files changed

+33
-14
lines changed

CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,36 @@
22

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

5+
## v0.34.22
6+
7+
This release includes several bug fixes, [one of
8+
which](https://github.com/tendermint/tendermint/pull/9518) we discovered while
9+
building up a baseline for v0.34 against which to compare our upcoming v0.37
10+
release during our [QA process](./docs/qa/).
11+
12+
Special thanks to external contributors on this release: @RiccardoM
13+
14+
### FEATURES
15+
16+
- [rpc] [\#9423](https://github.com/tendermint/tendermint/pull/9423) Support
17+
HTTPS URLs from the WebSocket client (@RiccardoM, @cmwaters)
18+
19+
### BUG FIXES
20+
21+
- [config] [\#9483](https://github.com/tendermint/tendermint/issues/9483)
22+
Calling `tendermint init` would incorrectly leave out the new `[storage]`
23+
section delimiter in the generated configuration file - this has now been
24+
fixed
25+
- [p2p] [\#9500](https://github.com/tendermint/tendermint/issues/9500) Prevent
26+
peers who have errored being added to the peer set (@jmalicevic)
27+
- [indexer] [\#9473](https://github.com/tendermint/tendermint/issues/9473) Fix
28+
bug that caused the psql indexer to index empty blocks whenever one of the
29+
transactions returned a non zero code. The relevant deduplication logic has
30+
been moved within the kv indexer only (@cmwaters)
31+
- [blocksync] [\#9518](https://github.com/tendermint/tendermint/issues/9518) A
32+
block sync stall was observed during our QA process whereby the node was
33+
unable to make progress. Retrying block requests after a timeout fixes this.
34+
535
## v0.34.21
636

737
Release highlights include:

CHANGELOG_PENDING.md

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Unreleased Changes
22

3-
## v0.34.22
3+
## v0.34.23
44

55
### BREAKING CHANGES
66

@@ -16,15 +16,6 @@
1616

1717
### FEATURES
1818

19-
- [rpc] support https inside websocket (@RiccardoM, @cmwaters)
20-
2119
### IMPROVEMENTS
2220

2321
### BUG FIXES
24-
25-
- [config] \#9483 Calling `tendermint init` would incorrectly leave out the new
26-
`[storage]` section delimiter in the generated configuration file - this has
27-
now been fixed
28-
- [p2p] \#9500 prevent peers who have errored being added to the peer_set (@jmalicevic)
29-
- [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)
30-
- [blocksync] \#9518 handle the case when the sending queue is full: retry block request after a timeout

version/version.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
package version
22

3-
var (
4-
TMCoreSemVer = TMVersionDefault
5-
)
3+
var TMCoreSemVer = TMVersionDefault
64

75
const (
86
// TMVersionDefault is the used as the fallback version of Tendermint Core
97
// when not using git describe. It is formatted with semantic versioning.
10-
TMVersionDefault = "0.34.21"
8+
TMVersionDefault = "0.34.22"
119
// ABCISemVer is the semantic version of the ABCI library
1210
ABCISemVer = "0.17.0"
1311

0 commit comments

Comments
 (0)