From 5cc20516d691895bd38a8a640db17d2f4718c492 Mon Sep 17 00:00:00 2001 From: Philip Su Date: Mon, 29 Jul 2024 12:37:07 -0700 Subject: [PATCH] V5.7.2 release (#1788) * Create release * Add changelog --- CHANGELOG.md | 13 +++++++++++++ app/app.go | 2 +- app/upgrades.go | 1 + go.mod | 4 ++-- go.sum | 8 ++++---- 5 files changed, 21 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81cff3fe9a..578d175c34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,19 @@ Ref: https://keepachangelog.com/en/1.0.0/ --> # Changelog +## v5.7.1 & v5.7.2 +sei-chain +* [#1779](https://github.com/sei-protocol/sei-chain/pull/1779) Fix subscribe logs empty params crash +* [#1783](https://github.com/sei-protocol/sei-chain/pull/1783) Add meaningful message for eth_call balance override overflow +* [#1783](https://github.com/sei-protocol/sei-chain/pull/1784) Fix log index on synthetic receipt +* [#1775](https://github.com/sei-protocol/sei-chain/pull/1775) Disallow sending to direct cast addr after association + +sei-wasmd +* [60](https://github.com/sei-protocol/sei-wasmd/pull/60) Query penalty fixes + +sei-tendermint +* [#237](https://github.com/sei-protocol/sei-tendermint/pull/237) Add metrics for total txs bytes in mempool + ## v5.7.0 sei-chain * [#1731](https://github.com/sei-protocol/sei-chain/pull/1731) Remove 1-hop limit diff --git a/app/app.go b/app/app.go index 37724b340b..3121af2f0c 100644 --- a/app/app.go +++ b/app/app.go @@ -1040,7 +1040,7 @@ func (app *App) SetStoreUpgradeHandlers() { app.SetStoreLoader(upgradetypes.UpgradeStoreLoader(upgradeInfo.Height, &storeUpgrades)) } // TODO: change this upgrade name if the planned upgrade version number ends up changing more - if upgradeInfo.Name == "v5.7.1" && !app.UpgradeKeeper.IsSkipHeight(upgradeInfo.Height) { + if ((app.ChainID == "arctic-1" && upgradeInfo.Name == "v5.7.1") || (app.ChainID != "arctic-1" && upgradeInfo.Name == "v5.7.2")) && !app.UpgradeKeeper.IsSkipHeight(upgradeInfo.Height) { dexStoreKeyName := "dex" storeUpgrades := storetypes.StoreUpgrades{ Deleted: []string{dexStoreKeyName}, diff --git a/app/upgrades.go b/app/upgrades.go index 382b4f68db..ea8170b323 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -106,6 +106,7 @@ var upgradesList = []string{ "v5.6.2", "v5.7.0", "v5.7.1", + "v5.7.2", } // if there is an override list, use that instead, for integration tests diff --git a/go.mod b/go.mod index 8314542aac..0a3df3db3e 100644 --- a/go.mod +++ b/go.mod @@ -344,7 +344,7 @@ require ( ) replace ( - github.com/CosmWasm/wasmd => github.com/sei-protocol/sei-wasmd v0.2.0 + github.com/CosmWasm/wasmd => github.com/sei-protocol/sei-wasmd v0.2.2 github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0 github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.3.27 github.com/cosmos/iavl => github.com/sei-protocol/sei-iavl v0.1.9 @@ -354,7 +354,7 @@ replace ( github.com/sei-protocol/sei-db => github.com/sei-protocol/sei-db v0.0.40 // Latest goleveldb is broken, we have to stick to this version github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 - github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.3.4 + github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.3.5 github.com/tendermint/tm-db => github.com/sei-protocol/tm-db v0.0.4 google.golang.org/grpc => google.golang.org/grpc v1.33.2 ) diff --git a/go.sum b/go.sum index b02d9003b4..51de065aaf 100644 --- a/go.sum +++ b/go.sum @@ -1355,12 +1355,12 @@ github.com/sei-protocol/sei-iavl v0.1.9 h1:y4mVYftxLNRs6533zl7N0/Ch+CzRQc04JDfHo github.com/sei-protocol/sei-iavl v0.1.9/go.mod h1:7PfkEVT5dcoQE+s/9KWdoXJ8VVVP1QpYYPLdxlkSXFk= github.com/sei-protocol/sei-ibc-go/v3 v3.3.1 h1:BPG9LWe27x3SATpY9nj8JPe+0igyKyrcpB0z2ZvdcXQ= github.com/sei-protocol/sei-ibc-go/v3 v3.3.1/go.mod h1:VwB/vWu4ysT5DN2aF78d17LYmx3omSAdq6gpKvM7XRA= -github.com/sei-protocol/sei-tendermint v0.3.4 h1:pAMXB2Cd0/rmmEkPgcEdIEjw7k64K7+cR2/2IuWBmM4= -github.com/sei-protocol/sei-tendermint v0.3.4/go.mod h1:4LSlJdhl3nf3OmohliwRNUFLOB1XWlrmSodrIP7fLh4= +github.com/sei-protocol/sei-tendermint v0.3.5 h1:HNHCiLfiZs+O3azdrzGCPwhKaR3HPK2WAB+Ce/UP6Ns= +github.com/sei-protocol/sei-tendermint v0.3.5/go.mod h1:4LSlJdhl3nf3OmohliwRNUFLOB1XWlrmSodrIP7fLh4= github.com/sei-protocol/sei-tm-db v0.0.5 h1:3WONKdSXEqdZZeLuWYfK5hP37TJpfaUa13vAyAlvaQY= github.com/sei-protocol/sei-tm-db v0.0.5/go.mod h1:Cpa6rGyczgthq7/0pI31jys2Fw0Nfrc+/jKdP1prVqY= -github.com/sei-protocol/sei-wasmd v0.2.0 h1:DiR5u7ZRtRKMYjvGPsH+/nMnJAprcFovbaITLf1Et0Y= -github.com/sei-protocol/sei-wasmd v0.2.0/go.mod h1:EnQkqvUA3tYpdgXjqatHK8ym9LCm1z+lM7XMqR9SA3o= +github.com/sei-protocol/sei-wasmd v0.2.2 h1:0jwGW2E5xlmyP1z1BHEOa60DKMwXxkjd91htbr+bIR4= +github.com/sei-protocol/sei-wasmd v0.2.2/go.mod h1:EnQkqvUA3tYpdgXjqatHK8ym9LCm1z+lM7XMqR9SA3o= github.com/sei-protocol/tm-db v0.0.4 h1:7Y4EU62Xzzg6wKAHEotm7SXQR0aPLcGhKHkh3qd0tnk= github.com/sei-protocol/tm-db v0.0.4/go.mod h1:PWsIWOTwdwC7Ow/GUvx8HgUJTO691pBuorIQD8JvwAs= github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM=