Skip to content

Commit 28a219f

Browse files
authored
[v0.14.0.x] Update release notes for 0.14.0.2 (#3012)
* Update release notes for 0.14.0.2 * Review suggestions Co-Authored-By: PastaPastaPasta <pasta@dashboost.org> * Add commits to release-notes.md
1 parent f7c9718 commit 28a219f

File tree

1 file changed

+35
-25
lines changed

1 file changed

+35
-25
lines changed

doc/release-notes.md

Lines changed: 35 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -29,51 +29,60 @@ version 0.13 should not require any additional actions.
2929
Downgrade warning
3030
-----------------
3131

32-
### Downgrade to a version < 0.13.0.0
32+
### Downgrade to a version < 0.14.0.0
3333

34-
Downgrading to a version smaller than 0.13 is not supported anymore as DIP2/DIP3 has
34+
Downgrading to a version smaller than 0.14 is not supported anymore as DIP8 has
3535
activated on mainnet and testnet.
3636

37-
### Downgrade to versions 0.13.0.0 - 0.13.3.0
37+
### Downgrade to versions 0.14.0.0 - 0.14.0.1
3838

39-
Downgrading to 0.13 releases is fully supported until DIP0008 activation but is not
40-
recommended unless you have some serious issues with version 0.14.
39+
Downgrading to older 0.14 releases is fully supported but is not
40+
recommended unless you have some serious issues with version 0.14.0.2.
4141

4242
Notable changes
4343
===============
4444

45-
Fixed governance votes pruning for invalid masternodes
46-
------------------------------------------------------
47-
A community member reported a possible attack that involves DoSing masternodes to force the network
48-
to prune all governance votes from this masternodes. This could be used to manipulate vote outcomes.
45+
Performance improvements
46+
------------------------
47+
Slow startup times were observed in older versions. This was due to sub-optimal handling of old
48+
deterministic masternode lists which caused the loading of too many lists into memory. This should be
49+
fixed now.
4950

50-
This vulnerability is currently not possible to execute as LLMQ DKGs and PoSe have not activated yet on
51-
mainnet. This version includes a fix that requires to have at least 51% masternodes to upgrade to
52-
0.14.0.1, after which superblock trigger voting will automatically fix the discrepancies between
53-
old and new nodes. This also means that we will postpone activation of LLMQ DKGs and thus PoSe until
54-
at least 51% of masternodes have upgraded to 0.14.0.1.
51+
Fixed excessive memory use
52+
--------------------------
53+
Multiple issues were found which caused excessive use of memory in some situations, especially when
54+
a full reindex was performed, causing the node to crash even when enough RAM was available. This should
55+
be fixed now.
5556

56-
Fixed a rare memory/db leak in LLMQ based InstantSend
57-
-----------------------------------------------------
58-
We fixed a rare memory/db leak in LLMQ based InstantSend leak which would only occur when reorganizations
59-
would happen.
57+
Fixed out-of-sync masternode list UI
58+
------------------------------------
59+
The masternode tab, which shows the masternode list, was not always up-to-date as it missed some internal
60+
updates. This should be fixed now.
6061

61-
0.14.0.1 Change log
62+
0.14.0.2 Change log
6263
===================
6364

64-
See detailed [set of changes](https://github.com/dashpay/dash/compare/v0.14.0.0...dashpay:v0.14.0.1).
65-
66-
- [`a2baa93ec`](https://github.com/dashpay/dash/commit/a2baa93ec) Only require valid collaterals for votes and triggers (#2947) (#2957)
67-
- [`b293e6dde`](https://github.com/dashpay/dash/commit/b293e6dde) Fix off-by-one error in InstantSend mining info removal when disconnecting blocks (#2951)
68-
- [`276b6e3a8`](https://github.com/dashpay/dash/commit/276b6e3a8) bump version to 0.14.0.1 and prepare release notes (#2952)
65+
See detailed [set of changes](https://github.com/dashpay/dash/compare/v0.14.0.1...dashpay:v0.14.0.2).
66+
67+
- [`d2ff63e8d`](https://github.com/dashpay/dash/commit/d2ff63e8d) Use std::unique_ptr for mnList in CSimplifiedMNList (#3014)
68+
- [`321bbf5af`](https://github.com/dashpay/dash/commit/321bbf5af) Fix excessive memory use when flushing chainstate and EvoDB (#3008)
69+
- [`0410259dd`](https://github.com/dashpay/dash/commit/0410259dd) Fix 2 common Travis failures which happen when Travis has network issues (#3003)
70+
- [`8d763c144`](https://github.com/dashpay/dash/commit/8d763c144) Only load signingActiveQuorumCount + 1 quorums into cache (#3002)
71+
- [`2dc1b06ec`](https://github.com/dashpay/dash/commit/2dc1b06ec) Remove skipped denom from the list on tx commit (#2997)
72+
- [`dff2c851d`](https://github.com/dashpay/dash/commit/dff2c851d) Update manpages for 0.14.0.2 (#2999)
73+
- [`46c4f5844`](https://github.com/dashpay/dash/commit/46c4f5844) Use Travis stages instead of custom timeouts (#2948)
74+
- [`49c37b82a`](https://github.com/dashpay/dash/commit/49c37b82a) Back off for 1m when connecting to quorum masternodes (#2975)
75+
- [`c1f756fd9`](https://github.com/dashpay/dash/commit/c1f756fd9) Multiple speed optimizations for deterministic MN list handling (#2972)
76+
- [`11699f540`](https://github.com/dashpay/dash/commit/11699f540) Process/keep messages/connections from PoSe-banned MNs (#2967)
77+
- [`c5415e746`](https://github.com/dashpay/dash/commit/c5415e746) Fix UI masternode list (#2966)
78+
- [`fb6f0e04d`](https://github.com/dashpay/dash/commit/fb6f0e04d) Bump version to 0.14.0.2 and copy release notes (#2991)
6979

7080
Credits
7181
=======
7282

7383
Thanks to everyone who directly contributed to this release:
7484

7585
- Alexander Block (codablock)
76-
- demodun6
7786
- UdjinM6
7887

7988
As well as everyone that submitted issues and reviewed pull requests.
@@ -101,6 +110,7 @@ Dash Core tree 0.12.1.x was a fork of Bitcoin Core tree 0.12.
101110

102111
These release are considered obsolete. Old release notes can be found here:
103112

113+
- [v0.14.0.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.14.0.1.md) released May/31/2019
104114
- [v0.14.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.14.0.md) released May/22/2019
105115
- [v0.13.3](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.3.md) released Apr/04/2019
106116
- [v0.13.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.2.md) released Mar/15/2019

0 commit comments

Comments
 (0)