Skip to content

Commit 3c4a452

Browse files
tac0turtleclaude
andauthored
chore: require core v1.1.0 (#3391)
* 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 <noreply@anthropic.com> * 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 <noreply@anthropic.com> * updates deps --------- Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 0e9c60f commit 3c4a452

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

apps/evm/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ replace (
1111
require (
1212
github.com/ethereum/go-ethereum v1.17.4
1313
github.com/evstack/ev-node v1.1.3
14-
github.com/evstack/ev-node/core v1.0.0
14+
github.com/evstack/ev-node/core v1.1.0
1515
github.com/evstack/ev-node/execution/evm v1.0.1
1616
github.com/ipfs/go-datastore v0.9.1
1717
github.com/rs/zerolog v1.35.1

apps/testapp/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ replace (
99

1010
require (
1111
github.com/evstack/ev-node v1.1.3
12-
github.com/evstack/ev-node/core v1.0.0
12+
github.com/evstack/ev-node/core v1.1.0
1313
github.com/ipfs/go-datastore v0.9.1
1414
github.com/rs/zerolog v1.35.1
1515
github.com/spf13/cobra v1.10.2

execution/evm/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ replace (
1010
require (
1111
github.com/ethereum/go-ethereum v1.17.4
1212
github.com/evstack/ev-node v1.1.2
13-
github.com/evstack/ev-node/core v1.0.0
13+
github.com/evstack/ev-node/core v1.1.0
1414
github.com/golang-jwt/jwt/v5 v5.3.1
1515
github.com/ipfs/go-datastore v0.9.1
1616
github.com/rs/zerolog v1.35.1

execution/evm/test/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ require (
7979
github.com/emicklei/dot v1.6.2 // indirect
8080
github.com/ethereum/c-kzg-4844/v2 v2.1.6 // indirect
8181
github.com/evstack/ev-node v1.1.2 // indirect
82-
github.com/evstack/ev-node/core v1.0.0 // indirect
82+
github.com/evstack/ev-node/core v1.1.0 // indirect
8383
github.com/felixge/httpsnoop v1.0.4 // indirect
8484
github.com/ferranbt/fastssz v0.1.4 // indirect
8585
github.com/fjl/jsonw v0.1.0 // indirect

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require (
1717
github.com/celestiaorg/go-square/v3 v3.0.2
1818
github.com/celestiaorg/nmt v0.24.3
1919
github.com/celestiaorg/utils v0.1.0
20-
github.com/evstack/ev-node/core v1.0.0
20+
github.com/evstack/ev-node/core v1.1.0
2121
github.com/filecoin-project/go-jsonrpc v0.10.1
2222
github.com/go-kit/kit v0.13.0
2323
github.com/go-viper/mapstructure/v2 v2.5.0
@@ -51,8 +51,6 @@ require (
5151
gotest.tools/v3 v3.5.2
5252
)
5353

54-
replace github.com/evstack/ev-node/core => ./core
55-
5654
require (
5755
cloud.google.com/go v0.123.0 // indirect
5856
cloud.google.com/go/auth v0.20.0 // indirect

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,8 @@ github.com/envoyproxy/go-control-plane/envoy v1.37.0/go.mod h1:DReE9MMrmecPy+YvQ
188188
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
189189
github.com/envoyproxy/protoc-gen-validate v1.3.3 h1:MVQghNeW+LZcmXe7SY1V36Z+WFMDjpqGAGacLe2T0ds=
190190
github.com/envoyproxy/protoc-gen-validate v1.3.3/go.mod h1:TsndJ/ngyIdQRhMcVVGDDHINPLWB7C82oDArY51KfB0=
191+
github.com/evstack/ev-node/core v1.1.0 h1:Sa7uU5yuNF7YUyLBHPThD6Jt8/jacM1epRLATrdvKRE=
192+
github.com/evstack/ev-node/core v1.1.0/go.mod h1:n2w/LhYQTPsi48m6lMj16YiIqsaQw6gxwjyJvR+B3sY=
191193
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
192194
github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk=
193195
github.com/fatih/color v1.18.0 h1:S8gINlzdQ840/4pfAwic/ZE0djQEH3wM94VfqLTZcOM=

test/e2e/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ require (
131131
github.com/dvsekhvalnov/jose2go v1.8.0 // indirect
132132
github.com/emicklei/dot v1.6.2 // indirect
133133
github.com/ethereum/c-kzg-4844/v2 v2.1.6 // indirect
134-
github.com/evstack/ev-node/core v1.0.0 // indirect
134+
github.com/evstack/ev-node/core v1.1.0 // indirect
135135
github.com/fatih/color v1.18.0 // indirect
136136
github.com/felixge/httpsnoop v1.0.4 // indirect
137137
github.com/ferranbt/fastssz v0.1.4 // indirect

0 commit comments

Comments
 (0)