Skip to content

Commit 596b8c6

Browse files
committed
v1.0.7
1 parent e0df027 commit 596b8c6

File tree

2 files changed

+44
-3
lines changed

2 files changed

+44
-3
lines changed

CHANGELOG.md

Lines changed: 43 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
1+
2021-02-04 v1.0.7
2+
=================
3+
4+
A release which provides additional protection against accidental slashings and
5+
further performance improvements across the board.
6+
7+
-----
8+
9+
New additions:
10+
11+
* New slashing protection mechanism (doppelganger detection) prevents your validator
12+
from contradicting itself if you have accidentally left it running on another
13+
machine(see the `--doppelganger-detection` option).
14+
15+
* Optimized batching of BLS signature verification leading to faster sync speeds
16+
and reduced CPU load.
17+
18+
* Further improvements to attestation subnet walking resulting in a reduction in
19+
both bandwidth and CPU usage.
20+
21+
* A new `--subscribe-all-subnets` option allowing the node to maintain peers from all
22+
attestation subnets (most suitable for bootstrap nodes).
23+
24+
* Official docker images published at https://hub.docker.com/r/statusim/nimbus-eth2
25+
26+
* Reproducible build recipe for creating Nimbus Windows binaries.
27+
28+
We've fixed:
29+
30+
* A bug that had the potential to completely halt all syncing activity.
31+
32+
* Inefficient processing of blocks with Eth1 deposits which occassionally led to
33+
increased latencies when delivering attestations.
34+
35+
* Outdated records in our bootstrap nodes list.
36+
37+
* An Eth1 syncing issue which manifested itself as a "Corrupted deposits history detected" error.
38+
39+
* Non-standard encoding of certain data types such as signatures and bit sequences
40+
within the results of JSON-RPC requests.
41+
42+
143
2021-01-10 v1.0.6
244
=================
345

@@ -14,8 +56,7 @@ significant performance improvements.
1456
* Improved attestation subnet walking logic: this brings significant reductions
1557
in bandwidth usage and CPU load.
1658

17-
* Better usage of the Sqlite3 checkpointing API (minor performance
18-
improvement).
59+
* Better usage of the Sqlite3 checkpointing API (minor performance improvement).
1960

2061
* Larger window for the candidate attestations included in blocks: this can lead
2162
to higher block rewards.

beacon_chain/version.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ when not defined(nimscript):
99
const
1010
versionMajor* = 1
1111
versionMinor* = 0
12-
versionBuild* = 6
12+
versionBuild* = 7
1313

1414
versionBlob* = "stateofus" # Single word - ends up in the default graffitti
1515

0 commit comments

Comments
 (0)