From f359919af0e33ae2c1f76987a83f7e3be005bbf8 Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Mon, 9 Oct 2023 11:39:05 +0200 Subject: [PATCH 1/4] chore(release): update changelog and version to 0.13.2 --- CHANGELOG.md | 10 ++++++++++ version/version.go | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2ebdd8ff3..c439e2145b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [0.13.2] - 2023-10-09 + +### Bug Fixes + +- Log-file-path setting does not work (#691) + ## [0.13.1] - 2023-09-14 ### Bug Fixes @@ -5,6 +11,10 @@ - Send evidence only once (#683) - Panic verifying evidence due to missing pubkey (#684) +### Miscellaneous Tasks + +- Update changelog and version to 0.13.1 + ## [0.13.0] - 2023-09-13 ### Bug Fixes diff --git a/version/version.go b/version/version.go index 70dec25555..81c4a5bfb1 100644 --- a/version/version.go +++ b/version/version.go @@ -9,7 +9,7 @@ var ( const ( // TMVersionDefault is the used as the fallback version for Tenderdash // when not using git describe. It is formatted with semantic versioning. - TMVersionDefault = "0.13.1" + TMVersionDefault = "0.13.2" // ABCISemVer is the semantic version of the ABCI library ABCISemVer = "0.23.0" From 194e664640de2f459c82f96b972d294243543852 Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Mon, 16 Oct 2023 16:59:53 +0200 Subject: [PATCH 2/4] chore(release): update changelog and version to 0.13.3 --- CHANGELOG.md | 11 +++++++++++ version/version.go | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c439e2145b..1b63e7136c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,20 @@ +## [0.13.3] - 2023-10-16 + +### Bug Fixes + +- Issue with GMP not properly being linked on mac (#698) +- Always propose with current app version (#697) + ## [0.13.2] - 2023-10-09 ### Bug Fixes - Log-file-path setting does not work (#691) +### Miscellaneous Tasks + +- Update changelog and version to 0.13.2 + ## [0.13.1] - 2023-09-14 ### Bug Fixes diff --git a/version/version.go b/version/version.go index 81c4a5bfb1..8e1bb184b4 100644 --- a/version/version.go +++ b/version/version.go @@ -9,7 +9,7 @@ var ( const ( // TMVersionDefault is the used as the fallback version for Tenderdash // when not using git describe. It is formatted with semantic versioning. - TMVersionDefault = "0.13.2" + TMVersionDefault = "0.13.3" // ABCISemVer is the semantic version of the ABCI library ABCISemVer = "0.23.0" From d997fb69fae491887fd964f6e818f5b550b2f6b1 Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Thu, 7 Dec 2023 12:10:10 +0100 Subject: [PATCH 3/4] chore: increase defaultWSWriteChanCapacity 100 -> 500 --- rpc/jsonrpc/server/ws_handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/jsonrpc/server/ws_handler.go b/rpc/jsonrpc/server/ws_handler.go index bb897680e4..0f9ed2daba 100644 --- a/rpc/jsonrpc/server/ws_handler.go +++ b/rpc/jsonrpc/server/ws_handler.go @@ -17,7 +17,7 @@ import ( // WebSocket handler const ( - defaultWSWriteChanCapacity = 100 + defaultWSWriteChanCapacity = 500 defaultWSWriteWait = 10 * time.Second defaultWSReadWait = 30 * time.Second defaultWSPingPeriod = (defaultWSReadWait * 9) / 10 From 31c87ed20bac1deeeeb1152c776e4c89b5e951ca Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Thu, 7 Dec 2023 12:23:32 +0100 Subject: [PATCH 4/4] chore: subBufferSize 500 --- internal/rpc/core/events.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/rpc/core/events.go b/internal/rpc/core/events.go index 023d45a2d7..da8e6088ee 100644 --- a/internal/rpc/core/events.go +++ b/internal/rpc/core/events.go @@ -17,7 +17,7 @@ import ( const ( // Buffer on the Tendermint (server) side to allow some slowness in clients. - subBufferSize = 100 + subBufferSize = 500 // maxQueryLength is the maximum length of a query string that will be // accepted. This is just a safety check to avoid outlandish queries.