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

chore: merge with upstream v11.0.0 #44

Merged
merged 24 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
784a065
refactor: replace U256 with u64 in BLOCKHASH (#1505)
TropicalDog17 Jun 21, 2024
58ab5e3
refactor: replace AccessList with alloy version (#1552)
Wodann Jun 22, 2024
150af37
chore: fix compile for alloydb (#1559)
rakita Jun 22, 2024
a51d53b
chore: use const blocks (#1522)
DaniPopes Jun 22, 2024
c69d975
chore(deps): bump alloy-eips from 0.1.1 to 0.1.2 (#1563)
dependabot[bot] Jun 24, 2024
8859363
chore(deps): bump alloy-transport from 0.1.1 to 0.1.2 (#1562)
dependabot[bot] Jun 24, 2024
f1c0be3
chore(deps): bump alloy-provider from 0.1.1 to 0.1.2 (#1564)
dependabot[bot] Jun 24, 2024
aaff133
chore(deps): bump reqwest from 0.12.4 to 0.12.5 (#1561)
dependabot[bot] Jun 24, 2024
b3f31fc
feat: add helper function to mape EVMError's Database error variant (…
mattsse Jun 25, 2024
7d6888b
feat(EOF): Add target address expansion checks (#1570)
rakita Jun 27, 2024
27b67a0
fix(eof): ExtDelegateCall caller/target switch (#1571)
rakita Jun 27, 2024
d3ff9cf
feat(EOF): disallow ExtDelegateCall to legacy bytecode (#1572)
rakita Jun 27, 2024
64dc252
feat(Prague): Add EIP-7702 (#1565)
rakita Jun 28, 2024
b40e4e3
chore: store tokio::runtime::Handle in ethers/alloyDB (#1557)
chirag-bgh Jun 28, 2024
b6f80af
feat: support selfdestruct for dummyhost (#1578)
DaniPopes Jun 30, 2024
28d082d
primitives: add utility function AccountInfo::from_bytecode (#1577)
tonyke-bot Jun 30, 2024
1fedacd
Use HandleOrRuntime to allow alloydb/ethersdb to hold a custom runtim…
wtdcode Jun 30, 2024
5507047
feat: add bytecode_address from CallInputs to Contract during constru…
vandenbogart Jun 30, 2024
245f05d
docs(README): add rbuilder to used-by (#1585)
metachris Jul 4, 2024
81818a9
feat(Precompiles): Throw fatal error if c-kzg is disabled (#1589)
rakita Jul 8, 2024
5073b04
chore: bump precompile to v9.0.0 (#1590)
rakita Jul 8, 2024
cbe99fc
chore: release (#1579)
github-actions[bot] Jul 8, 2024
c7cac63
Merge branch 'refs/heads/develop' into merge-v11.0.0
pythonberg1997 Jul 10, 2024
fa5328b
chore: resolve merge conflicts
pythonberg1997 Jul 10, 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
29 changes: 16 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,20 @@ jobs:
- uses: Swatinem/rust-cache@v2
- run: cargo test --workspace ${{ matrix.flags }}

# test-no-std:
# name: test no_std
# runs-on: ubuntu-latest
# timeout-minutes: 30
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@stable
# with:
# targets: riscv32imac-unknown-none-elf
# - run: cargo check --target riscv32imac-unknown-none-elf --no-default-features
# check-no-std:
# name: check no_std ${{ matrix.features }}
# runs-on: ubuntu-latest
# timeout-minutes: 30
# strategy:
# fail-fast: false
# matrix:
# features: ["", "optimism"]
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@stable
# with:
# targets: riscv32imac-unknown-none-elf
# - run: cargo check --target riscv32imac-unknown-none-elf --no-default-features --features=${{ matrix.features }}

check:
name: check ${{ matrix.features }}
Expand All @@ -53,9 +57,8 @@ jobs:
features: ["", "serde", "std"]
steps:
- uses: actions/checkout@v4
- run: |
cd crates/revm
cargo check --no-default-features --features=${{ matrix.features }}
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --no-default-features -p revm --features=${{ matrix.features }}

clippy:
name: clippy / ${{ matrix.network }}
Expand Down
Loading