You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A fix that was introduces in the last minor version caused creation of invalid merkle blocks, which in turn cause SPV
56
+
nodes to ban 0.13.2 nodes. This can be observed on mobile clients which have troubles maintaining connections. This
57
+
release fixes this issue and should allow SPV/mobile clients to sync with upgraded nodes.
58
+
59
+
Hardened spork15 value to 1047200
60
+
---------------------------------
61
+
We've hardened the spork15 block height to 1047200, which makes sure that syncing from scratch will always work, no
62
+
matter if spork15 is received in-time or not.
87
63
88
64
Bug fixes/Other improvements
89
65
----------------------------
90
66
There are few bug fixes in this release:
91
-
- Fixed a crash on shutdown
92
-
- Fixed a misleading error message in the RPC "protx update_registrar"
93
-
- Slightly speed up initial sync by not running DIP3 logic in old blocks
94
-
- Add build number (CLIENT_VERSION_BUILD) to MacOS bundle information
67
+
- Fixed an issue with transaction sometimes not being fully zapped when `-zapwallettxes` is used
68
+
- Fixed an issue with the `protx revoke` RPC and REASON_CHANGE_OF_KEYS
95
69
96
-
0.13.2.0 Change log
70
+
0.13.3.0 Change log
97
71
===================
98
72
99
-
See detailed [set of changes](https://github.com/dashpay/dash/compare/v0.13.1.0...dashpay:v0.13.2.0).
73
+
See detailed [set of changes](https://github.com/dashpay/dash/compare/v0.13.2.0...dashpay:v0.13.3.0).
100
74
101
75
### Backports
102
76
103
-
-[`548a48918`](https://github.com/dashpay/dash/commit/548a48918) Move IS block filtering into ConnectBlock (#2766)
104
-
-[`6374dce99`](https://github.com/dashpay/dash/commit/6374dce99) Fix error message for invalid voting addresses (#2747)
105
-
-[`25222b378`](https://github.com/dashpay/dash/commit/25222b378) Make -masternodeblsprivkey mandatory when -masternode is given (#2745)
106
-
-[`0364e033a`](https://github.com/dashpay/dash/commit/0364e033a) Implement 2-stage commit for CEvoDB to avoid inconsistencies after crashes (#2744)
107
-
-[`a11e2f9eb`](https://github.com/dashpay/dash/commit/a11e2f9eb) Add collateraladdress into masternode/protx list rpc output (#2740)
108
-
-[`43612a272`](https://github.com/dashpay/dash/commit/43612a272) Only include selected TX types into CMerkleBlock (#2737)
109
-
-[`f868fbc78`](https://github.com/dashpay/dash/commit/f868fbc78) Stop g_connman first before deleting it (#2734)
110
-
-[`9e233f391`](https://github.com/dashpay/dash/commit/9e233f391) Fix incorrect usage of begin() when genesis block is requested in "protx diff" (#2699)
111
-
-[`e75f971b9`](https://github.com/dashpay/dash/commit/e75f971b9) Do not process blocks in CDeterministicMNManager before dip3 activation (#2698)
112
-
-[`1cc47ebcd`](https://github.com/dashpay/dash/commit/1cc47ebcd) Backport #14701: build: Add CLIENT_VERSION_BUILD to CFBundleGetInfoString (#2687)
77
+
-[`575cafc01`](https://github.com/dashpay/dash/commit/575cafc01) Do not skip pushing of vMatch and vHashes in CMerkleBlock (#2826)
78
+
-[`8c58799d8`](https://github.com/dashpay/dash/commit/8c58799d8) There can be no two votes which differ by the outcome only (#2819)
SPV nodes are generally not interested in non-financial special transactions in blocks, so we're omitting them now when
80
+
sending partial/filtered blocks to SPV clients. This currently only filters LLMQ quorum commitments, which also caused
81
+
some SPV implementations to ban nodes as they were not able to process these. DIP3 transactions (ProRegTx, ProUpRegTx, ...)
82
+
are not affected and are still included in partial/filtered blocks as these might also move funds.
83
+
84
+
RPC changes
85
+
-----------
86
+
`masternode list json` and `protx list` will now include the collateral address of masternodes.
87
+
88
+
Bug fixes/Other improvements
89
+
----------------------------
90
+
There are few bug fixes in this release:
91
+
- Fixed a crash on shutdown
92
+
- Fixed a misleading error message in the RPC "protx update_registrar"
93
+
- Slightly speed up initial sync by not running DIP3 logic in old blocks
94
+
- Add build number (CLIENT_VERSION_BUILD) to MacOS bundle information
95
+
96
+
0.13.2.0 Change log
97
+
===================
98
+
99
+
See detailed [set of changes](https://github.com/dashpay/dash/compare/v0.13.1.0...dashpay:v0.13.2.0).
100
+
101
+
### Backports
102
+
103
+
-[`548a48918`](https://github.com/dashpay/dash/commit/548a48918) Move IS block filtering into ConnectBlock (#2766)
104
+
-[`6374dce99`](https://github.com/dashpay/dash/commit/6374dce99) Fix error message for invalid voting addresses (#2747)
105
+
-[`25222b378`](https://github.com/dashpay/dash/commit/25222b378) Make -masternodeblsprivkey mandatory when -masternode is given (#2745)
106
+
-[`0364e033a`](https://github.com/dashpay/dash/commit/0364e033a) Implement 2-stage commit for CEvoDB to avoid inconsistencies after crashes (#2744)
107
+
-[`a11e2f9eb`](https://github.com/dashpay/dash/commit/a11e2f9eb) Add collateraladdress into masternode/protx list rpc output (#2740)
108
+
-[`43612a272`](https://github.com/dashpay/dash/commit/43612a272) Only include selected TX types into CMerkleBlock (#2737)
109
+
-[`f868fbc78`](https://github.com/dashpay/dash/commit/f868fbc78) Stop g_connman first before deleting it (#2734)
110
+
-[`9e233f391`](https://github.com/dashpay/dash/commit/9e233f391) Fix incorrect usage of begin() when genesis block is requested in "protx diff" (#2699)
111
+
-[`e75f971b9`](https://github.com/dashpay/dash/commit/e75f971b9) Do not process blocks in CDeterministicMNManager before dip3 activation (#2698)
112
+
-[`1cc47ebcd`](https://github.com/dashpay/dash/commit/1cc47ebcd) Backport #14701: build: Add CLIENT_VERSION_BUILD to CFBundleGetInfoString (#2687)
113
+
114
+
### Other
115
+
116
+
-[`2516a6e19`](https://github.com/dashpay/dash/commit/2516a6e19) Bump version to 0.13.2
117
+
-[`9dd16cdbe`](https://github.com/dashpay/dash/commit/9dd16cdbe) Bump minChainWork and AssumeValid to block #1033120 (#2750)
118
+
-[`18f087b27`](https://github.com/dashpay/dash/commit/18f087b27) Fix some typos in doc/guide-startmany.md (#2711)
119
+
-[`709ab6d3e`](https://github.com/dashpay/dash/commit/709ab6d3e) Minimal fix for litemode vs bad-protx-key-not-same issue (#2694)
120
+
121
+
Credits
122
+
=======
123
+
124
+
Thanks to everyone who directly contributed to this release:
125
+
126
+
- Alexander Block (codablock)
127
+
- Felix Yan (felixonmars)
128
+
- PastaPastaPasta
129
+
- UdjinM6
130
+
131
+
As well as everyone that submitted issues and reviewed pull requests.
132
+
133
+
Older releases
134
+
==============
135
+
136
+
Dash was previously known as Darkcoin.
137
+
138
+
Darkcoin tree 0.8.x was a fork of Litecoin tree 0.8, original name was XCoin
139
+
which was first released on Jan/18/2014.
140
+
141
+
Darkcoin tree 0.9.x was the open source implementation of masternodes based on
142
+
the 0.8.x tree and was first released on Mar/13/2014.
143
+
144
+
Darkcoin tree 0.10.x used to be the closed source implementation of Darksend
145
+
which was released open source on Sep/25/2014.
146
+
147
+
Dash Core tree 0.11.x was a fork of Bitcoin Core tree 0.9,
148
+
Darkcoin was rebranded to Dash.
149
+
150
+
Dash Core tree 0.12.0.x was a fork of Bitcoin Core tree 0.10.
151
+
152
+
Dash Core tree 0.12.1.x was a fork of Bitcoin Core tree 0.12.
153
+
154
+
These release are considered obsolete. Old release notes can be found here:
155
+
156
+
-[v0.13.1.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.1.0.md) released Feb/9/2019
157
+
-[v0.13.0.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.0.0.md) released Jan/14/2019
158
+
-[v0.12.3.4](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.3.4.md) released Dec/14/2018
159
+
-[v0.12.3.3](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.3.3.md) released Sep/19/2018
160
+
-[v0.12.3.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.3.2.md) released Jul/09/2018
161
+
-[v0.12.3.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.3.1.md) released Jul/03/2018
162
+
-[v0.12.2.3](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.2.3.md) released Jan/12/2018
163
+
-[v0.12.2.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.2.2.md) released Dec/17/2017
164
+
-[v0.12.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.2.md) released Nov/08/2017
165
+
-[v0.12.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.1.md) released Feb/06/2017
166
+
-[v0.12.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.0.md) released Aug/15/2015
167
+
-[v0.11.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.11.2.md) released Mar/04/2015
168
+
-[v0.11.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.11.1.md) released Feb/10/2015
169
+
-[v0.11.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.11.0.md) released Jan/15/2015
170
+
-[v0.10.x](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.10.0.md) released Sep/25/2014
171
+
-[v0.9.x](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.9.0.md) released Mar/13/2014
0 commit comments