Skip to content

Releases: bluealloy/revm

tag v103, revm v34.0.0

15 Jan 16:21
50405a2

Choose a tag to compare

What's Changed

  • chore(test): rn unused folders to free space by @rakita in #3180
  • feat: sort accounts by address in blockchaintest output by @RyanBGG in #3182
  • chore(fmt): merge all imports by @rakita in #3184
  • chore(op-test): regenerate missing test fixture by @rakita in #3185
  • ci: bump actions/checkout to v6 by @rejected-l in #3189
  • chore: apply_auth_list helper fn by @rakita in #3187
  • refactor: optimize vector initialization with size hints by @jackwener in #3191
  • state: deduplicate local/global flags setup by @maradini77 in #3190
  • opt: optimize precompile extend() by @jackwener in #3192
  • Remove duplicate traces directory creation in block_traces example` by @maradini77 in #3193
  • refactor: optimize vector initialization using size hints by @Keemosty12 in #3200
  • feat: Restrict Database::Error. JournaledAccountTr by @rakita in #3199
  • opt: replace HashMap with fixed-size array for opcode counts in CountInspector by @jackwener in #3203
  • feat: DatabaseCommit::commit_iter by @0xForerunner in #3197
  • fix: set transaction_id on new account by @rakita in #3204
  • feat: DatabaseCommitExt + increment_balances by @0xForerunner in #3195
  • feat: DatabaseCommitExt::drain_balances by @0xForerunner in #3205
  • feat: early return if the l1 fee scalar is zero by @datnguyencse in #3213
  • fix(statetest): use spec-aware blob base fee update fraction by @bshastry in #3210
  • feat: JournaledAccount sload/sstore by @rakita in #3201
  • feat(create): Implement Cache for CreateInputs::created_address by @developeruche in #3218
  • feat: Gas params by @rakita in #3132
  • fix(create): Fix CreateInputs::created_address Cache invalidation by @developeruche in #3222
  • fix: remove unused duplicate ContextSetters trait in context crate by @anim001k in #3225
  • chore(clippy): remove unused imports by @rakita in #3227
  • Remove redundant tx fetch in Optimism handler gas accounting by @anim001k in #3220
  • perf(database): avoid triple cache lookup by @shekhirin in #3232
  • perf(database): use fixed hashmaps in cache db by @shekhirin in #3231
  • fix(database): verify handle belongs to current runtime before block_in_place by @forkfury in #3212
  • Fix incorrect debug log message in blockchain test runner by @anim001k in #3233
  • refactor(handler): validate_initial_tx_gas takes &mut Evm by @rakita in #3235
  • feat: BAL EIP-7928 by @rakita in #3070
  • fix: deduplicate post-state validation error handling by @anim001k in #3228
  • fix: remove redundant trace file creation in block_traces example by @leopardracer in #3245
  • fix: use expected_exception instead of error field for unexpected_success status by @leopardracer in #3244
  • refactor(handler): eliminate code duplication in transaction validation by @letmehateu in #3243
  • refactor: re-export statetest-types from revm crate behind test-types feature by @rakita in #3247
  • perf: avoid collect by @klkvr in #3242
  • feat: dynamically link gmp by @gakonst in #3250
  • fix(database): use conservative block_in_place strategy to prevent deadlock by @woojinnn in #3251
  • feat: rm gmp use-system-libs by @rakita in #3253
  • feat: Propagate map-foldhash Feature Through Dependency Chain by @woojinnn in #3252
  • refactor: remove redundant clone calls by @doocho in #3258
  • refactor(revme): extract JSON printing helper in blockchaintest by @letmehateu in #3257
  • docs: description of Handler::validate_against_state_and_deduct_caller should match responsibilities by @preston-evans98 in #3256
  • chore: sort storage keys and test files in blockchaintest output by @RyanBGG in #3186
  • refactor(revme): use unwrap_or_default for non-UTF8 path safety by @letmehateu in #3259
  • perf: avoid loading bytecode in extcodehash by @MoNyAvA in #3261
  • fix: the MLOAD opcode can modify memory by @Wodann in #3266
  • perf: add Display for HaltReason and OutOfGasError by @RyanBGG in #3265
  • chore: add Display trait for ExecutionResult and related types by @RyanBGG in #3267
  • chore: the KECCAK256 opcode can resize memory by @joeybright53 in #3269
  • chore: happy new year, 2026 licence by @rakita in #3272
  • perf: add optimization for push and pop by @malik672 in #3263
  • fix(bytecode): remove duplicate implementation in bytes_ref method by @Fallengirl in #3276
  • fix: incorrect bytecode value in blockchain test error output by @maximevtush in #3288
  • feat: move GasParams to Cfg by @rakita in #3229
  • feat: new gas params, tx initial gas and codedeposit by @rakita in #3260
  • fix(database): make DatabaseCommit dyn-compatible by @haythemsellami in #3264
  • fix(test): one gasid name is missing by @rakita in #3290
  • fix(database): return error instead of panic when block not found in AlloyDB by @doocho in #3284
  • feat(inspector): make TestInspector public for testing EVM variants by @RyanBGG in #3282
  • docs: fix typos and grammar in database crate by @doocho in #3279
  • Feat(cache-db): Added pritty_print for CacheDB by @developeruche in #3296
  • chore: fix outdated doc comment by @RyanBGG in #3293
  • refactor(revme): consolidate find_all_json_tests in dir_utils by @letmehateu in #3262
  • fix typos, grammar errors, and improve documentation consistency by @leopardracer in #3294
  • chore: apply improvements from ai-bot labeled PRs by @rakita in #3297
  • perf: remove redundant clones in gas params defaults by @zeroprooff in #3300
  • feat: add new_oog helpers to InterpreterResult, CallOutcome, CreateOutcome, and FrameResult by @rakita in #3309
  • refactor(precompile): extract common pairing_check_bytes logic in bls12_381 by @letmehateu in #3301
  • refactor(gas_params): add dedicated GasIds for sstore_refund by @rakita in #3310
  • chore: bump cargo.toml by @rakita in #3311
  • chore: release by @github-actions[bot] in #3175
  • bump: revm v34.0.0 by @rakita in #3313
  • chore(script): move statetest before revm publish by @rakita in #3314

New Contributors

Read more

tag v102 revm v33.1.0

14 Nov 14:20
0d424ba

Choose a tag to compare

Fix for pre berlin selfdestruct oog, introduced in v99 tag (revm v32.0.0)

What's Changed

  • fix: expose optional_priority_fee_check feature from context crate by @jonathanykh in #3159
  • feat(context): add mark_cold method to JournaledAccount by @karlb in #3160
  • feat: Add set nonce journal entry and fn by @rakita in #3163
  • fix(op-revm): return error when enveloped_tx is missing by @Keemosty12 in #3143
  • fix(database): return correct bytecode in BenchmarkDB::code_by_hash by @viktorking7 in #3170
  • fix: correctly handle selfdestruct cold load by @klkvr in #3174
  • chore: release by @github-actions[bot] in #3162
  • bump: tag v102 revm v33.1.0 by @rakita in #3177

Backported from previous release:

New Contributors

Full Changelog: v100...v102

tag v101, revm v33.0.1

14 Nov 13:46

Choose a tag to compare

patch release for: fix: call Inspector::log_full by @klkvr in #3164

Full Changelog: v100...v101

tag v100, revm v33.0.0

12 Nov 01:06
5723170

Choose a tag to compare

100 releases, we came far.

Republishing last release to fix semver issue reported here: #3158

What's Changed

Full Changelog: v99...v100

tag v99 revm v32.0.0

10 Nov 23:23
8a784a7

Choose a tag to compare

What's Changed

  • fix(revme): use primitive hashmap in statetest by @rakita in #3137
  • feat: selfdestruct oog on cold load by @rakita in #3140
  • chore(interpreter): deprecate public otry! macro by @sashass1315 in #3146
  • chore: add eq/serde for InitialAndFloorGas by @rakita in #3147
  • fix: use access list to decide if slot is cold by @rakita in #3149
  • feat: add gas refund to PrecompileOutput by @rakita in #3152
  • fix(op): Ensure L1Block account is always loaded (#3150) by @rakita in #3154
  • chore: merge v98 versions bumps by @rakita in #3155
  • feat: process precompile logs to inspector by @rakita in #3148
  • feat(precompiles): add performant PrecompileError::OtherCowStr variant by @rakita in #3144
  • feat: generic Context::new by @klkvr in #3156
  • chore: release by @github-actions[bot] in #3136
  • bump: v99 revm v32.0.0 by @rakita in #3157

Full Changelog: v96...v99

tag v98 op-revm 12.0.2

10 Nov 14:32

Choose a tag to compare

What's Changed

  • fix(op): Ensure L1Block account is always loaded by @rakita in #3150

Full Changelog: v97...v98

tag v97 revm v31.0.1

07 Nov 11:10

Choose a tag to compare

What's Changed

  • fix(revme): use primitive hashmap in statetest by @rakita in #3137
  • fix: use access list to decide if slot is cold (#3149) by @rakita

Full Changelog: v96...v97

tag v96 revm v31.0.0

03 Nov 12:23
4e8be41

Choose a tag to compare

What's Changed

  • chore: journal transfer fn cleanup by @rakita in #3085
  • chore(inspector): remove redundant EthInterpreter import in either.rs by @Galoretka in #3093
  • fix(op-revm): add missing enveloped_tx validation in validate_env by @sky-coderay in #3094
  • chore(docs): recorrect eip4788 by @RyanBGG in #3111
  • perf: optimize storage validation loop in blockchaintest by @vtjl10 in #3107
  • chore: consolidate revme imports by @rakita in #3088
  • chore(precompile): remove unused mainnet_address() function by @0xMushow in #3091
  • chore: remove redundant alloy-eip7702 from handler dev-dependencies by @RyanBGG in #3105
  • chore(op): use helper function in validate against state by @rakita in #3069
  • feat: dont load access list immediatly by @rakita in #3116
  • feat: impl Sealable for Bytecode by @makcandrov in #3118
  • fix(jovian): fixes the DA footprint update storage slot. fix l1 fork associated with Jovian. by @theochap in #3120
  • feat: JournaledAccount, a nice way to update and track changes by @rakita in #3086
  • fix: hook up Cfg::memory_limit by @DaniPopes in #3129
  • fix(context): avoid double reference in Context::all() by @gap-editor in #3131
  • chore: release by @github-actions[bot] in #3113
  • feat(precompiles/jovian): add jovian precompiles to revm (#3128) by @rakita in #3134
  • bump: tag v96 revm v31.0.0 by @rakita in #3135

New Contributors

Full Changelog: v93...v96

tag v95, op-revm v11.3.0

30 Oct 21:11

Choose a tag to compare

What's Changed

  • feat(precompiles/jovian): add jovian precompiles to revm by @theochap in #3128

Full Changelog: v94...v95

tag v94, op-revm v11.2.0

30 Oct 21:08

Choose a tag to compare

What's Changed

  • fix(jovian): fixes the DA footprint update storage slot. fix l1 fork by @rakita in #3122

Full Changelog: v93...v94