From 1338ac312d64f35e629648428215ab2da66c1749 Mon Sep 17 00:00:00 2001 From: zzzckck <152148891+zzzckck@users.noreply.github.com> Date: Wed, 5 Feb 2025 18:21:48 +0800 Subject: [PATCH] release: prepare for release v1.5.5 --- CHANGELOG.md | 15 ++++++++++++++- cmd/jsutils/getchainstatus.js | 2 +- version/version.go | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21758bb7af..a12066fe0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ # Changelog +## v1.5.5 +v1.5.5 mainly did a upstream code sync, it catches up to Geth of date around 5th-Feb-2025 to sync the latest Praque hard fork changes, see: https://github.com/bnb-chain/bsc/pull/2856 + +Besides the code sync, there are a few improvement PRs of BSC: +### IMPROVEMENT +* [\#2846](https://github.com/bnb-chain/bsc/pull/2846) tracing: pass *tracing.Hooks around instead of vm.Config +* [\#2850](https://github.com/bnb-chain/bsc/pull/2850) metric: revert default expensive metrics in blockchain +* [\#2851](https://github.com/bnb-chain/bsc/pull/2851) eth/tracers: fix call nil OnSystemTxFixIntrinsicGas +* [\#2862](https://github.com/bnb-chain/bsc/pull/2862) cmd/jsutils/getchainstatus.js: add GetEip7623 +* [\#2867](https://github.com/bnb-chain/bsc/pull/2867) p2p: lowered log lvl for failed enr request + ## v1.5.4 -NA +### BUGFIX +* [\#2874](https://github.com/bnb-chain/bsc/pull/2874) crypto: add IsOnCurve check + ## v1.5.3 ### BUGFIX diff --git a/cmd/jsutils/getchainstatus.js b/cmd/jsutils/getchainstatus.js index 85aabc8811..b670ebbe27 100644 --- a/cmd/jsutils/getchainstatus.js +++ b/cmd/jsutils/getchainstatus.js @@ -497,7 +497,7 @@ async function getKeyParameters() { } // 9.cmd: "getEip7623", usage: -// node getEip7623.js GetEip7736 \ +// node getEip7623.js GetEip7623 \ // --rpc https://bsc-testnet-dataseed.bnbchain.org \ // --startNum 40000001 --endNum 40000005 async function getEip7623() { diff --git a/version/version.go b/version/version.go index ce44689ec0..672d546d0e 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 = 4 // Patch version component of the current release + Patch = 5 // Patch version component of the current release Meta = "" // Version metadata to append to the version string )