From 932b4d4be0ea33519b0d77ba4be6b285045954c6 Mon Sep 17 00:00:00 2001 From: Philip Su Date: Mon, 24 Apr 2023 11:27:18 -0700 Subject: [PATCH] Add 2.0.46beta upgrade handler (#720) * Add 2.0.46beta upgrade handler * Add change log and bump sei-cosmos --- CHANGELOG.md | 15 ++++++++++++++- app/upgrades.go | 1 + go.mod | 2 +- go.sum | 4 ++-- 4 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dc2933811..3264154603 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,13 +27,26 @@ Ref: https://keepachangelog.com/en/1.0.0/ --> # Changelog +## 2.0.46beta +sei-chain: +* [#694] (https://github.com/sei-protocol/sei-chain/pull/694) Register prune command +* [#702] (https://github.com/sei-protocol/sei-chain/pull/702) Change tick failure log to warning + +sei-cosmos: +* [#227] (https://github.com/sei-protocol/sei-cosmos/pull/227) Add checkTxResponse log to RPCResponse +* [#224] (https://github.com/sei-protocol/sei-cosmos/pull/224) Default to secp256k1 +* [#220] (https://github.com/sei-protocol/sei-cosmos/pull/220) Add admin field to base vesting account +* [#218] (https://github.com/sei-protocol/sei-cosmos/pull/218) Restart node instead of panicking +* [#216] (https://github.com/sei-protocol/sei-cosmos/pull/216) Fix pruning command + +sei-tendermint: +* [#118] (https://github.com/sei-protocol/sei-tendermint/pull/118) Add DBSync module ## 2.0.45beta sei-chain: https://github.com/sei-protocol/sei-chain/compare/2.0.44beta...2.0.45beta-release * [#666](https://github.com/sei-protocol/sei-chain/pull/666) [DEX] remove BeginBlock/FinalizeBlock sudo hooks * [#674](https://github.com/sei-protocol/sei-chain/pull/674) Longterm fix for max gas enforcement -* [#666](https://github.com/sei-protocol/sei-chain/pull/666) [DEX] remove BeginBlock/FinalizeBlock sudo hooks sei-cosmos: https://github.com/sei-protocol/sei-cosmos/releases/tag/v0.2.14 * [#210](https://github.com/sei-protocol/sei-cosmos/pull/210) Add levelDB compaction goroutine diff --git a/app/upgrades.go b/app/upgrades.go index 88d0b21e9c..2c349961da 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -61,6 +61,7 @@ var upgradesList = []string{ "2.0.43beta", "2.0.44beta", "2.0.45beta", + "2.0.46beta", } func (app App) RegisterUpgradeHandlers() { diff --git a/go.mod b/go.mod index f21acfd5ca..abbf8d6a6b 100644 --- a/go.mod +++ b/go.mod @@ -269,7 +269,7 @@ require ( replace ( github.com/CosmWasm/wasmd => github.com/sei-protocol/sei-wasmd v0.0.1 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.2.22 + github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.2.23 github.com/cosmos/iavl => github.com/sei-protocol/sei-iavl v0.1.3 github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 github.com/keybase/go-keychain => github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 diff --git a/go.sum b/go.sum index 5314357d68..7cd169b94c 100644 --- a/go.sum +++ b/go.sum @@ -1067,8 +1067,8 @@ github.com/seccomp/libseccomp-golang v0.9.2-0.20210429002308-3879420cc921/go.mod github.com/securego/gosec/v2 v2.11.0 h1:+PDkpzR41OI2jrw1q6AdXZCbsNGNGT7pQjal0H0cArI= github.com/securego/gosec/v2 v2.11.0/go.mod h1:SX8bptShuG8reGC0XS09+a4H2BoWSJi+fscA+Pulbpo= github.com/segmentio/fasthash v1.0.3/go.mod h1:waKX8l2N8yckOgmSsXJi7x1ZfdKZ4x7KRMzBtS3oedY= -github.com/sei-protocol/sei-cosmos v0.2.22 h1:uKdG4QdoxtSUnrFQZeDQiEi//gVKNlDCErNV/dyIwBU= -github.com/sei-protocol/sei-cosmos v0.2.22/go.mod h1:HaL4lCXp1N4BITUzrT3m7ztLQ27ac4yWNdrnsAT3d+I= +github.com/sei-protocol/sei-cosmos v0.2.23 h1:hEfzSzkcstvh/BfuL3S+MqYRp8ipnTCUEeNu6xf/Z4M= +github.com/sei-protocol/sei-cosmos v0.2.23/go.mod h1:HaL4lCXp1N4BITUzrT3m7ztLQ27ac4yWNdrnsAT3d+I= github.com/sei-protocol/sei-iavl v0.1.3 h1:0hvW1NtmBlZ7ZkerQcM/n+2tFKg0vUlYWK8q/OeuCgw= github.com/sei-protocol/sei-iavl v0.1.3/go.mod h1:7PfkEVT5dcoQE+s/9KWdoXJ8VVVP1QpYYPLdxlkSXFk= github.com/sei-protocol/sei-tendermint v0.2.10 h1:w9G4YU1a3wwZttXMMvUOOmzRfcN/nqFBoUK1Dnefess=