1
- Dash Core version 0.12.2.2
1
+ Dash Core version 0.12.2.3
2
2
==========================
3
3
4
4
Release is now available from:
@@ -22,204 +22,88 @@ How to Upgrade
22
22
If you are running an older version, shut it down. Wait until it has completely
23
23
shut down (which might take a few minutes for older versions), then run the
24
24
installer (on Windows) or just copy over /Applications/Dash-Qt (on Mac) or
25
- dashd/dash-qt (on Linux). Because of the per-UTXO fix (see below) there is a
26
- one-time database upgrade operation, so expect a slightly longer startup time on
27
- the first run.
25
+ dashd/dash-qt (on Linux).
28
26
29
27
Downgrade warning
30
28
-----------------
31
29
32
30
### Downgrade to a version < 0.12.2.2
33
31
34
- Because release 0.12.2.2 includes the per-UTXO fix (see below) which changes the
35
- structure of the internal database, this release is not fully backwards
36
- compatible. You will have to reindex the database if you decide to use any
37
- previous version.
32
+ Because release 0.12.2.2 included the [ per-UTXO fix] ( release-notes/dash/release-notes-0.12.2.2.md#per-utxo-fix )
33
+ which changed the structure of the internal database, you will have to reindex
34
+ the database if you decide to use any pre-0.12.2.2 version.
38
35
39
- This does not affect wallet forward or backward compatibility.
36
+ Wallet forward or backward compatibility was not affected .
40
37
38
+ ### Downgrade to 0.12.2.2
39
+
40
+ Downgrading to 0.12.2.2 does not require any additional actions, should be
41
+ fully compatible.
41
42
42
43
Notable changes
43
44
===============
44
45
45
- Per-UTXO fix
46
- ------------
47
-
48
- This fixes a potential vulnerability, so called 'Corebleed', which was
49
- demonstrated this summer at the Вrеаkіng Віtсоіn Соnfеrеnсе іn Раrіs. The DoS
50
- can cause nodes to allocate excessive amounts of memory, which leads them to a
51
- halt. You can read more about the fix in the original Bitcoin Core pull request
52
- https://github.com/bitcoin/bitcoin/pull/10195
53
-
54
- To fix this issue in Dash Core however, we had to backport a lot of other
55
- improvements from Bitcoin Core, see full list of backports in the detailed
56
- change log below.
57
-
58
- Additional indexes fix
59
- ----------------------
60
-
61
- If you were using additional indexes like ` addressindex ` , ` spentindex ` or
62
- ` timestampindex ` it's possible that they are not accurate. Please consider
63
- reindexing the database by starting your node with ` -reindex ` command line
64
- option. This is a one-time operation, the issue should be fixed now.
65
-
66
- InstantSend fix
67
- ---------------
68
-
69
- InstantSend should work with multisig addresses now.
70
-
71
- PrivateSend fix
72
- ---------------
73
-
74
- Some internal data structures were not cleared properly, which could lead
75
- to a slightly higher memory consumption over a long period of time. This was
76
- a minor issue which was not affecting mixing speed or user privacy in any way.
46
+ InstantSend fixes
47
+ -----------------
77
48
78
- Removal of support for local masternodes
79
- ----------------------------------------
49
+ Coin selection could work slightly incorrect in some edge cases which could
50
+ lead to a creation of an InstantSend transaction which only the local wallet
51
+ would consider to be a good candidate for a lock. Such txes was not locked by
52
+ the network but they were creating a confusion on the user side giving an
53
+ impression of a slightly higher InstantSend failure rate.
80
54
81
- Keeping a wallet with 1000 DASH unlocked for 24/7 is definitely not a good idea
82
- anymore. Because of this fact, it's also no longer reasonable to update and test
83
- this feature, so it's completely removed now. If for some reason you were still
84
- using it, please follow one of the guides and setup a remote masternode instead .
55
+ Another issue fixed in this release is that masternodes could vote for a tx
56
+ that is not going to be accepted to the mempool sometimes. This could lead to
57
+ a situation when user funds would be locked even though InstantSend transaction
58
+ would not show up on the receiving side .
85
59
86
- Dropping old (pre-12.2) peers
60
+ Fix -liquidityprovider option
87
61
-----------------------------
88
62
89
- Connections from peers with protocol lower than 70208 are no longer accepted.
63
+ Turned out that liquidityprovider mixing mode practically stopped working after
64
+ recent improvements in the PrivateSend mixing algorithm due to a suboptimal
65
+ looping which occurs only in this mode (due to a huge number of rounds). To fix
66
+ the issue a small part of the mixing algorithm was reverted to a pre-0.12.2 one
67
+ for this mode only. Regular users were not affected by the issue in any way and
68
+ will continue to use the improved one just like before.
90
69
91
70
Other improvements and bug fixes
92
71
--------------------------------
93
72
94
- As a result of previous intensive refactoring and some additional fixes,
95
- it should be possible to compile Dash Core with ` --disable-wallet ` option now.
73
+ This release also fixes a few crashes and compatibility issues.
96
74
97
- This release also improves sync process and significantly lowers the time after
98
- which ` getblocktemplate ` rpc becomes available on node start.
99
75
100
- And as usual, various small bugs and typos were fixed and more refactoring was
101
- done too.
102
-
103
-
104
- 0.12.2.2 Change log
76
+ 0.12.2.3 Change log
105
77
===================
106
78
107
- See detailed [ change log] ( https://github.com/dashpay/dash/compare/v0.12.2.1 ...dashpay:v0.12.2.2 ) below.
79
+ See detailed [ change log] ( https://github.com/dashpay/dash/compare/v0.12.2.2 ...dashpay:v0.12.2.3 ) below.
108
80
109
81
### Backports:
110
- - [ ` 996f5103a ` ] ( https://github.com/dashpay/dash/commit/996f5103a ) Backport #7056 : Save last db read
111
- - [ ` 23fe35a18 ` ] ( https://github.com/dashpay/dash/commit/23fe35a18 ) Backport #7756 : Add cursor to iterate over utxo set, use this in ` gettxoutsetinfo `
112
- - [ ` 17f2ea5d7 ` ] ( https://github.com/dashpay/dash/commit/17f2ea5d7 ) Backport #7904 : txdb: Fix assert crash in new UTXO set cursor
113
- - [ ` 2e54bd2e8 ` ] ( https://github.com/dashpay/dash/commit/2e54bd2e8 ) Backport #7927 : Minor changes to dbwrapper to simplify support for other databases
114
- - [ ` abaf524f0 ` ] ( https://github.com/dashpay/dash/commit/abaf524f0 ) Backport #7815 : Break circular dependency main ↔ txdb
115
- - [ ` 02a6cef94 ` ] ( https://github.com/dashpay/dash/commit/02a6cef94 ) Move index structures into spentindex.h
116
- - [ ` d92b454a2 ` ] ( https://github.com/dashpay/dash/commit/d92b454a2 ) Add SipHash-2-4 primitives to hash
117
- - [ ` 44526af95 ` ] ( https://github.com/dashpay/dash/commit/44526af95 ) Use SipHash-2-4 for CCoinsCache index
118
- - [ ` 60e6a602e ` ] ( https://github.com/dashpay/dash/commit/60e6a602e ) Use C++11 thread-safe static initializers in coins.h/coins.cpp
119
- - [ ` 753cb1563 ` ] ( https://github.com/dashpay/dash/commit/753cb1563 ) Backport #7874 : Improve AlreadyHave
120
- - [ ` 952383e16 ` ] ( https://github.com/dashpay/dash/commit/952383e16 ) Backport #7933 : Fix OOM when deserializing UTXO entries with invalid length
121
- - [ ` e3b7ed449 ` ] ( https://github.com/dashpay/dash/commit/e3b7ed449 ) Backport #8273 : Bump ` -dbcache ` default to 300MiB
122
- - [ ` 94e01eb66 ` ] ( https://github.com/dashpay/dash/commit/94e01eb66 ) Backport #8467 : [ Trivial] Do not shadow members in dbwrapper
123
- - [ ` 105fd1815 ` ] ( https://github.com/dashpay/dash/commit/105fd1815 ) Use fixed preallocation instead of costly GetSerializeSize
124
- - [ ` 6fbe93aa7 ` ] ( https://github.com/dashpay/dash/commit/6fbe93aa7 ) Backport #9307 : Remove undefined FetchCoins method declaration
125
- - [ ` 6974f1723 ` ] ( https://github.com/dashpay/dash/commit/6974f1723 ) Backport #9346 : Batch construct batches
126
- - [ ` 4b4d22293 ` ] ( https://github.com/dashpay/dash/commit/4b4d22293 ) Backport #9308 : [ test] Add CCoinsViewCache Access/Modify/Write tests
127
- - [ ` a589c94a9 ` ] ( https://github.com/dashpay/dash/commit/a589c94a9 ) Backport #9107 : Safer modify new coins
128
- - [ ` 09b3e042f ` ] ( https://github.com/dashpay/dash/commit/09b3e042f ) Backport #9310 : Assert FRESH validity in CCoinsViewCache::BatchWrite
129
- - [ ` ceb64fcd4 ` ] ( https://github.com/dashpay/dash/commit/ceb64fcd4 ) Backport #8610 : Share unused mempool memory with coincache
130
- - [ ` 817ecc03d ` ] ( https://github.com/dashpay/dash/commit/817ecc03d ) Backport #9353 : Add data() method to CDataStream (and use it)
131
- - [ ` 249db2776 ` ] ( https://github.com/dashpay/dash/commit/249db2776 ) Backport #9999 : [ LevelDB] Plug leveldb logs to bitcoin logs
132
- - [ ` cfefd34f4 ` ] ( https://github.com/dashpay/dash/commit/cfefd34f4 ) Backport #10126 : Compensate for memory peak at flush time
133
- - [ ` ff9b2967a ` ] ( https://github.com/dashpay/dash/commit/ff9b2967a ) Backport #10133 : Clean up calculations of pcoinsTip memory usage
134
- - [ ` 567043d36 ` ] ( https://github.com/dashpay/dash/commit/567043d36 ) Make DisconnectBlock and ConnectBlock static in validation.cpp
135
- - [ ` 9a266e68d ` ] ( https://github.com/dashpay/dash/commit/9a266e68d ) Backport #10297 : Simplify DisconnectBlock arguments/return value
136
- - [ ` fc5ced317 ` ] ( https://github.com/dashpay/dash/commit/fc5ced317 ) Backport #10445 : Add test for empty chain and reorg consistency for gettxoutsetinfo.
137
- - [ ` 6f1997182 ` ] ( https://github.com/dashpay/dash/commit/6f1997182 ) Add COMPACTSIZE wrapper similar to VARINT for serialization
138
- - [ ` b06a6a2e7 ` ] ( https://github.com/dashpay/dash/commit/b06a6a2e7 ) Fix use of missing self.log in blockchain.py
139
- - [ ` 8ed672219 ` ] ( https://github.com/dashpay/dash/commit/8ed672219 ) Backport #10250 : Fix some empty vector references
140
- - [ ` afa96b7c1 ` ] ( https://github.com/dashpay/dash/commit/afa96b7c1 ) Backport #10249 : Switch CCoinsMap from boost to std unordered_map
141
- - [ ` c81394b97 ` ] ( https://github.com/dashpay/dash/commit/c81394b97 ) Backport #10195 : Switch chainstate db and cache to per-txout model
142
- - [ ` d4562b5e5 ` ] ( https://github.com/dashpay/dash/commit/d4562b5e5 ) Fix CCoinsViewCache::GetPriority to use new per-utxo
143
- - [ ` 92bb65894 ` ] ( https://github.com/dashpay/dash/commit/92bb65894 ) Fix address index to use new per-utxo DB
144
- - [ ` 9ad56fe18 ` ] ( https://github.com/dashpay/dash/commit/9ad56fe18 ) Dash related fixes for per-utxo DB
145
- - [ ` 4f807422f ` ] ( https://github.com/dashpay/dash/commit/4f807422f ) Backport #10550 : Don't return stale data from CCoinsViewCache::Cursor()
146
- - [ ` 151c552c7 ` ] ( https://github.com/dashpay/dash/commit/151c552c7 ) Backport #10537 : Few Minor per-utxo assert-semantics re-adds and tweak
147
- - [ ` 06aa02ff6 ` ] ( https://github.com/dashpay/dash/commit/06aa02ff6 ) Backport #10559 : Change semantics of HaveCoinInCache to match HaveCoin
148
- - [ ` 549839a50 ` ] ( https://github.com/dashpay/dash/commit/549839a50 ) Backport #10581 : Simplify return values of GetCoin/HaveCoin(InCache)
149
- - [ ` 5b232161a ` ] ( https://github.com/dashpay/dash/commit/5b232161a ) Backport #10558 : Address nits from per-utxo change
150
- - [ ` 1a9add78c ` ] ( https://github.com/dashpay/dash/commit/1a9add78c ) Backport #10660 : Allow to cancel the txdb upgrade via splashscreen keypress 'q'
151
- - [ ` 4102211a3 ` ] ( https://github.com/dashpay/dash/commit/4102211a3 ) Backport #10526 : Force on-the-fly compaction during pertxout upgrade
152
- - [ ` 8780c762e ` ] ( https://github.com/dashpay/dash/commit/8780c762e ) Backport #10985 : Add undocumented -forcecompactdb to force LevelDB compactions
153
- - [ ` 4cd19913d ` ] ( https://github.com/dashpay/dash/commit/4cd19913d ) Backport #10998 : Fix upgrade cancel warnings
154
- - [ ` 371feda4c ` ] ( https://github.com/dashpay/dash/commit/371feda4c ) Backport #11529 : Avoid slow transaction search with txindex enabled
155
- - [ ` cdb2b1944 ` ] ( https://github.com/dashpay/dash/commit/cdb2b1944 ) build: quiet annoying warnings without adding new ones
156
- - [ ` fee05dab9 ` ] ( https://github.com/dashpay/dash/commit/fee05dab9 ) build: silence gcc7's implicit fallthrough warning
157
-
158
- ### Masternodes:
159
- - [ ` 312663b4b ` ] ( https://github.com/dashpay/dash/commit/312663b4b ) Remove support for local masternodes (#1706 )
82
+ - [ ` 068b20bc7 ` ] ( https://github.com/dashpay/dash/commit/068b20bc7 ) Merge #8256 : BUG: bitcoin-qt crash
83
+ - [ ` f71ab1daf ` ] ( https://github.com/dashpay/dash/commit/f71ab1daf ) Merge #11847 : Fixes compatibility with boost 1.66 (#1836 )
160
84
161
85
### PrivateSend:
162
- - [ ` 7e96af4e6 ` ] ( https://github.com/dashpay/dash/commit/7e96af4e6 ) Refactor PrivateSend (#1735 )
163
- - [ ` f4502099a ` ] ( https://github.com/dashpay/dash/commit/f4502099a ) make CheckDSTXes() private, execute it on both client and server (#1736 )
86
+ - [ ` fa5fc418a ` ] ( https://github.com/dashpay/dash/commit/fa5fc418a ) Fix -liquidityprovider option (#1829 )
87
+ - [ ` d261575b4 ` ] ( https://github.com/dashpay/dash/commit/d261575b4 ) Skip existing masternode conections on mixing (#1833 )
88
+ - [ ` 21a10057d ` ] ( https://github.com/dashpay/dash/commit/21a10057d ) Protect CKeyHolderStorage via mutex (#1834 )
89
+ - [ ` 476888683 ` ] ( https://github.com/dashpay/dash/commit/476888683 ) Avoid reference leakage in CKeyHolderStorage::AddKey (#1840 )
164
90
165
91
### InstantSend:
166
- - [ ` 4802a1fb7 ` ] ( https://github.com/dashpay/dash/commit/4802a1fb7 ) Allow IS for all txes, not only for txes with p2pkh and data outputs (#1760 )
167
- - [ ` f37a64208 ` ] ( https://github.com/dashpay/dash/commit/f37a64208 ) InstantSend txes should never qualify to be a 0-fee txes (#1777 )
168
-
169
- ### DIP0001:
170
- - [ ` 3028af19f ` ] ( https://github.com/dashpay/dash/commit/3028af19f ) post-DIP0001 cleanup (#1763 )
171
- - [ ` 51b2c7501 ` ] ( https://github.com/dashpay/dash/commit/51b2c7501 ) Fix WarningBitsConditionChecker (#1765 )
172
-
173
- ### Network/Sync:
174
- - [ ` 5d58dd90c ` ] ( https://github.com/dashpay/dash/commit/5d58dd90c ) Make sure to clear setAskFor in Dash submodules (#1730 )
175
- - [ ` 328009749 ` ] ( https://github.com/dashpay/dash/commit/328009749 ) fine-tune sync conditions in getblocktemplate (#1739 )
176
- - [ ` 362becbcc ` ] ( https://github.com/dashpay/dash/commit/362becbcc ) Bump MIN_PEER_PROTO_VERSION to 70208 (#1772 )
177
- - [ ` 930afd7df ` ] ( https://github.com/dashpay/dash/commit/930afd7df ) Fix mnp and mnv invs (#1775 )
178
- - [ ` 63e306148 ` ] ( https://github.com/dashpay/dash/commit/63e306148 ) Improve sync (#1779 )
179
- - [ ` a79c97248 ` ] ( https://github.com/dashpay/dash/commit/a79c97248 ) Fix ProcessVerifyBroadcast (#1780 )
180
-
181
- ### Build:
182
- - [ ` c166ed39b ` ] ( https://github.com/dashpay/dash/commit/c166ed39b ) Allow compilation with ` --disable-wallet ` (#1733 )
183
- - [ ` 31bc9d4ee ` ] ( https://github.com/dashpay/dash/commit/31bc9d4ee ) Show test progress for tests running in wine to avoid Travis timeout (#1740 )
184
- - [ ` 32f21698e ` ] ( https://github.com/dashpay/dash/commit/32f21698e ) Adjust tests to avoid Travis timeouts (#1745 )
185
- - [ ` 837c4fc5d ` ] ( https://github.com/dashpay/dash/commit/837c4fc5d ) Force rcc to use resource format version 1. (#1784 )
186
-
187
- ### GUI:
188
- - [ ` 70cb2a4af ` ] ( https://github.com/dashpay/dash/commit/70cb2a4af ) Fix traditional UI theme (#1741 )
189
- - [ ` e975f891c ` ] ( https://github.com/dashpay/dash/commit/e975f891c ) Fix ru typo (#1742 )
190
-
191
- ### Docs:
192
- - [ ` bc8342558 ` ] ( https://github.com/dashpay/dash/commit/bc8342558 ) Two small fixes in docs (#1746 )
193
- - [ ` 9e7cc56cb ` ] ( https://github.com/dashpay/dash/commit/9e7cc56cb ) Fix typo in release-notes.md (#1759 )
194
- - [ ` 3f3705c47 ` ] ( https://github.com/dashpay/dash/commit/3f3705c47 ) [ Trivial] Typo/doc updates and RPC help formatting (#1758 )
195
- - [ ` e96da9f19 ` ] ( https://github.com/dashpay/dash/commit/e96da9f19 ) move 0.12.2 release notes
196
- - [ ` 6915ee45e ` ] ( https://github.com/dashpay/dash/commit/6915ee45e ) Bump version in README.md to 0.12.2 (#1774 )
197
- - [ ` 0291604ad ` ] ( https://github.com/dashpay/dash/commit/0291604ad ) Clarify usage of pointers and references in code (#1778 )
92
+ - [ ` d6e2aa843 ` ] ( https://github.com/dashpay/dash/commit/d6e2aa843 ) Swap iterations and fUseInstantSend parameters in ApproximateBestSubset (#1819 )
93
+ - [ ` c9bafe154 ` ] ( https://github.com/dashpay/dash/commit/c9bafe154 ) Vote on IS only if it was accepted to mempool (#1826 )
198
94
199
95
### Other:
200
- - [ ` ccbd5273e ` ] ( https://github.com/dashpay/dash/commit/ccbd5273e ) bump to 0.12.3.0 (#1726 )
201
- - [ ` 865b61b50 ` ] ( https://github.com/dashpay/dash/commit/865b61b50 ) Unify GetNextWorkRequired (#1737 )
202
- - [ ` d1aeac1b2 ` ] ( https://github.com/dashpay/dash/commit/d1aeac1b2 ) Spelling mistake in validation.cpp (#1752 )
203
- - [ ` 442325b07 ` ] ( https://github.com/dashpay/dash/commit/442325b07 ) add ` maxgovobjdatasize ` field to the output of ` getgovernanceinfo ` (#1757 )
204
- - [ ` c5ec2f82a ` ] ( https://github.com/dashpay/dash/commit/c5ec2f82a ) Drop ` IsNormalPaymentScript ` , use ` IsPayToPublicKeyHash ` (#1761 )
205
- - [ ` f9f28e7c7 ` ] ( https://github.com/dashpay/dash/commit/f9f28e7c7 ) De-bump to 0.12.2.2 (#1768 )
206
- - [ ` 54186a159 ` ] ( https://github.com/dashpay/dash/commit/54186a159 ) Make sure additional indexes are recalculated correctly in VerifyDB (#1773 )
207
- - [ ` 86e6f0dd2 ` ] ( https://github.com/dashpay/dash/commit/86e6f0dd2 ) Fix CMasternodeMan::ProcessVerify* logs (#1782 )
208
-
96
+ - [ ` ada41c3af ` ] ( https://github.com/dashpay/dash/commit/ada41c3af ) Fix crash on exit when -createwalletbackups=0 (#1810 )
97
+ - [ ` 63e0e30e3 ` ] ( https://github.com/dashpay/dash/commit/63e0e30e3 ) bump version to 0.12.2.3 (#1827 )
209
98
210
99
Credits
211
100
=======
212
101
213
102
Thanks to everyone who directly contributed to this release:
214
103
215
104
- Alexander Block
216
- - shade
217
- - sidhujag
218
- - thephez
219
- - turbanoff
220
- - Ilya Savinov
105
+ - lodgepole
221
106
- UdjinM6
222
- - Will Wray
223
107
224
108
As well as Bitcoin Core Developers and everyone that submitted issues,
225
109
reviewed pull requests or helped translating on
@@ -249,10 +133,11 @@ Dash Core tree 0.12.1.x was a fork of Bitcoin Core tree 0.12.
249
133
250
134
These release are considered obsolete. Old release notes can be found here:
251
135
136
+ - [ v0.12.2.2] ( release-notes/dash/release-notes-0.12.2.2.md ) released Dec/17/2017
252
137
- [ v0.12.2] ( release-notes/dash/release-notes-0.12.2.md ) released Nov/08/2017
253
- - [ v0.12.1] ( release-notes/dash/release-notes-0.12.1.md ) released ???/??/2016
254
- - [ v0.12.0] ( release-notes/dash/release-notes-0.12.0.md ) released ???/?? /2015
255
- - [ v0.11.2] ( release-notes/dash/release-notes-0.11.2.md ) released Mar/25 /2015
138
+ - [ v0.12.1] ( release-notes/dash/release-notes-0.12.1.md ) released Feb/06/2017
139
+ - [ v0.12.0] ( release-notes/dash/release-notes-0.12.0.md ) released Jun/15 /2015
140
+ - [ v0.11.2] ( release-notes/dash/release-notes-0.11.2.md ) released Mar/04 /2015
256
141
- [ v0.11.1] ( release-notes/dash/release-notes-0.11.1.md ) released Feb/10/2015
257
142
- [ v0.11.0] ( release-notes/dash/release-notes-0.11.0.md ) released Jan/15/2015
258
143
- [ v0.10.x] ( release-notes/dash/release-notes-0.10.0.md ) released Sep/25/2014
0 commit comments