File tree 5 files changed +21
-7
lines changed
5 files changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,19 @@ Ref: https://keepachangelog.com/en/1.0.0/
27
27
-->
28
28
29
29
# 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
+
30
43
## v5.7.0
31
44
sei-chain
32
45
* [ #1731 ] ( https://github.com/sei-protocol/sei-chain/pull/1731 ) Remove 1-hop limit
Original file line number Diff line number Diff line change @@ -1040,7 +1040,7 @@ func (app *App) SetStoreUpgradeHandlers() {
1040
1040
app .SetStoreLoader (upgradetypes .UpgradeStoreLoader (upgradeInfo .Height , & storeUpgrades ))
1041
1041
}
1042
1042
// 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 ) {
1044
1044
dexStoreKeyName := "dex"
1045
1045
storeUpgrades := storetypes.StoreUpgrades {
1046
1046
Deleted : []string {dexStoreKeyName },
Original file line number Diff line number Diff line change @@ -106,6 +106,7 @@ var upgradesList = []string{
106
106
"v5.6.2" ,
107
107
"v5.7.0" ,
108
108
"v5.7.1" ,
109
+ "v5.7.2" ,
109
110
}
110
111
111
112
// if there is an override list, use that instead, for integration tests
Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ require (
344
344
)
345
345
346
346
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
348
348
github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0
349
349
github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.3.27
350
350
github.com/cosmos/iavl => github.com/sei-protocol/sei-iavl v0.1.9
@@ -354,7 +354,7 @@ replace (
354
354
github.com/sei-protocol/sei-db => github.com/sei-protocol/sei-db v0.0.40
355
355
// Latest goleveldb is broken, we have to stick to this version
356
356
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
358
358
github.com/tendermint/tm-db => github.com/sei-protocol/tm-db v0.0.4
359
359
google.golang.org/grpc => google.golang.org/grpc v1.33.2
360
360
)
Original file line number Diff line number Diff line change @@ -1355,12 +1355,12 @@ github.com/sei-protocol/sei-iavl v0.1.9 h1:y4mVYftxLNRs6533zl7N0/Ch+CzRQc04JDfHo
1355
1355
github.com/sei-protocol/sei-iavl v0.1.9 /go.mod h1:7PfkEVT5dcoQE+s/9KWdoXJ8VVVP1QpYYPLdxlkSXFk =
1356
1356
github.com/sei-protocol/sei-ibc-go/v3 v3.3.1 h1:BPG9LWe27x3SATpY9nj8JPe+0igyKyrcpB0z2ZvdcXQ =
1357
1357
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 =
1360
1360
github.com/sei-protocol/sei-tm-db v0.0.5 h1:3WONKdSXEqdZZeLuWYfK5hP37TJpfaUa13vAyAlvaQY =
1361
1361
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 =
1364
1364
github.com/sei-protocol/tm-db v0.0.4 h1:7Y4EU62Xzzg6wKAHEotm7SXQR0aPLcGhKHkh3qd0tnk =
1365
1365
github.com/sei-protocol/tm-db v0.0.4 /go.mod h1:PWsIWOTwdwC7Ow/GUvx8HgUJTO691pBuorIQD8JvwAs =
1366
1366
github.com/sergi/go-diff v1.1.0 /go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM =
You can’t perform that action at this time.
0 commit comments