v1.0.2
This commit is contained in:
parent
508ea91998
commit
d302c1d8ee
70
CHANGELOG.md
70
CHANGELOG.md
|
@ -1,38 +1,70 @@
|
||||||
|
2020-12-03 v1.0.2
|
||||||
|
=================
|
||||||
|
|
||||||
|
A release that fixes an issue regarding the occasional missed block proposal.
|
||||||
|
|
||||||
|
Proposing a block is arguably the most important duty you have as a validator.
|
||||||
|
So it's important you update at your earliest convenience.
|
||||||
|
|
||||||
|
-----
|
||||||
|
|
||||||
|
**New additions:**
|
||||||
|
|
||||||
|
* 8 new JSON-RPC calls that bring us to feature parity with the official
|
||||||
|
beacon node API.
|
||||||
|
|
||||||
|
**We've fixed:**
|
||||||
|
|
||||||
|
* A deposit merkle proofs generation issue which occasionally resulting
|
||||||
|
in missed block proposals shortly after a new Eth1 head was selected.
|
||||||
|
|
||||||
|
* Slow status bar updates in the absense of logging messages.
|
||||||
|
|
||||||
|
|
||||||
2020-12-02 v1.0.1
|
2020-12-02 v1.0.1
|
||||||
=================
|
=================
|
||||||
|
|
||||||
A point release fixing a number of issues reported after the Mainnet launch.
|
A release with a number of important fixes and optimisations.
|
||||||
|
|
||||||
New additions:
|
**Please update** at your earliest convenience.
|
||||||
|
|
||||||
* Better pacing of our Eth1 syncing requests less likely to go over the
|
In order to minimise downtime, we recommend updating and rebuilding
|
||||||
maximum allowed burst rates with the Infura free plans. More resiliency
|
the beacon node **before restarting.**
|
||||||
in case of errors.
|
|
||||||
|
|
||||||
We've fixed:
|
-----
|
||||||
|
|
||||||
* A crash reported by multiple users with the following error message:
|
**New additions:**
|
||||||
"Only one concurrent read allowed".
|
|
||||||
|
* More conservative Eth1 syncing requests to reduce the likelihood of
|
||||||
|
going over the maximum allowed burst rates under the Infura free plan
|
||||||
|
(predominantly aimed at those running Nimbus on resource-restricted
|
||||||
|
device like Raspberry Pi's) + more resiliency in case of errors.
|
||||||
|
|
||||||
|
**We've fixed:**
|
||||||
|
|
||||||
|
* A "Only one concurrent read allowed" crash reported by multiple users.
|
||||||
|
|
||||||
* An error in the default configuration preventing the node from discovering
|
* An error in the default configuration preventing the node from discovering
|
||||||
peers on mainnet unless `--network=mainnet` was explicitly specified on the
|
peers on mainnet unless the `--network=mainnet` flag was passed. Please note
|
||||||
command-line.
|
that this not affect users starting their node with the `./run-mainnet-beacon-node`
|
||||||
|
command.
|
||||||
|
|
||||||
* An incorrect value for the fractional part of your ETH balance in the
|
* The fractional part of the ETH balance in the Nimbus status bar
|
||||||
Nimbus status bar.
|
(the value displayed should now be correct).
|
||||||
|
|
||||||
* An issue that may cause the Eth1 syncing process to get stuck before
|
* An issue that occasionally caused the Eth1 syncing process to get stuck
|
||||||
reaching the head of the chain.
|
before reaching the head of the chain.
|
||||||
|
|
||||||
* Unnecessary network traffic related to GossipSub `IHAVE`.
|
* Unnecessary network traffic related to GossipSub `IHAVE`.
|
||||||
|
|
||||||
* Incorrect gossipsub pruning which could result in messages getting lost.
|
* Incorrect gossipsub pruning which occasionally resulted in messages
|
||||||
|
getting lost.
|
||||||
|
|
||||||
* An issue where an excessively long graffiti string could cause a crash
|
* An issue where an excessively long graffiti string could cause a crash on
|
||||||
upon startup.
|
startup.
|
||||||
|
|
||||||
* A Linux-only issue causing the `deposits import` command to ignore its
|
* A Linux-only issue that resulted in the `deposits import` command ignoring
|
||||||
supplied arguments.
|
its supplied arguments.
|
||||||
|
|
||||||
|
|
||||||
2020-11-29 v1.0.0-stateofus
|
2020-11-29 v1.0.0-stateofus
|
||||||
|
|
|
@ -9,7 +9,7 @@ when not defined(nimscript):
|
||||||
const
|
const
|
||||||
versionMajor* = 1
|
versionMajor* = 1
|
||||||
versionMinor* = 0
|
versionMinor* = 0
|
||||||
versionBuild* = 1
|
versionBuild* = 2
|
||||||
|
|
||||||
versionBlob* = "stateofus" # Single word - ends up in the default graffitti
|
versionBlob* = "stateofus" # Single word - ends up in the default graffitti
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue