From 5835b14740d0b3f96646467238f73373aa5e40a0 Mon Sep 17 00:00:00 2001 From: eliasmpw Date: Wed, 11 Sep 2024 20:03:33 +0200 Subject: [PATCH 1/2] fix(core): workaround for batching issue in V9 --- CHANGELOG.md | 9 +++++++++ packages/arch3-core/src/utils.ts | 10 ++++++---- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 574f83b..6c56410 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## v0.7.2 (Unreleased) + +### Fixed + +#### **arch3-core** + +- make `connectToRpcClient` use 0.37.x version of Tendermint for both 0.37.x and 0.38.x +RPC Clients as a workaround for a bug in batching requests in Archway V9 ([#121]) + ## v0.7.1 (2024-07-08) ### Added diff --git a/packages/arch3-core/src/utils.ts b/packages/arch3-core/src/utils.ts index e44dfc0..915302c 100644 --- a/packages/arch3-core/src/utils.ts +++ b/packages/arch3-core/src/utils.ts @@ -10,15 +10,17 @@ export async function connectToRpcClient(rpcClient: RpcClient): Promise Date: Wed, 11 Sep 2024 20:13:22 +0200 Subject: [PATCH 2/2] fix: changelog line formatting --- CHANGELOG.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c56410..5fac9dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,8 +11,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). #### **arch3-core** -- make `connectToRpcClient` use 0.37.x version of Tendermint for both 0.37.x and 0.38.x -RPC Clients as a workaround for a bug in batching requests in Archway V9 ([#121]) +- make `connectToRpcClient` use 0.37.x version of Tendermint for both 0.37.x +and 0.38.x RPC Clients as a workaround for a bug in batching requests in +Archway V9 ([#121]) ## v0.7.1 (2024-07-08)