Skip to content

Commit 4ef784f

Browse files
committed
v1.4.0
1 parent 533cd25 commit 4ef784f

File tree

2 files changed

+33
-3
lines changed

2 files changed

+33
-3
lines changed

CHANGELOG.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
2021-06-21 v1.4.0
2+
=================
3+
4+
This release is marked as low-urgency - please update at your convenience.
5+
6+
It contains **improvements to attestation effectiveness and CPU usage**.
7+
8+
It also contains **improvements to the RPC APIs**, as suggested by DappNode and RocketPool, and in preparation for our refactored validator client.
9+
### Outdated Nimbus instances
10+
11+
A reminder that if you're running Nimbus with a version prior to `1.0.10` (March 2021) you are exposed to a vulnerability in our core cryptography library (this library is used by all eth2 clients). See this [blst security advisory](https://github.com/supranational/blst/security/advisories/GHSA-x279-68rr-jp4p) for more information. If this concerns you, please update as soon as you can.
12+
13+
## Notable changes
14+
### We've added:
15+
16+
* Nightly builds for the very adventurous. (https://github.com/status-im/nimbus-eth2/pull/2640)
17+
* We expect users of nightly builds to be comfortable providing debugging logs.
18+
19+
### We've fixed:
20+
21+
* RPC API endpoints (https://github.com/status-im/nimbus-eth2/pull/2585, https://github.com/status-im/nimbus-eth2/pull/2586)
22+
* `/eth/v1/beacon/pool/attestations`
23+
* `/api/eth/v1/validator/aggregate_and_proofs`
24+
* Doppelganger detection: fixed false positive on fast restart (https://github.com/status-im/nimbus-eth2/pull/2656/)
25+
26+
27+
### We've improved
28+
29+
* Database read performance improvements during epoch transitions and startup (https://github.com/status-im/nimbus-eth2/pull/2639, https://github.com/status-im/nimbus-eth2/pull/2617)
30+
* Better usage of caches, specially when validating attestations (https://github.com/status-im/nimbus-eth2/pull/2631)
31+
32+
133
2021-05-17 v1.3.0
234
=================
335

@@ -705,4 +737,3 @@ the Eth2 mainnet launch.
705737

706738
* Support for storing the validator signing keys in a separate process, isolated
707739
from the network, with a minimal attack surface.
708-

beacon_chain/version.nim

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ when not defined(nimscript):
1515

1616
const
1717
versionMajor* = 1
18-
versionMinor* = 3
18+
versionMinor* = 4
1919
versionBuild* = 0
2020

2121
versionBlob* = "stateofus" # Single word - ends up in the default graffitti
@@ -43,4 +43,3 @@ func shortNimBanner*(): string =
4343
tmp[0] & " (" & gitHash & ")"
4444
else:
4545
tmp[0]
46-

0 commit comments

Comments
 (0)