Skip to content

Commit 134a227

Browse files
authored
v6.0.5 upgrade (#2107)
1 parent a939a1d commit 134a227

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

CHANGELOG.md

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

2929
# Changelog
30+
## v6.0.5
31+
sei-chain
32+
* [#2100](https://github.com/sei-protocol/sei-chain/pull/2100) Refactor RPC log logic
33+
* [#2092](https://github.com/sei-protocol/sei-chain/pull/2092) Integrate with MaxGasWanted
34+
35+
sei-cosmos
36+
* [#567](https://github.com/sei-protocol/sei-cosmos/pull/567) Do no use legacy marshaling on key exports
37+
38+
sei-tendermint
39+
* [#271](https://github.com/sei-protocol/sei-tendermint/pull/271) Use txs from SafeGetTxsByKeys
40+
* [#269](https://github.com/sei-protocol/sei-tendermint/pull/269) Make missing txs check atomic
41+
* [#267](https://github.com/sei-protocol/sei-tendermint/pull/267) Add a hard max gas wanted at 50mil gas as a consensus param
42+
43+
sei-db
44+
* [#82](https://github.com/sei-protocol/sei-db/pull/82) Improve SeiDB replay&restart time by 2x
45+
3046
## v6.0.4
3147
sei-chain
3248
* [#2091](https://github.com/sei-protocol/sei-chain/pull/2091) Fix RPC subscription fields

app/upgrades.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ var upgradesList = []string{
116116
"v6.0.2",
117117
"v6.0.3",
118118
"v6.0.4",
119-
"v6.0.5-hard-max-gas-wanted-check",
119+
"v6.0.5",
120120
}
121121

122122
// if there is an override list, use that instead, for integration tests
@@ -165,7 +165,7 @@ func (app App) RegisterUpgradeHandlers() {
165165
return newVM, err
166166
}
167167

168-
if upgradeName == "v6.0.5-hard-max-gas-wanted-check" {
168+
if upgradeName == "v6.0.5" {
169169
newVM, err := app.mm.RunMigrations(ctx, app.configurator, fromVM)
170170
if err != nil {
171171
return newVM, err

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ replace (
356356
github.com/cosmos/ibc-go/v3 => github.com/sei-protocol/sei-ibc-go/v3 v3.3.5
357357
github.com/ethereum/go-ethereum => github.com/sei-protocol/go-ethereum v1.13.5-sei-27
358358
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
359-
github.com/sei-protocol/sei-db => github.com/sei-protocol/sei-db v0.0.47
359+
github.com/sei-protocol/sei-db => github.com/sei-protocol/sei-db v0.0.48
360360
// Latest goleveldb is broken, we have to stick to this version
361361
github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
362362
github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.5.4

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1350,8 +1350,8 @@ github.com/sei-protocol/goutils v0.0.2 h1:Bfa7Sv+4CVLNM20QcpvGb81B8C5HkQC/kW1CQp
13501350
github.com/sei-protocol/goutils v0.0.2/go.mod h1:iYE2DuJfEnM+APPehr2gOUXfuLuPsVxorcDO+Tzq9q8=
13511351
github.com/sei-protocol/sei-cosmos v0.3.56-0.20250313190228-9fb9a4fd8636 h1:9RMstipSzuAgpwz8IcM+LvZB2frXSBolu8CRj660fI4=
13521352
github.com/sei-protocol/sei-cosmos v0.3.56-0.20250313190228-9fb9a4fd8636/go.mod h1:Z+0XynKuhMu9m2XHIvUBwk4A+iLPc4YnzFlabpMOWqw=
1353-
github.com/sei-protocol/sei-db v0.0.47 h1:/1/btOKcNd+JPbCNTb87DENlKix7lnpubxAPWFgvrig=
1354-
github.com/sei-protocol/sei-db v0.0.47/go.mod h1:m5g7p0QeAS3dNJHIl28zQpzOgxQmvYqPb7t4hwgIOCA=
1353+
github.com/sei-protocol/sei-db v0.0.48 h1:BgSF5jq9hiPz0JMmbf5f34CnZijqTO+3zOo8IG62lFY=
1354+
github.com/sei-protocol/sei-db v0.0.48/go.mod h1:m5g7p0QeAS3dNJHIl28zQpzOgxQmvYqPb7t4hwgIOCA=
13551355
github.com/sei-protocol/sei-iavl v0.2.0 h1:OisPjXiDT+oe+aeckzDEFgkZCYuUjHgs/PP8DPicN+I=
13561356
github.com/sei-protocol/sei-iavl v0.2.0/go.mod h1:qRf8QYUPfrAO7K6VDB2B2l/N7K5L76OorioGBcJBIbw=
13571357
github.com/sei-protocol/sei-ibc-go/v3 v3.3.5 h1:SQRzWi9KSMuGNGd3f5RWAmsGGk7yeY1zhnEnrr/nqug=

0 commit comments

Comments
 (0)