Skip to content

Commit e599cae

Browse files
authored
build(deps): bump ev-node (#3144)
1 parent 69d2ba8 commit e599cae

File tree

12 files changed

+25
-25
lines changed

12 files changed

+25
-25
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12-
## v1.0.0
12+
## v1.0.0-rc.5 / v1.0.0
1313

1414
### Added
1515

@@ -32,7 +32,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3232
- Store pending blocks separately from executed blocks key. [#3073](https://github.com/evstack/ev-node/pull/3073)
3333
- Fixes issues with force inclusion verification on sync nodes. [#3057](https://github.com/evstack/ev-node/pull/3057)
3434
- Add flag to `local-da` to produce empty DA blocks (closer to the real system). [#3057](https://github.com/evstack/ev-node/pull/3057)
35-
- Validate P2P DA height hints against the latest known DA height to prevent malicious peers from triggering runaway catchup . [#3128](https://github.com/evstack/ev-node/pull/3128)
35+
- Validate P2P DA height hints against the latest known DA height to prevent malicious peers from triggering runaway catchup. [#3128](https://github.com/evstack/ev-node/pull/3128)
36+
- Replace syncer DA polling system by DA subscription via websockets. [#3131](https://github.com/evstack/ev-node/pull/3131)
3637

3738
## v1.0.0-rc.4
3839

apps/evm/go.mod

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@ module github.com/evstack/ev-node/apps/evm
22

33
go 1.25.6
44

5-
replace (
6-
github.com/evstack/ev-node => ../../
7-
github.com/evstack/ev-node/execution/evm => ../../execution/evm
8-
)
5+
//github.com/evstack/ev-node => ../../
6+
replace github.com/evstack/ev-node/execution/evm => ../../execution/evm
97

108
require (
119
github.com/ethereum/go-ethereum v1.17.0
12-
github.com/evstack/ev-node v1.0.0-rc.4
10+
github.com/evstack/ev-node v1.0.0-rc.5
1311
github.com/evstack/ev-node/core v1.0.0
1412
github.com/evstack/ev-node/execution/evm v1.0.0-rc.3
1513
github.com/ipfs/go-datastore v0.9.1

apps/evm/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,8 @@ github.com/ethereum/go-bigmodexpfix v0.0.0-20250911101455-f9e208c548ab h1:rvv6MJ
407407
github.com/ethereum/go-bigmodexpfix v0.0.0-20250911101455-f9e208c548ab/go.mod h1:IuLm4IsPipXKF7CW5Lzf68PIbZ5yl7FFd74l/E0o9A8=
408408
github.com/ethereum/go-ethereum v1.17.0 h1:2D+1Fe23CwZ5tQoAS5DfwKFNI1HGcTwi65/kRlAVxes=
409409
github.com/ethereum/go-ethereum v1.17.0/go.mod h1:2W3msvdosS/MCWytpqTcqgFiRYbTH59FxDJzqah120o=
410+
github.com/evstack/ev-node v1.0.0-rc.5 h1:3qd3KWuwiLr5RKt1j8v2h5X3XZvwyYGbMUDskM+cAeI=
411+
github.com/evstack/ev-node v1.0.0-rc.5/go.mod h1:VAaN0tbN1+SSm7sLzMhHZNUn9sgpf1eok5gu3YVbT38=
410412
github.com/evstack/ev-node/core v1.0.0 h1:s0Tx0uWHme7SJn/ZNEtee4qNM8UO6PIxXnHhPbbKTz8=
411413
github.com/evstack/ev-node/core v1.0.0/go.mod h1:n2w/LhYQTPsi48m6lMj16YiIqsaQw6gxwjyJvR+B3sY=
412414
github.com/fatih/color v1.10.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM=

apps/grpc/go.mod

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

1010
require (
11-
github.com/evstack/ev-node v1.0.0-rc.4
11+
github.com/evstack/ev-node v1.0.0-rc.5
1212
github.com/evstack/ev-node/core v1.0.0
1313
github.com/evstack/ev-node/execution/grpc v1.0.0-rc.1
1414
github.com/ipfs/go-datastore v0.9.1

apps/testapp/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ module github.com/evstack/ev-node/apps/testapp
22

33
go 1.25.6
44

5-
replace github.com/evstack/ev-node => ../../.
5+
//replace github.com/evstack/ev-node => ../../.
66

77
require (
8-
github.com/evstack/ev-node v1.0.0-rc.4
8+
github.com/evstack/ev-node v1.0.0-rc.5
99
github.com/evstack/ev-node/core v1.0.0
1010
github.com/ipfs/go-datastore v0.9.1
1111
github.com/rs/zerolog v1.34.0

apps/testapp/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,8 @@ github.com/envoyproxy/protoc-gen-validate v0.10.0/go.mod h1:DRjgyB0I43LtJapqN6Ni
367367
github.com/envoyproxy/protoc-gen-validate v0.10.1/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss=
368368
github.com/envoyproxy/protoc-gen-validate v1.0.1/go.mod h1:0vj8bNkYbSTNS2PIyH87KZaeN4x9zpL9Qt8fQC7d+vs=
369369
github.com/envoyproxy/protoc-gen-validate v1.0.2/go.mod h1:GpiZQP3dDbg4JouG/NNS7QWXpgx6x8QiMKdmN72jogE=
370+
github.com/evstack/ev-node v1.0.0-rc.5 h1:3qd3KWuwiLr5RKt1j8v2h5X3XZvwyYGbMUDskM+cAeI=
371+
github.com/evstack/ev-node v1.0.0-rc.5/go.mod h1:VAaN0tbN1+SSm7sLzMhHZNUn9sgpf1eok5gu3YVbT38=
370372
github.com/evstack/ev-node/core v1.0.0 h1:s0Tx0uWHme7SJn/ZNEtee4qNM8UO6PIxXnHhPbbKTz8=
371373
github.com/evstack/ev-node/core v1.0.0/go.mod h1:n2w/LhYQTPsi48m6lMj16YiIqsaQw6gxwjyJvR+B3sY=
372374
github.com/fatih/color v1.10.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM=

execution/evm/go.mod

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.25.6
44

55
require (
66
github.com/ethereum/go-ethereum v1.17.0
7-
github.com/evstack/ev-node v1.0.0-rc.3
7+
github.com/evstack/ev-node v1.0.0-rc.5
88
github.com/evstack/ev-node/core v1.0.0
99
github.com/golang-jwt/jwt/v5 v5.3.1
1010
github.com/ipfs/go-datastore v0.9.1
@@ -16,13 +16,6 @@ require (
1616
google.golang.org/protobuf v1.36.11
1717
)
1818

19-
require (
20-
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
21-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.41.0 // indirect
22-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.41.0 // indirect
23-
go.opentelemetry.io/otel/metric v1.41.0 // indirect
24-
)
25-
2619
require (
2720
github.com/DataDog/zstd v1.5.5 // indirect
2821
github.com/Microsoft/go-winio v0.6.2 // indirect
@@ -83,6 +76,10 @@ require (
8376
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
8477
github.com/tklauser/go-sysconf v0.3.12 // indirect
8578
github.com/tklauser/numcpus v0.6.1 // indirect
79+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
80+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.41.0 // indirect
81+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.41.0 // indirect
82+
go.opentelemetry.io/otel/metric v1.41.0 // indirect
8683
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
8784
go.yaml.in/yaml/v3 v3.0.4 // indirect
8885
golang.org/x/crypto v0.48.0 // indirect
@@ -98,5 +95,3 @@ require (
9895
gopkg.in/yaml.v3 v3.0.1 // indirect
9996
lukechampine.com/blake3 v1.4.1 // indirect
10097
)
101-
102-
replace github.com/evstack/ev-node => ../../

execution/evm/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ github.com/ethereum/go-bigmodexpfix v0.0.0-20250911101455-f9e208c548ab h1:rvv6MJ
7474
github.com/ethereum/go-bigmodexpfix v0.0.0-20250911101455-f9e208c548ab/go.mod h1:IuLm4IsPipXKF7CW5Lzf68PIbZ5yl7FFd74l/E0o9A8=
7575
github.com/ethereum/go-ethereum v1.17.0 h1:2D+1Fe23CwZ5tQoAS5DfwKFNI1HGcTwi65/kRlAVxes=
7676
github.com/ethereum/go-ethereum v1.17.0/go.mod h1:2W3msvdosS/MCWytpqTcqgFiRYbTH59FxDJzqah120o=
77+
github.com/evstack/ev-node v1.0.0-rc.5 h1:3qd3KWuwiLr5RKt1j8v2h5X3XZvwyYGbMUDskM+cAeI=
78+
github.com/evstack/ev-node v1.0.0-rc.5/go.mod h1:VAaN0tbN1+SSm7sLzMhHZNUn9sgpf1eok5gu3YVbT38=
7779
github.com/evstack/ev-node/core v1.0.0 h1:s0Tx0uWHme7SJn/ZNEtee4qNM8UO6PIxXnHhPbbKTz8=
7880
github.com/evstack/ev-node/core v1.0.0/go.mod h1:n2w/LhYQTPsi48m6lMj16YiIqsaQw6gxwjyJvR+B3sY=
7981
github.com/ferranbt/fastssz v0.1.4 h1:OCDB+dYDEQDvAgtAGnTSidK1Pe2tW3nFV40XyMkTeDY=

execution/evm/test/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ require (
7272
github.com/dvsekhvalnov/jose2go v1.7.0 // indirect
7373
github.com/emicklei/dot v1.6.2 // indirect
7474
github.com/ethereum/c-kzg-4844/v2 v2.1.5 // indirect
75-
github.com/evstack/ev-node v1.0.0-rc.3 // indirect
75+
github.com/evstack/ev-node v1.0.0-rc.5 // indirect
7676
github.com/evstack/ev-node/core v1.0.0 // indirect
7777
github.com/felixge/httpsnoop v1.0.4 // indirect
7878
github.com/ferranbt/fastssz v0.1.4 // indirect

execution/grpc/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25.6
55
require (
66
connectrpc.com/connect v1.19.1
77
connectrpc.com/grpcreflect v1.3.0
8-
github.com/evstack/ev-node v1.0.0-rc.4
8+
github.com/evstack/ev-node v1.0.0-rc.5
99
github.com/evstack/ev-node/core v1.0.0
1010
golang.org/x/net v0.51.0
1111
google.golang.org/protobuf v1.36.11

0 commit comments

Comments
 (0)