diff --git a/CHANGELOG.md b/CHANGELOG.md index 2646badd2f..274176f3e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,22 @@ # Changelog +## v1.5.9 +### FEATURE +[\#2932](https://github.com/bnb-chain/bsc/pull/2932) BEP-520: Short Block Interval Phase One: 1.5 seconds +[\#2991](https://github.com/bnb-chain/bsc/pull/2991) config: update BSC Testnet hardfork time: Lorentz + +### BUGFIX +[\#2990](https://github.com/bnb-chain/bsc/pull/2990) core/state: fix concurrent map read and write for stateUpdate.accounts + +### IMPROVEMENT +[\#2933](https://github.com/bnb-chain/bsc/pull/2933) metrics: add more peer, block/vote metrics +[\#2938](https://github.com/bnb-chain/bsc/pull/2938) cmd/geth: add example for geth bls account generate-proof +[\#2949](https://github.com/bnb-chain/bsc/pull/2949) metrics: add more block/vote stats; +[\#2948](https://github.com/bnb-chain/bsc/pull/2948) go.mod: update crypto to solve CVE-2025-22869 +[\#2960](https://github.com/bnb-chain/bsc/pull/2960) pool: debug log instead of warn +[\#2961](https://github.com/bnb-chain/bsc/pull/2961) metric: add more block monitor metrics; +[\#2992](https://github.com/bnb-chain/bsc/pull/2992) core/systemcontracts: update url for lorentz hardfork +[\#2993](https://github.com/bnb-chain/bsc/pull/2993) cmd/jsutils: add tool GetMevStatus + ## v1.5.8 ### FEATURE * [\#2955](https://github.com/bnb-chain/bsc/pull/2955) pbs: enable GreedyMergeTx by default diff --git a/core/rawdb/freezer.go b/core/rawdb/freezer.go index 9d66d13c8b..4854e0adb0 100644 --- a/core/rawdb/freezer.go +++ b/core/rawdb/freezer.go @@ -27,7 +27,6 @@ import ( "sync/atomic" "time" - "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/ethdb" "github.com/ethereum/go-ethereum/log" diff --git a/version/version.go b/version/version.go index e684390791..bdd38d8ceb 100644 --- a/version/version.go +++ b/version/version.go @@ -19,6 +19,6 @@ package version const ( Major = 1 // Major version component of the current release Minor = 5 // Minor version component of the current release - Patch = 8 // Patch version component of the current release + Patch = 9 // Patch version component of the current release Meta = "" // Version metadata to append to the version string )