Skip to content

Commit 5cc2051

Browse files
authored
V5.7.2 release (#1788)
* Create release * Add changelog
1 parent 6e15122 commit 5cc2051

File tree

5 files changed

+21
-7
lines changed

5 files changed

+21
-7
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,19 @@ Ref: https://keepachangelog.com/en/1.0.0/
2727
-->
2828

2929
# Changelog
30+
## v5.7.1 & v5.7.2
31+
sei-chain
32+
* [#1779](https://github.com/sei-protocol/sei-chain/pull/1779) Fix subscribe logs empty params crash
33+
* [#1783](https://github.com/sei-protocol/sei-chain/pull/1783) Add meaningful message for eth_call balance override overflow
34+
* [#1783](https://github.com/sei-protocol/sei-chain/pull/1784) Fix log index on synthetic receipt
35+
* [#1775](https://github.com/sei-protocol/sei-chain/pull/1775) Disallow sending to direct cast addr after association
36+
37+
sei-wasmd
38+
* [60](https://github.com/sei-protocol/sei-wasmd/pull/60) Query penalty fixes
39+
40+
sei-tendermint
41+
* [#237](https://github.com/sei-protocol/sei-tendermint/pull/237) Add metrics for total txs bytes in mempool
42+
3043
## v5.7.0
3144
sei-chain
3245
* [#1731](https://github.com/sei-protocol/sei-chain/pull/1731) Remove 1-hop limit

app/app.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1040,7 +1040,7 @@ func (app *App) SetStoreUpgradeHandlers() {
10401040
app.SetStoreLoader(upgradetypes.UpgradeStoreLoader(upgradeInfo.Height, &storeUpgrades))
10411041
}
10421042
// TODO: change this upgrade name if the planned upgrade version number ends up changing more
1043-
if upgradeInfo.Name == "v5.7.1" && !app.UpgradeKeeper.IsSkipHeight(upgradeInfo.Height) {
1043+
if ((app.ChainID == "arctic-1" && upgradeInfo.Name == "v5.7.1") || (app.ChainID != "arctic-1" && upgradeInfo.Name == "v5.7.2")) && !app.UpgradeKeeper.IsSkipHeight(upgradeInfo.Height) {
10441044
dexStoreKeyName := "dex"
10451045
storeUpgrades := storetypes.StoreUpgrades{
10461046
Deleted: []string{dexStoreKeyName},

app/upgrades.go

+1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ var upgradesList = []string{
106106
"v5.6.2",
107107
"v5.7.0",
108108
"v5.7.1",
109+
"v5.7.2",
109110
}
110111

111112
// if there is an override list, use that instead, for integration tests

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ require (
344344
)
345345

346346
replace (
347-
github.com/CosmWasm/wasmd => github.com/sei-protocol/sei-wasmd v0.2.0
347+
github.com/CosmWasm/wasmd => github.com/sei-protocol/sei-wasmd v0.2.2
348348
github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0
349349
github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.3.27
350350
github.com/cosmos/iavl => github.com/sei-protocol/sei-iavl v0.1.9
@@ -354,7 +354,7 @@ replace (
354354
github.com/sei-protocol/sei-db => github.com/sei-protocol/sei-db v0.0.40
355355
// Latest goleveldb is broken, we have to stick to this version
356356
github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
357-
github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.3.4
357+
github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.3.5
358358
github.com/tendermint/tm-db => github.com/sei-protocol/tm-db v0.0.4
359359
google.golang.org/grpc => google.golang.org/grpc v1.33.2
360360
)

go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -1355,12 +1355,12 @@ github.com/sei-protocol/sei-iavl v0.1.9 h1:y4mVYftxLNRs6533zl7N0/Ch+CzRQc04JDfHo
13551355
github.com/sei-protocol/sei-iavl v0.1.9/go.mod h1:7PfkEVT5dcoQE+s/9KWdoXJ8VVVP1QpYYPLdxlkSXFk=
13561356
github.com/sei-protocol/sei-ibc-go/v3 v3.3.1 h1:BPG9LWe27x3SATpY9nj8JPe+0igyKyrcpB0z2ZvdcXQ=
13571357
github.com/sei-protocol/sei-ibc-go/v3 v3.3.1/go.mod h1:VwB/vWu4ysT5DN2aF78d17LYmx3omSAdq6gpKvM7XRA=
1358-
github.com/sei-protocol/sei-tendermint v0.3.4 h1:pAMXB2Cd0/rmmEkPgcEdIEjw7k64K7+cR2/2IuWBmM4=
1359-
github.com/sei-protocol/sei-tendermint v0.3.4/go.mod h1:4LSlJdhl3nf3OmohliwRNUFLOB1XWlrmSodrIP7fLh4=
1358+
github.com/sei-protocol/sei-tendermint v0.3.5 h1:HNHCiLfiZs+O3azdrzGCPwhKaR3HPK2WAB+Ce/UP6Ns=
1359+
github.com/sei-protocol/sei-tendermint v0.3.5/go.mod h1:4LSlJdhl3nf3OmohliwRNUFLOB1XWlrmSodrIP7fLh4=
13601360
github.com/sei-protocol/sei-tm-db v0.0.5 h1:3WONKdSXEqdZZeLuWYfK5hP37TJpfaUa13vAyAlvaQY=
13611361
github.com/sei-protocol/sei-tm-db v0.0.5/go.mod h1:Cpa6rGyczgthq7/0pI31jys2Fw0Nfrc+/jKdP1prVqY=
1362-
github.com/sei-protocol/sei-wasmd v0.2.0 h1:DiR5u7ZRtRKMYjvGPsH+/nMnJAprcFovbaITLf1Et0Y=
1363-
github.com/sei-protocol/sei-wasmd v0.2.0/go.mod h1:EnQkqvUA3tYpdgXjqatHK8ym9LCm1z+lM7XMqR9SA3o=
1362+
github.com/sei-protocol/sei-wasmd v0.2.2 h1:0jwGW2E5xlmyP1z1BHEOa60DKMwXxkjd91htbr+bIR4=
1363+
github.com/sei-protocol/sei-wasmd v0.2.2/go.mod h1:EnQkqvUA3tYpdgXjqatHK8ym9LCm1z+lM7XMqR9SA3o=
13641364
github.com/sei-protocol/tm-db v0.0.4 h1:7Y4EU62Xzzg6wKAHEotm7SXQR0aPLcGhKHkh3qd0tnk=
13651365
github.com/sei-protocol/tm-db v0.0.4/go.mod h1:PWsIWOTwdwC7Ow/GUvx8HgUJTO691pBuorIQD8JvwAs=
13661366
github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM=

0 commit comments

Comments
 (0)