Skip to content

Commit 8f56b55

Browse files
authored
chore: v1.32.0 release (#8060)
2 parents 64823d4 + 36dbfb2 commit 8f56b55

File tree

178 files changed

+5914
-6875
lines changed

Some content is hidden

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

178 files changed

+5914
-6875
lines changed

.env.test

Lines changed: 1 addition & 1 deletion
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:latest-amd64-unstable
7+
LIGHTHOUSE_DOCKER_IMAGE=sigp/lighthouse:v7.0.1
88

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

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@ docs/build/
6464
.pyrmont
6565
.tmpdb
6666
docker/grafana_dev/dashboards
67-
# EIP-4844 (only commit .ssz file)
68-
packages/beacon-node/trusted_setup.json
69-
packages/beacon-node/trusted_setup.txt
7067

7168
# Wallet CLI artifacts
7269
.pass

.wordlist.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ BLS
77
BeaconNode
88
Besu
99
Buterin
10-
CLA
1110
CLI
1211
CTRL
1312
Casper
@@ -62,8 +61,6 @@ JWT
6261
KDE
6362
Kubernetes
6463
Kurtosis
65-
LGPL
66-
LGPLv
6764
LMD
6865
LPoS
6966
LTS
@@ -109,6 +106,7 @@ VM
109106
Vitalik
110107
Vitest
111108
Wagyu
109+
addons
112110
api
113111
args
114112
async
@@ -210,6 +208,7 @@ protolambda
210208
prover
211209
pubsub
212210
rebased
211+
recompiles
213212
repo
214213
repos
215214
req

CONTRIBUTING.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,16 @@ If you observe any error in tests with matching to above error message, that imp
6262

6363
If you observe following error running any of the test files that means you are running a file which itself or any dependency of that file imports `vitest`, but you are not running that file with `vitest` runner. Try running it with `yarn vitest` command, not with `node` command.
6464

65+
**Error: Could not locate the bindings file.**
66+
67+
If you observe the above error in running tests or the [beacon chain cli](https://github.com/ChainSafe/lodestar/issues/1396#issue-677613531), try removing `node_modules` and running `npm rebuild`:
68+
69+
```sh
70+
rm -rf node_modules && npm rebuild
71+
```
72+
73+
While `npm rebuild` is useful mostly during node version upgrades, it also [recompiles all your C++ addons](https://docs.npmjs.com/cli/v7/commands/npm-rebuild), which indirectly fixes our issue with bindings.
74+
6575
### Debugging Spec Tests
6676

6777
- To fix errors always focus on passing all minimal tests first without running mainnet tests.
@@ -124,7 +134,6 @@ Unsure where to begin contributing to Lodestar? Here are some ideas!
124134
3. Make your changes in your local fork.
125135
4. If you've made a code change, make sure to lint and test your changes (`yarn lint` and `yarn test:unit`).
126136
5. Make an open pull request when you're ready for it to be reviewed. We review PRs on a regular basis. See Pull request etiquette for more information.
127-
6. You may be asked to sign a Contributor License Agreement (CLA). We make it relatively painless with CLA-bot.
128137

129138
Please note that trivial, non-code contributions such as spelling, grammar, typos, corrections, comments and link fixes are not acceptable pull requests. Although we appreciate the effort to fix these valid concerns, it is not practical for us to run our CI systems to accommodate minor external contributions which generate minimal value for the purpose of contribution/airdrop farming. It would be appreciated for you to open up an issue instead for our team to aggregate these types of contributions into a batch commit.
130139

LICENSE-APACHE renamed to LICENSE

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -175,22 +175,6 @@
175175

176176
END OF TERMS AND CONDITIONS
177177

178-
License applies to:
179-
- lodestar/packages/api
180-
- lodestar/packages/config
181-
- lodestar/packages/db
182-
- lodestar/packages/flare
183-
- lodestar/packages/fork-choice
184-
- lodestar/packages/light-client
185-
- lodestar/packages/logger
186-
- lodestar/packages/params
187-
- lodestar/packages/reqresp
188-
- lodestar/packages/spec-test-util
189-
- lodestar/packages/state-transition
190-
- lodestar/packages/test-utils
191-
- lodestar/packages/types
192-
- lodestar/packages/utils
193-
194178
Licensed under the Apache License, Version 2.0 (the "License");
195179
you may not use this file except in compliance with the License.
196180
You may obtain a copy of the License at

LICENSE-LGPL

Lines changed: 0 additions & 172 deletions
This file was deleted.

0 commit comments

Comments
 (0)