mirror of
https://github.com/dogecoin/dogecoin.git
synced 2026-01-31 10:30:52 +00:00
Complete first version of 1.14.4 release notes
This commit is contained in:
parent
59da28cb06
commit
a312c4ad3e
@ -1,6 +1,6 @@
|
||||
Dogecoin Core version 1.14.3 is now available from:
|
||||
Dogecoin Core version 1.14.4 is now available from:
|
||||
|
||||
<https://github.com/dogecoin/dogecoin/releases/tag/v1.14.3/>
|
||||
<https://github.com/dogecoin/dogecoin/releases/tag/v1.14.4/>
|
||||
|
||||
This is a new minor version release, including various bugfixes and performance improvements. It is a recommended
|
||||
update for all users.
|
||||
@ -19,6 +19,7 @@ The developers also maintain personal Twitter accounts:
|
||||
|
||||
* @langer\_hans
|
||||
* @JRossNicoll
|
||||
* @michilumin
|
||||
|
||||
Compatibility
|
||||
==============
|
||||
@ -36,81 +37,97 @@ frequently tested on them.
|
||||
Notable changes
|
||||
===============
|
||||
|
||||
Reduce CPU usage during sync
|
||||
Enable Reduced Fees
|
||||
-------------------
|
||||
|
||||
1.14.4 is more permissive about fees on transactions, as part of a two-stage update to the recommended fees.
|
||||
The main highlights for this are:
|
||||
|
||||
* Transaction sizes are no longer rounded up to the nearest kilobyte when deciding if a transaction can be accepted from another node.
|
||||
* The default fee used when deciding if a transaction should be accepted from a node is 0.001 DOGE (reduced from 1 DOGE).
|
||||
* Dust limit is now configurable via the `-dustlimit` option.
|
||||
|
||||
These will not be immediately user visible, as the recommended fees do not change, in order to retain backwards compatibilty while the network upgrades. We will release 1.14.5 to reduce the recommended fees, shortly, or you can run Dogecoin Core with `-paytxfee=0.001` to reduce your default fees manually.
|
||||
|
||||
Synchronization Improvements
|
||||
----------------------------
|
||||
|
||||
When loading block headers to send to a peer, the block was revalidated by calculating its proof of work. This is expensive and led to a bottleneck in the sync process where nodes were CPU rather than IO bound in sending blocks to ther peers.
|
||||
* Disconnect peers which do not respond to requests for headers in a timely manner, to optimise synchronization rate.
|
||||
* Dogecoin Core will no longer request further headers from a peer it is already downloading headers from. This stops Dogecoin Core from requesting the same headers more than once, and reduces network bandwidth wasted.
|
||||
|
||||
All block headers are already checked when they are accepted, and they will be checked again on the receiving node.
|
||||
GUI Improvements
|
||||
----------------
|
||||
|
||||
Reduce default mempool expiry time
|
||||
----------------------------------
|
||||
* Add menu option to import a private key, "Import Private Key" from the "File" menu.
|
||||
* Improve displayed result when commands in the debug console return null.
|
||||
* Fix text overflow in the paper wallet generator.
|
||||
* Add column to peers table showing bytes sent/received, accessible via "Debug Window" from the "Help" menu.
|
||||
* Add GUI for adding peers manually, accessible from the peers table of the Debug Window.
|
||||
|
||||
Reduces DEFAULT_MEMPOOL_EXPIRY from 336 hours to 24 hours. Motivation is that while blocks are empty, un-relayable tx are stuck in mempools for a long time and effectively locking utxo for 2 weeks until they can be respent, if no RBF opt-in was performed (most wallet implementations do not do RBF opt-in.)
|
||||
RPC Improvements
|
||||
----------------
|
||||
|
||||
As the expectation is that block space will not be fully utilized for the foreseeable future, and therefore, as long as this is the case, no valid transaction should ever live in the mempool for more than a couple of minutes.
|
||||
`getpeerinfo` now includes `feefilter` value for each peer, to be able to diagnose transaction relay issues.
|
||||
|
||||
This default setting can be overridden with the -mempoolexpiry parameter by individual node operators to a value (expressed in hours) that makes the most sense for the use cases the node serves.
|
||||
|
||||
Increase block download timeouts
|
||||
--------------------------------
|
||||
|
||||
Block download timeouts are expressed as a multiple of block interval, and as such Dogecoin block download times were relatively aggressive, leading to a high number of timeouts. Increased the timeouts to be more flexible to real world conditions.
|
||||
|
||||
Add size_on_disk, prune_target_size, automatic_pruning to getblockchaininfo
|
||||
---------------------------------------------------------------------------
|
||||
|
||||
* Fix pruneheight help text.
|
||||
* Move fPruneMode block to match output ordering with help text.
|
||||
* Add functional tests for new fields in getblockchaininfo.
|
||||
|
||||
Add query options to listunspent RPC call
|
||||
-----------------------------------------
|
||||
|
||||
* Return unspents greater or equal than a specific amount in DOGE: minimumAmount (default = 0).
|
||||
* Return unspents lower or equal than a specific amount in DOGE: maximumAmount (default=unlimited).
|
||||
* Return unspents with a total number lower or equal than a specific number: maximumCount (default=0=unlimited).
|
||||
* Return unspents which total is greater or equal than a specific amount in DOGE: minimumSumAmount (default=unlimited).
|
||||
|
||||
Minor changes
|
||||
Minor Changes
|
||||
=============
|
||||
|
||||
* Set BIP65 softfork heights in chainparams.cpp.
|
||||
* Update package links for OSX cross compilation.
|
||||
* Change IPC prefix from `bitcoin:` to `dogecoin:`.
|
||||
* Locale independent sorting.
|
||||
* Corrections to Italian translation.
|
||||
* Refresh main and test network checkpoints and seeds.
|
||||
* Do not print an error on connection timeouts through proxy.
|
||||
* Numerous fixes to automated tests.
|
||||
* Numerous fixes to documentation.
|
||||
* Corrections to French Canadian, Chinese, German, Indonesian, Korean, Polish and Portuguese translations.
|
||||
* Correct a bug that resulted in negative progress per hour being displayed during sync.
|
||||
* Regtest network can now generate AuxPoW blocks.
|
||||
* Add Snap packaging support.
|
||||
* Modify Scrypt code so it's compatible with Alpine Linux's musl library.
|
||||
* Update libevent to 2.1.11
|
||||
* Update ZMQ to 4.3.4
|
||||
* Correctly set fixed seeds on startup.
|
||||
* Add build instructions for NixOS
|
||||
* Fix a rare crash bug on shutdown due to ActivateBestChain() being called when there is no best chain.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Thanks to everyone who directly contributed to this release:
|
||||
|
||||
- Anthony Chen
|
||||
- Bertrand Jacquin
|
||||
- BT
|
||||
- Daniel Edgecumbe
|
||||
- Demon
|
||||
- Dennis Field
|
||||
- fluteds
|
||||
- Ikko Ashimine
|
||||
- John-Gee
|
||||
- Jonathan
|
||||
- Kent
|
||||
- leuqarte
|
||||
- Luis-Johannes Schubert
|
||||
- Marco
|
||||
- marcuswin
|
||||
- Max Keller
|
||||
- Patrick Lodder
|
||||
- Pedro Branco
|
||||
- Primo
|
||||
- Reiner Herrmann
|
||||
- Ross Nicoll
|
||||
- Shibe
|
||||
- tnaka
|
||||
- Vertian
|
||||
* Ahmed Castro
|
||||
* Alan Rudolf
|
||||
* cg
|
||||
* chey
|
||||
* chromatic
|
||||
* Cory Fields
|
||||
* creekhu
|
||||
* Dakoda Greaves
|
||||
* David Millard
|
||||
* Demon
|
||||
* Dídac Coll Pujals
|
||||
* fanquake
|
||||
* Florian Schade
|
||||
* fmhc
|
||||
* Gabriel Gosselin Roberge
|
||||
* Gabriel Pérez
|
||||
* geekwisdom
|
||||
* Ikko Ashimine
|
||||
* Jeroen Ooms
|
||||
* Jerry Park
|
||||
* katzenmalen
|
||||
* Khakim Hudaya
|
||||
* kregerl
|
||||
* lee5378
|
||||
* lynklody
|
||||
* Malta Micael
|
||||
* Matheus Tavares
|
||||
* Matt Domko
|
||||
* Maximilian Keller
|
||||
* MD Islam
|
||||
* Mich De L'Orme
|
||||
* Michi Lumin
|
||||
* motz0815
|
||||
* nformant
|
||||
* Patrick Lodder
|
||||
* Piotr Zajączkowski
|
||||
* p-j01
|
||||
* rht
|
||||
* Ross Nicoll
|
||||
* sabotagebeats
|
||||
* Shafil Alam
|
||||
* stefanwouldgo
|
||||
* Will
|
||||
* xt3r
|
||||
* Zach Latta
|
||||
|
||||
116
doc/release-notes/release-notes-1.14.3.md
Normal file
116
doc/release-notes/release-notes-1.14.3.md
Normal file
@ -0,0 +1,116 @@
|
||||
Dogecoin Core version 1.14.3 is now available from:
|
||||
|
||||
<https://github.com/dogecoin/dogecoin/releases/tag/v1.14.3/>
|
||||
|
||||
This is a new minor version release, including various bugfixes and performance improvements. It is a recommended
|
||||
update for all users.
|
||||
|
||||
Please report bugs using the issue tracker at github:
|
||||
|
||||
<https://github.com/dogecoin/dogecoin/issues>
|
||||
|
||||
To receive security and update notifications, please watch reddit or Twitter:
|
||||
|
||||
* https://www.reddit.com/r/dogecoin/
|
||||
* @Dogecoin on Twitter for high priority announcements
|
||||
* @dogecoin\_devs on Twitter for updates on development work
|
||||
|
||||
The developers also maintain personal Twitter accounts:
|
||||
|
||||
* @langer\_hans
|
||||
* @JRossNicoll
|
||||
|
||||
Compatibility
|
||||
==============
|
||||
|
||||
Dogecoin Core is extensively tested on Ubuntu Server LTS, Mac OS X and Windows 10.
|
||||
|
||||
Microsoft ended support for Windows XP on [April 8th, 2014](https://www.microsoft.com/en-us/WindowsForBusiness/end-of-xp-support),
|
||||
No attempt is made to prevent installing or running the software on Windows XP, you
|
||||
can still do so at your own risk but be aware that there are known instabilities and issues.
|
||||
Please do not report issues about Windows XP to the issue tracker.
|
||||
|
||||
Dogecoin Core should also work on most other Unix-like systems but is not
|
||||
frequently tested on them.
|
||||
|
||||
Notable changes
|
||||
===============
|
||||
|
||||
Reduce CPU usage during sync
|
||||
----------------------------
|
||||
|
||||
When loading block headers to send to a peer, the block was revalidated by calculating its proof of work. This is expensive and led to a bottleneck in the sync process where nodes were CPU rather than IO bound in sending blocks to ther peers.
|
||||
|
||||
All block headers are already checked when they are accepted, and they will be checked again on the receiving node.
|
||||
|
||||
Reduce default mempool expiry time
|
||||
----------------------------------
|
||||
|
||||
Reduces DEFAULT_MEMPOOL_EXPIRY from 336 hours to 24 hours. Motivation is that while blocks are empty, un-relayable tx are stuck in mempools for a long time and effectively locking utxo for 2 weeks until they can be respent, if no RBF opt-in was performed (most wallet implementations do not do RBF opt-in.)
|
||||
|
||||
As the expectation is that block space will not be fully utilized for the foreseeable future, and therefore, as long as this is the case, no valid transaction should ever live in the mempool for more than a couple of minutes.
|
||||
|
||||
This default setting can be overridden with the -mempoolexpiry parameter by individual node operators to a value (expressed in hours) that makes the most sense for the use cases the node serves.
|
||||
|
||||
Increase block download timeouts
|
||||
--------------------------------
|
||||
|
||||
Block download timeouts are expressed as a multiple of block interval, and as such Dogecoin block download times were relatively aggressive, leading to a high number of timeouts. Increased the timeouts to be more flexible to real world conditions.
|
||||
|
||||
Add size_on_disk, prune_target_size, automatic_pruning to getblockchaininfo
|
||||
---------------------------------------------------------------------------
|
||||
|
||||
* Fix pruneheight help text.
|
||||
* Move fPruneMode block to match output ordering with help text.
|
||||
* Add functional tests for new fields in getblockchaininfo.
|
||||
|
||||
Add query options to listunspent RPC call
|
||||
-----------------------------------------
|
||||
|
||||
* Return unspents greater or equal than a specific amount in DOGE: minimumAmount (default = 0).
|
||||
* Return unspents lower or equal than a specific amount in DOGE: maximumAmount (default=unlimited).
|
||||
* Return unspents with a total number lower or equal than a specific number: maximumCount (default=0=unlimited).
|
||||
* Return unspents which total is greater or equal than a specific amount in DOGE: minimumSumAmount (default=unlimited).
|
||||
|
||||
Minor changes
|
||||
=============
|
||||
|
||||
* Set BIP65 softfork heights in chainparams.cpp.
|
||||
* Update package links for OSX cross compilation.
|
||||
* Change IPC prefix from `bitcoin:` to `dogecoin:`.
|
||||
* Locale independent sorting.
|
||||
* Corrections to Italian translation.
|
||||
* Refresh main and test network checkpoints and seeds.
|
||||
* Do not print an error on connection timeouts through proxy.
|
||||
* Numerous fixes to automated tests.
|
||||
* Numerous fixes to documentation.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Thanks to everyone who directly contributed to this release:
|
||||
|
||||
- Anthony Chen
|
||||
- Bertrand Jacquin
|
||||
- BT
|
||||
- Daniel Edgecumbe
|
||||
- Demon
|
||||
- Dennis Field
|
||||
- fluteds
|
||||
- Ikko Ashimine
|
||||
- John-Gee
|
||||
- Jonathan
|
||||
- Kent
|
||||
- leuqarte
|
||||
- Luis-Johannes Schubert
|
||||
- Marco
|
||||
- marcuswin
|
||||
- Max Keller
|
||||
- Patrick Lodder
|
||||
- Pedro Branco
|
||||
- Primo
|
||||
- Reiner Herrmann
|
||||
- Ross Nicoll
|
||||
- Shibe
|
||||
- tnaka
|
||||
- Vertian
|
||||
Loading…
x
Reference in New Issue
Block a user