Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft release v1.4.15 #2701

Merged
merged 21 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
d3450f1
log: add some p2p log (#2677)
zzzckck Sep 3, 2024
094519d
beaconserver: simulated beacon api server for op-stack (#2678)
jhgdike Sep 4, 2024
0dab664
txpool: apply miner's gasceil to txpool (#2680)
zzzckck Sep 4, 2024
f85d19a
build(deps): bump actions/download-artifact in /.github/workflows (#2…
dependabot[bot] Sep 4, 2024
5c4096f
faucet: with mainnet balance check, 0.002BNB at least (#2672)
zzzckck Sep 4, 2024
1bcdad8
metrics: add some extra feature flags as node stats; (#2662)
galaio Sep 4, 2024
03069a7
fetcher: Sleep after marking block as done when requeuing
ngotchac Sep 4, 2024
e7e5d50
txpool: set default GasCeil from 30M to 0 (#2688)
zzzckck Sep 5, 2024
7de27ca
CI: nancy ignore CVE-2024-8421 (#2695)
buddh0 Sep 10, 2024
a28262b
miner: limit block size to eth protocol msg size (#2696)
buddh0 Sep 10, 2024
8bbd8fb
consensus/parlia: wait more time when processing huge blocks (#2689)
buddh0 Sep 11, 2024
774d1b7
Merge pull request #2684 from ngotchac/ngotchac/requeue-fixes
zzzckck Sep 11, 2024
44e91bb
faucet: support customized token (#2687)
zzzckck Sep 12, 2024
282aee5
faucet: add example for custimized token (#2698)
zzzckck Sep 12, 2024
3e44dca
chore: add missing symbols in comment (#2704)
tiaoxizhan Sep 14, 2024
34059cb
faucet: update DIN token faucet support (#2706)
wangminqi Sep 18, 2024
21faa2d
release: prepare for release v1.4.15 (#2700)
zzzckck Sep 18, 2024
9cbac84
doc: update readme to remove Beacon chain part (#2697)
zzzckck Sep 18, 2024
d141ff0
Revert "eth/handler: check lists in body before broadcast blocks (#24…
buddh0 Sep 4, 2024
5289ecd
eth/protocols: add Withdrawals check before broadcastBlock
buddh0 Sep 4, 2024
089064c
Merge pull request #2683 from buddh0/remove_duplicate_list_check
zzzckck Sep 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
build(deps): bump actions/download-artifact in /.github/workflows (#2679
)

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.1.7.
  • Loading branch information
dependabot[bot] committed Sep 4, 2024
commit f85d19aa8f7247dc049806df35e67702a5f1b692
8 changes: 4 additions & 4 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,25 +125,25 @@ jobs:
# ==============================

- name: Download Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: linux
path: ./linux

- name: Download Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: macos
path: ./macos

- name: Download Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: windows
path: ./windows

- name: Download Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: arm64
path: ./arm64
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,25 +124,25 @@ jobs:
# ==============================

- name: Download Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: linux
path: ./linux

- name: Download Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: macos
path: ./macos

- name: Download Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: windows
path: ./windows

- name: Download Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: arm64
path: ./arm64
Expand Down
Loading