Skip to content

Commit 54229fd

Browse files
authored
chore: v1.26.0 release (#7423)
2 parents 191f2f0 + 32fa092 commit 54229fd

File tree

234 files changed

+4062
-2124
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

234 files changed

+4062
-2124
lines changed

.benchrc.yaml

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
# Mocha opts
2-
extension: ["ts"]
3-
colors: true
4-
node-option:
5-
- "loader=ts-node/register"
6-
71
# benchmark opts
82
threshold: 3
9-
maxMs: 60_000
3+
maxMs: 60000
104
minRuns: 10
5+
# Default is set to 0.005, which is too low considering the benchmark setup we have
6+
# Changing it to 0.05 which is 5/100, so 5% difference of moving average among run times
7+
convergeFactor: 0.075 # 7.5 / 100
8+
triggerGC: false
9+
sort: true
10+
convergence: linear
11+
averageCalculation: clean-outliers

.env.test

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
GETH_DOCKER_IMAGE=ethereum/client-go:v1.13.14
55
# Use either image or local binary for the testing
66
GETH_BINARY_DIR=
7-
LIGHTHOUSE_DOCKER_IMAGE=sigp/lighthouse:v5.1.1-amd64-modern-dev
7+
LIGHTHOUSE_DOCKER_IMAGE=sigp/lighthouse:latest-amd64-unstable
88

99
# We can't upgrade nethermind further due to genesis hash mismatch with the geth
1010
# https://github.com/NethermindEth/nethermind/issues/6683

biome.jsonc

-8
Original file line numberDiff line numberDiff line change
@@ -255,14 +255,6 @@
255255
}
256256
}
257257
},
258-
// Dependencies still using mocha
259-
{
260-
"include": ["packages/**/test/perf/**/*.test.ts", "packages/state-transition/test/utils/beforeValueMocha.ts"],
261-
"javascript": {
262-
// These are used by mocha
263-
"globals": ["describe", "it", "before", "after"]
264-
}
265-
},
266258
{
267259
"include": [
268260
// These files are using mix cases e.g. `engine_newPayloadV4`

0 commit comments

Comments
 (0)