Skip to content

Commit

Permalink
Merge pull request #104 from bnb-chain/develop
Browse files Browse the repository at this point in the history
release: prepare for release v1.0.1
  • Loading branch information
unclezoro authored Aug 9, 2024
2 parents c3361c9 + 250e3a8 commit 17adc97
Show file tree
Hide file tree
Showing 456 changed files with 29,527 additions and 8,022 deletions.
9 changes: 4 additions & 5 deletions CODEOWNERS → .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,17 @@ crates/errors/ @mattsse
crates/ethereum/ @mattsse @Rjected
crates/ethereum-forks/ @mattsse @Rjected
crates/etl/ @joshieDo @shekhirin
crates/evm/ @rakita @mattsse @Rjected @DaniPopes
crates/evm/ @rakita @mattsse @Rjected
crates/exex/ @onbjerg @shekhirin
crates/fs-util/ @onbjerg @DaniPopes @emhane
crates/fs-util/ @onbjerg @emhane
crates/metrics/ @onbjerg
crates/net/ @emhane @mattsse @Rjected
crates/net/downloaders/ @onbjerg @rkrasiuk @emhane
crates/node/ @mattsse @Rjected @onbjerg
crates/node-core/ @mattsse @Rjected @onbjerg
crates/optimism/ @mattsse @Rjected @fgimenez
crates/payload/ @mattsse @Rjected
crates/primitives/ @DaniPopes @Rjected
crates/primitives-traits/ @DaniPopes @Rjected @joshieDo
crates/primitives/ @Rjected
crates/primitives-traits/ @Rjected @joshieDo
crates/prune/ @shekhirin @joshieDo
crates/revm/ @mattsse @rakita
crates/rpc/ @mattsse @Rjected @emhane
Expand Down
2 changes: 1 addition & 1 deletion .github/assets/hive/expected_failures.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,4 @@ engine-cancun:

# https://github.com/paradigmxyz/reth/issues/8579
sync:
- sync reth -> reth
- sync reth -> reth
6 changes: 3 additions & 3 deletions .github/assets/hive/run_simulator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ while [ $attempt -lt $max_attempts ]; do

# Check if no tests were run. sed removes ansi colors
if check_log | grep -q "suites=0"; then
echo "no tests were run, retrying in 5 seconds"
sleep 5
echo "no tests were run, retrying in 10 seconds"
sleep 10
attempt=$((attempt + 1))
continue
fi
Expand All @@ -35,4 +35,4 @@ while [ $attempt -lt $max_attempts ]; do
exit 1
fi
done
exit 1
exit 1
11 changes: 11 additions & 0 deletions .github/workflows/hive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,3 +231,14 @@ jobs:
if: ${{ failure() }}
run: |
cat hivetests/workspace/logs/reth/client-*.log
notify-on-error:
needs: test
if: failure()
runs-on:
group: Reth
steps:
- name: Discord Webhook Action
uses: tsickert/discord-webhook@v6.0.0
with:
webhook-url: ${{ secrets.RETH_ALERTS_WEBHOOK }}
content: "Failed run: https://github.com/paradigmxyz/reth/actions/runs/${{ github.run_id }}"
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Generated by Cargo
# will have compiled files and executables
debug/
./debug/
target/

# These are backup files generated by rustfmt
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## V1.0.1
This release is for BSC testnet Bohr upgrade and opBNB testnet Wright upgrade.

### FEATURES
* [\#102](https://github.com/bnb-chain/reth/pull/102) chore: update deps
* [\#101](https://github.com/bnb-chain/reth/pull/101) feat: support traceBlock and traceTransaction for bsc
* [\#100](https://github.com/bnb-chain/reth/pull/100) feat: add fork time for Bohr Hardfork of BSC in testnet
* [\#99](https://github.com/bnb-chain/reth/pull/99) feat: add fork time for Wright Hardfork of opBNB in testnet
* [\#94](https://github.com/bnb-chain/reth/pull/94) feat: support Wright upgrade for opbnb
* [\#95](https://github.com/bnb-chain/reth/pull/95) feat: add prune for ancient sidecars data
* [\#86](https://github.com/bnb-chain/reth/pull/86) feat: implement the Bohr upgrade of BSC
* [\#98](https://github.com/bnb-chain/reth/pull/98) feat: merge with upstream v1.0.3 version


### BUGFIX
* [\#97](https://github.com/bnb-chain/reth/pull/97) fix: snapshot incompatibility issue

## v1.0.0
The Reth is entering production-ready v1.0.0. Thanks to the Paradigm team for their continuous iterations on Reth,
providing the community with a highly scalable, modular, high-performance, and feature-rich client.
Expand Down
Loading

0 comments on commit 17adc97

Please sign in to comment.