From a14d4b5a0310324d00f930bb73ba6bb63b6e5280 Mon Sep 17 00:00:00 2001 From: Philip Su Date: Tue, 1 Oct 2024 13:36:19 -0700 Subject: [PATCH] Add v5.9.0 upgrade --- CHANGELOG.md | 12 ++++++++++++ app/upgrades.go | 1 + 2 files changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c5ab66af..d93eae4d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,18 @@ Ref: https://keepachangelog.com/en/1.0.0/ --> # Changelog +## v5.9.0 +sei-chain +* [#1867](https://github.com/sei-protocol/sei-chain/pull/1867) Add synthetic events in separate sei endpoints +* [#1861](https://github.com/sei-protocol/sei-chain/pull/1861) Revert showing wasm txs in EVM RPCs +* [#1857](https://github.com/sei-protocol/sei-chain/pull/1857) Fix events in 2-hop scenarios +* [#1856](https://github.com/sei-protocol/sei-chain/pull/1856) Add delegatecall flag to properly detect delegatecalls +* [#1850](https://github.com/sei-protocol/sei-chain/pull/1853) Fix websocket from_height +* [#1849](https://github.com/sei-protocol/sei-chain/pull/1849) Reduce block bloom storage +* [#1844](https://github.com/sei-protocol/sei-chain/pull/1844) Allowlist for token extensions + +sei-iavl +*[#41](https://github.com/sei-protocol/sei-iavl/pull/41) Fix tree versions causing slow restart and OOM ## v5.8.0 sei-chain * [#1840](https://github.com/sei-protocol/sei-chain/pull/1840) Add migration for new params diff --git a/app/upgrades.go b/app/upgrades.go index ffd33662a..4ec052825 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -110,6 +110,7 @@ var upgradesList = []string{ "v5.7.4", "v5.7.5", "v5.8.0", + "v5.9.0", } // if there is an override list, use that instead, for integration tests