Skip to content

Commit 8327240

Browse files
committed
v1.0.0-stateofus
1 parent ac9bdde commit 8327240

File tree

2 files changed

+41
-17
lines changed

2 files changed

+41
-17
lines changed

CHANGELOG.md

Lines changed: 40 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,48 @@
1-
2020-11-20 v1.0.0-final
2-
=======================
1+
2020-11-29 v1.0.0-stateofus
2+
===========================
33

4-
** Highlights include:**
4+
As promised, a slightly more polished release before Mainnet launch ✨
55

6-
* Validator balances now exported through metrics, enabling Grafana dashboards and alerts
7-
* Mainnet bootstrap nodes updated
8-
* New RPC calls to track node and config status
9-
* New tool to generate ENR records
6+
Please make sure you update to this release before Eth2 genesis this
7+
Tuesday (December 1 12:00:23 UTC), as it contains some important improvements.
108

11-
** We've fixed:**
9+
New additions:
10+
11+
* Updated list of bootstrap nodes for Mainnet.
12+
13+
* Prometheus metrics for validator balances. The beacon node will also
14+
display the total balance of all attached validators in the status
15+
footer by default.
16+
17+
* `deposits import` now automagically finds the `validator_keys` directory
18+
produced by the `eth2.0-deposit-cli` if it is located in the same working
19+
directory.
20+
21+
* A `deposits exit` command for submitting a voluntary validator exit.
22+
23+
* A `record` CLI command for inspecting and creating ENR records.
24+
25+
* An `--agent-string` option for specifying how Nimbus will present itself
26+
in LibP2P messages. The default value is now `nimbus`.
27+
28+
* New RPC calls to track node and config status. Specifically, a JSON-RCP
29+
call for inspecting the active config preset (`get_v1_config_spec`).
30+
31+
We've fixed:
32+
33+
* Inaccurate peer counts (an occasional mismatch between the number of
34+
syncing peers and GossipSub peers) -- the default peer limit has been
35+
increased to maintain a healthy gossip mesh.
36+
37+
* High bandwidth usage of GossipSub (due to sub-optimal caching and lack
38+
of limits in the IWANT/IHAVE exchange messages) -- we're now using the
39+
latest spec GossipSub parameters.
1240

13-
* Peer counts were sometimes off - this has been fixed now and the default peer limit has
14-
been increased to maintain a healthy gossip mesh
15-
* Fixed high bandwdith usage with larger gossipsub cache and updated ETH2 spec gossipsub parameters
16-
* Limit on IHave size to further constrain bandwidth usage
17-
* Lower parallel sync requests to 10 to lower memory footprint
18-
* Nimbus inow identifies itself as nimbus in libp2p (and not nim-libp2p)
41+
* High sync memory footprint -- we've reduced the number of sync workers
42+
from 20 to 10 (note, this should not affect sync speed).
1943

2044

21-
2020-11-20 v1.0.0-rc1
45+
2020-11-25 v1.0.0-rc1
2246
=====================
2347

2448
We're happy to join the other client teams in announcing our `v1.0.0` release
@@ -58,7 +82,7 @@ more validators connect to Mainnet.
5882

5983
* Unnecessary copy/memory alloc when loading DbSeq entries.
6084

61-
* A block production issue affecting clients that hadn't finished downloading the latest deposits.
85+
* A block production issue affecting clients that hadn't finished downloading the latest deposits.
6286

6387

6488
2020-11-20 v0.6.6

beacon_chain/version.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const
1111
versionMinor* = 0
1212
versionBuild* = 0
1313

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

1616
useInsecureFeatures* = defined(insecure)
1717

0 commit comments

Comments
 (0)