Skip to content

Commit 5f62a39

Browse files
committed
v1.0.8
1 parent e1d6df1 commit 5f62a39

File tree

2 files changed

+56
-18
lines changed

2 files changed

+56
-18
lines changed

CHANGELOG.md

Lines changed: 55 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,81 @@
1+
2021-02-22 v1.0.8
2+
=================
3+
4+
A release bringing important JSON-RPC stability improvements and compatibility
5+
fixes making it possible to use Nimbus as a RockerPool operator.
6+
7+
-----
8+
9+
New additions:
10+
11+
* RocketPool integration:
12+
https://github.com/rocket-pool/smartnode/pull/89
13+
14+
* Indications for next attestation time on every "Slot end" log message,
15+
helping you to select the best time for restarting the node.
16+
17+
We've fixed:
18+
19+
* A rare segmentation fault triggered when connecting to a web3 provider
20+
using a secure web socket.
21+
22+
* JSON-RPC spec violations and potential DoS attack vectors.
23+
24+
* 2 stale bootstrap node addressed.
25+
26+
127
2021-02-04 v1.0.7
228
=================
329

4-
A release which provides additional protection against accidental slashings and
5-
further performance improvements across the board.
30+
A release which provides additional protection against accidental slashings
31+
and further performance improvements across the board.
632

733
-----
834

935
New additions:
1036

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).
37+
* New slashing protection mechanism (doppelganger detection) prevents your
38+
validator from contradicting itself if you have accidentally left it running
39+
on another machine (see the `--doppelganger-detection` option).
1440

15-
* Optimized batching of BLS signature verification leading to faster sync speeds
16-
and reduced CPU load.
41+
* Optimized batching of BLS signature verification leading to faster sync
42+
speeds and reduced CPU load.
1743

18-
* Further improvements to attestation subnet walking resulting in a reduction in
19-
both bandwidth and CPU usage.
44+
* Further improvements to attestation subnet walking resulting in a reduction
45+
in both bandwidth and CPU usage.
2046

21-
* A new `--subscribe-all-subnets` option allowing the node to maintain peers from all
22-
attestation subnets (most suitable for bootstrap nodes).
47+
* A new `--subscribe-all-subnets` option allowing the node to maintain peers
48+
from all attestation subnets (most suitable for bootstrap nodes).
2349

2450
* Official docker images published at https://hub.docker.com/r/statusim/nimbus-eth2
2551

26-
* Reproducible build recipe for creating Nimbus Windows binaries.
52+
* Official Windows binaries created from a reproducible build recipe.
53+
54+
* An option to enable the automatic updating of IP:Port in the ENR
55+
(off by default, specify `--enr-auto-update:true` to turn it on)
2756

2857
We've fixed:
2958

3059
* A bug that had the potential to completely halt all syncing activity.
3160

32-
* Inefficient processing of blocks with Eth1 deposits which occassionally led to
33-
increased latencies when delivering attestations.
61+
* Inefficient processing of blocks with Eth1 deposits which occassionally
62+
led to increased latencies when delivering attestations.
3463

3564
* Outdated records in our bootstrap nodes list.
3665

37-
* An Eth1 syncing issue which manifested itself as a "Corrupted deposits history detected" error.
66+
* An Eth1 syncing issue which manifested itself as a "Corrupted deposits
67+
history detected" error.
68+
69+
* Non-standard encoding of certain data types such as signatures and bit
70+
sequences within the results of JSON-RPC requests.
71+
72+
We've deprecated:
73+
74+
* `make beacon_node` will no longer compile the beacon node.
75+
You'll need to run `make nimbus_beacon_node` from now on
3876

39-
* Non-standard encoding of certain data types such as signatures and bit sequences
40-
within the results of JSON-RPC requests.
77+
* On monday we'll phase out the old `master` branch. If you're still building
78+
Nimbus from `master`, please switch to `stable`.
4179

4280

4381
2021-01-10 v1.0.6

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* = 7
12+
versionBuild* = 8
1313

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

0 commit comments

Comments
 (0)