From 619a47c819d13af0b8654524a5fb7befafbd23db Mon Sep 17 00:00:00 2001 From: tac0turtle Date: Mon, 20 Jul 2026 10:20:04 +0200 Subject: [PATCH 1/3] chore: require core v1.1.0 Bump the root module's core requirement from v1.0.0 to the freshly released core/v1.1.0, which carries the breaking Executor change (ExecuteTxs now returns ExecuteResult). The code has depended on this API since #3282 but go.mod still required v1.0.0, building only via the local `replace => ./core`. External consumers ignore that replace, so this must be v1.1.0 for a working release. Prerequisite for tagging v1.2.1 (v1.2.0 shipped with the stale v1.0.0 requirement and is superseded). Co-Authored-By: Claude Opus 4.8 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 6be3ab1aac..aff841a082 100644 --- a/go.mod +++ b/go.mod @@ -17,7 +17,7 @@ require ( github.com/celestiaorg/go-square/v3 v3.0.2 github.com/celestiaorg/nmt v0.24.3 github.com/celestiaorg/utils v0.1.0 - github.com/evstack/ev-node/core v1.0.0 + github.com/evstack/ev-node/core v1.1.0 github.com/filecoin-project/go-jsonrpc v0.10.1 github.com/go-kit/kit v0.13.0 github.com/go-viper/mapstructure/v2 v2.5.0 From 7e7f43db58352963abb31e7ebd68fd503e215b59 Mon Sep 17 00:00:00 2001 From: tac0turtle Date: Mon, 20 Jul 2026 10:26:20 +0200 Subject: [PATCH 2/3] chore: drop core replace from root go.mod Remove `replace github.com/evstack/ev-node/core => ./core` so the published module resolves core v1.1.0 from the proxy with a proper go.sum checksum, instead of relying on a local path that consumers ignore. Local cross-module dev is handled by go.work (go.work.example already `use`s ./core). Co-Authored-By: Claude Opus 4.8 --- go.mod | 2 -- go.sum | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index aff841a082..770b47aa1e 100644 --- a/go.mod +++ b/go.mod @@ -51,8 +51,6 @@ require ( gotest.tools/v3 v3.5.2 ) -replace github.com/evstack/ev-node/core => ./core - require ( cloud.google.com/go v0.123.0 // indirect cloud.google.com/go/auth v0.20.0 // indirect diff --git a/go.sum b/go.sum index 03220a216a..713347aa96 100644 --- a/go.sum +++ b/go.sum @@ -188,6 +188,8 @@ github.com/envoyproxy/go-control-plane/envoy v1.37.0/go.mod h1:DReE9MMrmecPy+YvQ github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/envoyproxy/protoc-gen-validate v1.3.3 h1:MVQghNeW+LZcmXe7SY1V36Z+WFMDjpqGAGacLe2T0ds= github.com/envoyproxy/protoc-gen-validate v1.3.3/go.mod h1:TsndJ/ngyIdQRhMcVVGDDHINPLWB7C82oDArY51KfB0= +github.com/evstack/ev-node/core v1.1.0 h1:Sa7uU5yuNF7YUyLBHPThD6Jt8/jacM1epRLATrdvKRE= +github.com/evstack/ev-node/core v1.1.0/go.mod h1:n2w/LhYQTPsi48m6lMj16YiIqsaQw6gxwjyJvR+B3sY= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= github.com/fatih/color v1.18.0 h1:S8gINlzdQ840/4pfAwic/ZE0djQEH3wM94VfqLTZcOM= From 617c752f643ae05bf03f3779070ab2a62b776169 Mon Sep 17 00:00:00 2001 From: tac0turtle Date: Mon, 20 Jul 2026 10:35:49 +0200 Subject: [PATCH 3/3] updates deps --- apps/evm/go.mod | 2 +- apps/testapp/go.mod | 2 +- execution/evm/go.mod | 2 +- execution/evm/test/go.mod | 2 +- test/e2e/go.mod | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/evm/go.mod b/apps/evm/go.mod index 1b31c09387..19675f04d1 100644 --- a/apps/evm/go.mod +++ b/apps/evm/go.mod @@ -11,7 +11,7 @@ replace ( require ( github.com/ethereum/go-ethereum v1.17.4 github.com/evstack/ev-node v1.1.3 - github.com/evstack/ev-node/core v1.0.0 + github.com/evstack/ev-node/core v1.1.0 github.com/evstack/ev-node/execution/evm v1.0.1 github.com/ipfs/go-datastore v0.9.1 github.com/rs/zerolog v1.35.1 diff --git a/apps/testapp/go.mod b/apps/testapp/go.mod index ef35d648c3..d43dcb5331 100644 --- a/apps/testapp/go.mod +++ b/apps/testapp/go.mod @@ -9,7 +9,7 @@ replace ( require ( github.com/evstack/ev-node v1.1.3 - github.com/evstack/ev-node/core v1.0.0 + github.com/evstack/ev-node/core v1.1.0 github.com/ipfs/go-datastore v0.9.1 github.com/rs/zerolog v1.35.1 github.com/spf13/cobra v1.10.2 diff --git a/execution/evm/go.mod b/execution/evm/go.mod index f73db9de52..d0f896acfd 100644 --- a/execution/evm/go.mod +++ b/execution/evm/go.mod @@ -10,7 +10,7 @@ replace ( require ( github.com/ethereum/go-ethereum v1.17.4 github.com/evstack/ev-node v1.1.2 - github.com/evstack/ev-node/core v1.0.0 + github.com/evstack/ev-node/core v1.1.0 github.com/golang-jwt/jwt/v5 v5.3.1 github.com/ipfs/go-datastore v0.9.1 github.com/rs/zerolog v1.35.1 diff --git a/execution/evm/test/go.mod b/execution/evm/test/go.mod index 6a301d0b34..350d7a5b6b 100644 --- a/execution/evm/test/go.mod +++ b/execution/evm/test/go.mod @@ -79,7 +79,7 @@ require ( github.com/emicklei/dot v1.6.2 // indirect github.com/ethereum/c-kzg-4844/v2 v2.1.6 // indirect github.com/evstack/ev-node v1.1.2 // indirect - github.com/evstack/ev-node/core v1.0.0 // indirect + github.com/evstack/ev-node/core v1.1.0 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/ferranbt/fastssz v0.1.4 // indirect github.com/fjl/jsonw v0.1.0 // indirect diff --git a/test/e2e/go.mod b/test/e2e/go.mod index 4121c1a25f..a65002d805 100644 --- a/test/e2e/go.mod +++ b/test/e2e/go.mod @@ -131,7 +131,7 @@ require ( github.com/dvsekhvalnov/jose2go v1.8.0 // indirect github.com/emicklei/dot v1.6.2 // indirect github.com/ethereum/c-kzg-4844/v2 v2.1.6 // indirect - github.com/evstack/ev-node/core v1.0.0 // indirect + github.com/evstack/ev-node/core v1.1.0 // indirect github.com/fatih/color v1.18.0 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/ferranbt/fastssz v0.1.4 // indirect