File tree 4 files changed +21
-5
lines changed
4 files changed +21
-5
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,22 @@ Ref: https://keepachangelog.com/en/1.0.0/
27
27
-->
28
28
29
29
# 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
+
30
46
## v6.0.4
31
47
sei-chain
32
48
* [ #2091 ] ( https://github.com/sei-protocol/sei-chain/pull/2091 ) Fix RPC subscription fields
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ var upgradesList = []string{
116
116
"v6.0.2" ,
117
117
"v6.0.3" ,
118
118
"v6.0.4" ,
119
- "v6.0.5-hard-max-gas-wanted-check " ,
119
+ "v6.0.5" ,
120
120
}
121
121
122
122
// if there is an override list, use that instead, for integration tests
@@ -165,7 +165,7 @@ func (app App) RegisterUpgradeHandlers() {
165
165
return newVM , err
166
166
}
167
167
168
- if upgradeName == "v6.0.5-hard-max-gas-wanted-check " {
168
+ if upgradeName == "v6.0.5" {
169
169
newVM , err := app .mm .RunMigrations (ctx , app .configurator , fromVM )
170
170
if err != nil {
171
171
return newVM , err
Original file line number Diff line number Diff line change @@ -356,7 +356,7 @@ replace (
356
356
github.com/cosmos/ibc-go/v3 => github.com/sei-protocol/sei-ibc-go/v3 v3.3.5
357
357
github.com/ethereum/go-ethereum => github.com/sei-protocol/go-ethereum v1.13.5-sei-27
358
358
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
360
360
// Latest goleveldb is broken, we have to stick to this version
361
361
github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
362
362
github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.5.4
Original file line number Diff line number Diff line change @@ -1350,8 +1350,8 @@ github.com/sei-protocol/goutils v0.0.2 h1:Bfa7Sv+4CVLNM20QcpvGb81B8C5HkQC/kW1CQp
1350
1350
github.com/sei-protocol/goutils v0.0.2 /go.mod h1:iYE2DuJfEnM+APPehr2gOUXfuLuPsVxorcDO+Tzq9q8 =
1351
1351
github.com/sei-protocol/sei-cosmos v0.3.56-0.20250313190228-9fb9a4fd8636 h1:9RMstipSzuAgpwz8IcM+LvZB2frXSBolu8CRj660fI4 =
1352
1352
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 =
1355
1355
github.com/sei-protocol/sei-iavl v0.2.0 h1:OisPjXiDT+oe+aeckzDEFgkZCYuUjHgs/PP8DPicN+I =
1356
1356
github.com/sei-protocol/sei-iavl v0.2.0 /go.mod h1:qRf8QYUPfrAO7K6VDB2B2l/N7K5L76OorioGBcJBIbw =
1357
1357
github.com/sei-protocol/sei-ibc-go/v3 v3.3.5 h1:SQRzWi9KSMuGNGd3f5RWAmsGGk7yeY1zhnEnrr/nqug =
You can’t perform that action at this time.
0 commit comments