From a7d5b029196b5a15298ba1c28cf9d7beb8fac455 Mon Sep 17 00:00:00 2001 From: zzzckck <152148891+zzzckck@users.noreply.github.com> Date: Thu, 9 May 2024 19:47:52 +0800 Subject: [PATCH] release: prepare for release v1.4.7 (#2442) * release: prepare for release v1.4.7 * code: avoid golang-lint error for TxLookupLimit --- CHANGELOG.md | 14 ++++++++++++++ eth/ethconfig/config.go | 2 +- params/version.go | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b17a062f5..b3f88cb84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,18 @@ # Changelog +## v1.4.7 +### FEATURE +* [\#2439](https://github.com/bnb-chain/bsc/pull/2439) config: setup Mainnet Tycho(Cancun) hardfork date + +### IMPROVEMENT +* [\#2396](https://github.com/bnb-chain/bsc/pull/2396) metrics: add blockInsertMgaspsGauge to trace mgasps +* [\#2411](https://github.com/bnb-chain/bsc/pull/2411) build(deps): bump golang.org/x/net from 0.19.0 to 0.23.0 +* [\#2435](https://github.com/bnb-chain/bsc/pull/2435) txpool: limit max gas when mining is enabled +* [\#2438](https://github.com/bnb-chain/bsc/pull/2438) fix: performance issue when load journal +* [\#2440](https://github.com/bnb-chain/bsc/pull/2440) nancy: add files .nancy-ignore + +### BUGFIX +NA + ## v1.4.6 ### FEATURE * [\#2227](https://github.com/bnb-chain/bsc/pull/2227) core: separated databases for block data diff --git a/eth/ethconfig/config.go b/eth/ethconfig/config.go index 55c21dfe2..7878daa3d 100644 --- a/eth/ethconfig/config.go +++ b/eth/ethconfig/config.go @@ -110,7 +110,7 @@ type Config struct { PipeCommit bool RangeLimit bool - // Deprecated: use 'TransactionHistory' instead. + // Deprecated, use 'TransactionHistory' instead. TxLookupLimit uint64 `toml:",omitempty"` // The maximum number of blocks from head whose tx indices are reserved. TransactionHistory uint64 `toml:",omitempty"` // The maximum number of blocks from head whose tx indices are reserved. StateHistory uint64 `toml:",omitempty"` // The maximum number of blocks from head whose state histories are reserved. diff --git a/params/version.go b/params/version.go index c2a2aedbc..2bd4b9fe0 100644 --- a/params/version.go +++ b/params/version.go @@ -23,7 +23,7 @@ import ( const ( VersionMajor = 1 // Major version component of the current release VersionMinor = 4 // Minor version component of the current release - VersionPatch = 6 // Patch version component of the current release + VersionPatch = 7 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )