Skip to content

Commit aca07e5

Browse files
authored
chore: update change log and cargo deps for v1.0.5 (bnb-chain#159)
1 parent e1527d8 commit aca07e5

3 files changed

Lines changed: 69 additions & 50 deletions

File tree

CHANGELOG.md

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
# Changelog
22

3-
## V1.0.4
3+
## v1.0.5
4+
This release merges with upstream version v1.0.7, adding support for the BSC mainnet, testnet, and opBNB mainnet, testnet. It includes new features and several bug fixes.
5+
6+
### NOTE
7+
**This version is compatible with the BSC mainnet, testnet, and opBNB mainnet, testnet.**
8+
9+
### New Features
10+
1. Introduced `--engine.experimental` flag to enable the experimental engine for performance improvements.
11+
2. Introduced `--optimize.skip-state-root-validation` flag to skip state root validation during block imports, useful for importing blocks without merkle validation.
12+
**Warning:** Use this flag with caution as it may lead to data inconsistency.
13+
14+
### Features
15+
- [#123](https://github.com/bnb-chain/reth/pull/123): Added support for importing blocks without merkle calculation.
16+
- [#147](https://github.com/bnb-chain/reth/pull/147): Ensured state root validation is not skipped when inserting downloaded blocks.
17+
- [#157](https://github.com/bnb-chain/reth/pull/157): Merged upstream version v1.0.7.
18+
19+
### Bug Fixes
20+
- [#137](https://github.com/bnb-chain/reth/pull/137): Fixed `unwind_to` to ensure it is exclusive.
21+
- [#145](https://github.com/bnb-chain/reth/pull/145): Ensured sidecars are correctly written to static files when saving blocks.
22+
## v1.0.4
423

524
This release is for opBNB testnet and mainnet Fjord upgrade.
625

@@ -9,15 +28,15 @@ This release is for opBNB testnet and mainnet Fjord upgrade.
928
* [\#56](https://github.com/bnb-chain/reth/pull/56) feat: add trie prefetch when executing blocks
1029
* [\#130](https://github.com/bnb-chain/reth/pull/130) feat: add Fjord upgrade time for opBNB
1130

12-
## V1.0.3
31+
## v1.0.3
1332
This is a bugfix version.
1433

1534
### BUGFIX
1635
* [\#119](https://github.com/bnb-chain/reth/pull/119) fix: sidecars missing issue and empty validators election info issue
1736
* [\#122](https://github.com/bnb-chain/reth/pull/122) fix: bsc snapshot issues
1837
* [\#125](https://github.com/bnb-chain/reth/pull/125) fix: bsc `BLS_SIGNATURE_VALIDATION` precompile contract error
1938

20-
## V1.0.2
39+
## v1.0.2
2140
This release is for BSC mainnet HaberFix and Bohr upgrade and opBNB mainnet Wright upgrade.
2241

2342
### FEATURES
@@ -30,7 +49,7 @@ This release is for BSC mainnet HaberFix and Bohr upgrade and opBNB mainnet Wrig
3049
* [\#115](https://github.com/bnb-chain/reth/pull/115) fix: print CanonicalBlockAdded logs after committed db
3150

3251

33-
## V1.0.1
52+
## v1.0.1
3453
This release is for BSC testnet Bohr upgrade and opBNB testnet Wright upgrade.
3554

3655
### FEATURES

Cargo.lock

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -600,21 +600,21 @@ tikv-jemallocator = "0.6"
600600
tracy-client = "0.17.3"
601601

602602
[patch.crates-io]
603-
revm = { git = "https://github.com/bnb-chain/revm", rev = "fbc92f58052227c06f8a2a4e25227d111ed8e08e" }
604-
revm-interpreter = { git = "https://github.com/bnb-chain/revm", rev = "fbc92f58052227c06f8a2a4e25227d111ed8e08e" }
605-
revm-primitives = { git = "https://github.com/bnb-chain/revm", rev = "fbc92f58052227c06f8a2a4e25227d111ed8e08e" }
606-
alloy-rpc-types-eth = { git = "https://github.com/bnb-chain/alloy", rev = "718aee579dc000019582245226eebf8b40d24c41" }
607-
alloy-consensus = { git = "https://github.com/bnb-chain/alloy", rev = "718aee579dc000019582245226eebf8b40d24c41" }
608-
alloy-eips = { git = "https://github.com/bnb-chain/alloy", rev = "718aee579dc000019582245226eebf8b40d24c41" }
609-
alloy-network = { git = "https://github.com/bnb-chain/alloy", rev = "718aee579dc000019582245226eebf8b40d24c41" }
610-
alloy-network-primitives = { git = "https://github.com/bnb-chain/alloy", rev = "718aee579dc000019582245226eebf8b40d24c41" }
611-
alloy-serde = { git = "https://github.com/bnb-chain/alloy", rev = "718aee579dc000019582245226eebf8b40d24c41" }
612-
alloy-signer = { git = "https://github.com/bnb-chain/alloy", rev = "718aee579dc000019582245226eebf8b40d24c41" }
613-
alloy-signer-local = { git = "https://github.com/bnb-chain/alloy", rev = "718aee579dc000019582245226eebf8b40d24c41" }
614-
alloy-provider = { git = "https://github.com/bnb-chain/alloy", rev = "718aee579dc000019582245226eebf8b40d24c41" }
615-
alloy-transport = { git = "https://github.com/bnb-chain/alloy", rev = "718aee579dc000019582245226eebf8b40d24c41" }
616-
alloy-transport-http = { git = "https://github.com/bnb-chain/alloy", rev = "718aee579dc000019582245226eebf8b40d24c41" }
617-
alloy-json-rpc = { git = "https://github.com/bnb-chain/alloy", rev = "718aee579dc000019582245226eebf8b40d24c41" }
618-
alloy-rpc-client = { git = "https://github.com/bnb-chain/alloy", rev = "718aee579dc000019582245226eebf8b40d24c41" }
619-
alloy-rpc-types-engine = { git = "https://github.com/bnb-chain/alloy", rev = "718aee579dc000019582245226eebf8b40d24c41" }
603+
revm = { git = "https://github.com/bnb-chain/revm", tag = "v1.0.3" }
604+
revm-interpreter = { git = "https://github.com/bnb-chain/revm", tag = "v1.0.3" }
605+
revm-primitives = { git = "https://github.com/bnb-chain/revm", tag = "v1.0.3" }
606+
alloy-rpc-types-eth = { git = "https://github.com/bnb-chain/alloy", tag = "v1.0.1"}
607+
alloy-consensus = { git = "https://github.com/bnb-chain/alloy", tag = "v1.0.1"}
608+
alloy-eips = { git = "https://github.com/bnb-chain/alloy", tag = "v1.0.1"}
609+
alloy-network = { git = "https://github.com/bnb-chain/alloy", tag = "v1.0.1"}
610+
alloy-network-primitives = { git = "https://github.com/bnb-chain/alloy", tag = "v1.0.1"}
611+
alloy-serde = { git = "https://github.com/bnb-chain/alloy", tag = "v1.0.1"}
612+
alloy-signer = { git = "https://github.com/bnb-chain/alloy", tag = "v1.0.1"}
613+
alloy-signer-local = { git = "https://github.com/bnb-chain/alloy", tag = "v1.0.1"}
614+
alloy-provider = { git = "https://github.com/bnb-chain/alloy", tag = "v1.0.1"}
615+
alloy-transport = { git = "https://github.com/bnb-chain/alloy", tag = "v1.0.1"}
616+
alloy-transport-http = { git = "https://github.com/bnb-chain/alloy", tag = "v1.0.1"}
617+
alloy-json-rpc = { git = "https://github.com/bnb-chain/alloy", tag = "v1.0.1"}
618+
alloy-rpc-client = { git = "https://github.com/bnb-chain/alloy", tag = "v1.0.1"}
619+
alloy-rpc-types-engine = { git = "https://github.com/bnb-chain/alloy", tag = "v1.0.1"}
620620

0 commit comments

Comments
 (0)