Skip to content

chore: prep execution/evm v1.1.0#3392

Merged
tac0turtle merged 2 commits into
mainfrom
chore/release-execution-evm-1.1.0
Jul 20, 2026
Merged

chore: prep execution/evm v1.1.0#3392
tac0turtle merged 2 commits into
mainfrom
chore/release-execution-evm-1.1.0

Conversation

@tac0turtle

@tac0turtle tac0turtle commented Jul 20, 2026

Copy link
Copy Markdown
Contributor

Release-ready go.mod for tagging execution/evm/v1.1.0.

Changes

  • Drop the local replace block (ev-node => ../../, core => ../../core) — local cross-module dev is handled by go.work (go.work.example covers all modules).
  • Pin published upstreams: ev-node v1.1.2 → v1.2.1, core v1.1.0 (already required).
  • go.sum gains the v1.2.1 + core v1.1.0 checksums.

Why v1.1.0 (new minor)

Last tag was execution/evm/v1.0.1. Since then reth 2.3 + Amsterdam fork prep (#3352) landed here — new features warrant a minor bump.

Verification

  • go build ./... passes resolving the real published ev-node v1.2.1 + core v1.1.0 (not local replace)
  • go mod tidy is idempotent

Part of the v1.2.1 release chain (core/v1.1.0 → v1.2.1 → execution/evm/v1.1.0 → apps/*/v1.2.1).

🤖 Generated with Claude Code

Summary by CodeRabbit

  • Chores
    • Updated the EV node integration to version 1.2.1 across application, execution, testing, and end-to-end environments.
    • Improved consistency by using the released dependency version instead of local overrides.

Drop the local replace directives and pin the published upstreams:
ev-node v1.2.1 and core v1.1.0. This is the release-ready go.mod for
tagging execution/evm/v1.1.0 (new minor: reth 2.3 / Amsterdam fork
prep landed here since v1.0.1).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
@github-actions

github-actions Bot commented Jul 20, 2026

Copy link
Copy Markdown
Contributor

The latest Buf updates on your PR. Results from workflow CI / buf-check (pull_request).

BuildFormatLintBreakingUpdated (UTC)
✅ passed⏩ skipped✅ passed⏩ skippedJul 20, 2026, 11:07 AM

@coderabbitai

coderabbitai Bot commented Jul 20, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

📝 Walkthrough

Walkthrough

Updated github.com/evstack/ev-node to v1.2.1 in four Go modules and removed the local replacement override from the execution EVM module.

Changes

ev-node dependency alignment

Layer / File(s) Summary
Align module requirements
apps/evm/go.mod, execution/evm/go.mod, execution/evm/test/go.mod, test/e2e/go.mod
All modules use github.com/evstack/ev-node v1.2.1; the execution EVM module no longer redirects ev-node dependencies to local paths.

Estimated code review effort: 1 (Trivial) | ~5 minutes

Possibly related PRs

Suggested reviewers: chatton, julienrbrt

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly reflects the release-prep change for execution/evm and the version bump.
Description check ✅ Passed The description covers the overview, changes, rationale, and verification, matching the template well.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch chore/release-execution-evm-1.1.0

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@apps/evm/go.mod`:
- Line 13: Remove the local replace directive for github.com/evstack/ev-node
from apps/evm/go.mod so the dependency version v1.2.1 resolves from the
published module during release validation. Preserve the existing require entry
and do not alter unrelated module directives.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 817499e5-f16e-4387-b790-1ff34899b3ff

📥 Commits

Reviewing files that changed from the base of the PR and between 3c4a452 and aa6d54e.

⛔ Files ignored due to path filters (1)
  • execution/evm/go.sum is excluded by !**/*.sum
📒 Files selected for processing (4)
  • apps/evm/go.mod
  • execution/evm/go.mod
  • execution/evm/test/go.mod
  • test/e2e/go.mod

Comment thread apps/evm/go.mod
require (
github.com/ethereum/go-ethereum v1.17.4
github.com/evstack/ev-node v1.1.3
github.com/evstack/ev-node v1.2.1

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

root="$(git rev-parse --show-toplevel)"
cd "$root/apps/evm"

go list -m -f '{{.Path}} {{.Version}} {{.Dir}}' github.com/evstack/ev-node

if go list -m -f '{{.Dir}}' github.com/evstack/ev-node | grep -Fq "$root"; then
  echo "ev-node is resolving from the local checkout, not the published module" >&2
  exit 1
fi

Repository: evstack/ev-node

Length of output: 277


Remove the local replace for release validation

apps/evm/go.mod:6 still rewrites github.com/evstack/ev-node to ../../, so this module resolves the local checkout instead of the published v1.2.1 on line 13. If this bump is meant to exercise the released dependency, gate or remove the replace first.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@apps/evm/go.mod` at line 13, Remove the local replace directive for
github.com/evstack/ev-node from apps/evm/go.mod so the dependency version v1.2.1
resolves from the published module during release validation. Preserve the
existing require entry and do not alter unrelated module directives.

@codecov

codecov Bot commented Jul 20, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 62.32%. Comparing base (3c4a452) to head (aa6d54e).

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #3392      +/-   ##
==========================================
- Coverage   62.33%   62.32%   -0.01%     
==========================================
  Files         120      120              
  Lines       13454    13454              
==========================================
- Hits         8386     8385       -1     
- Misses       4126     4128       +2     
+ Partials      942      941       -1     
Flag Coverage Δ
combined 62.32% <ø> (-0.01%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@tac0turtle
tac0turtle merged commit b516561 into main Jul 20, 2026
28 checks passed
@tac0turtle
tac0turtle deleted the chore/release-execution-evm-1.1.0 branch July 20, 2026 11:29
@coderabbitai coderabbitai Bot mentioned this pull request Jul 20, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant