1Bitcoin Core version 0.17.0 is now available from:
2
3  <https://bitcoincore.org/bin/bitcoin-core-0.17.0/>
4
5This is a new major version release, including new features, various bugfixes
6and performance improvements, as well as updated translations.
7
8Please report bugs using the issue tracker at GitHub:
9
10  <https://github.com/bitcoin/bitcoin/issues>
11
12To receive security and update notifications, please subscribe to:
13
14  <https://bitcoincore.org/en/list/announcements/join/>
15
16How to Upgrade
17==============
18
19If you are running an older version, shut it down. Wait until it has completely
20shut down (which might take a few minutes for older versions), then run the
21installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on Mac)
22or `bitcoind`/`bitcoin-qt` (on Linux).
23
24If your node has a txindex, the txindex db will be migrated the first time you run 0.17.0 or newer, which may take up to a few hours. Your node will not be functional until this migration completes.
25
26The first time you run version 0.15.0 or newer, your chainstate database will be converted to a
27new format, which will take anywhere from a few minutes to half an hour,
28depending on the speed of your machine.
29
30Note that the block database format also changed in version 0.8.0 and there is no
31automatic upgrade code from before version 0.8 to version 0.15.0. Upgrading
32directly from 0.7.x and earlier without redownloading the blockchain is not supported.
33However, as usual, old wallet versions are still supported.
34
35Downgrading warning
36-------------------
37
38The chainstate database for this release is not compatible with previous
39releases, so if you run 0.15 and then decide to switch back to any
40older version, you will need to run the old release with the `-reindex-chainstate`
41option to rebuild the chainstate data structures in the old format.
42
43If your node has pruning enabled, this will entail re-downloading and
44processing the entire blockchain.
45
46Compatibility
47==============
48
49Bitcoin Core is extensively tested on multiple operating systems using
50the Linux kernel, macOS 10.10+, and Windows 7 and newer (Windows XP is not supported).
51
52Bitcoin Core should also work on most other Unix-like systems but is not
53frequently tested on them.
54
55From 0.17.0 onwards macOS <10.10 is no longer supported. 0.17.0 is built using Qt 5.9.x, which doesn't
56support versions of macOS older than 10.10.
57
58Known issues
59============
60
61- Upgrading from 0.13.0 or older currently results in memory blow-up during the roll-back of blocks to the SegWit activation point. In these cases, a full `-reindex` is necessary.
62
63- The GUI suffers from visual glitches in the new MacOS dark mode. This has to do with our Qt theme handling and is not a new problem in 0.17.0, but is expected to be resolved in 0.17.1.
64
65Notable changes
66===============
67
68Changed configuration options
69-----------------------------
70
71- `-includeconf=<file>` can be used to include additional configuration files.
72  Only works inside the `bitcoin.conf` file, not inside included files or from
73  command-line. Multiple files may be included. Can be disabled from command-
74  line via `-noincludeconf`. Note that multi-argument commands like
75  `-includeconf` will override preceding `-noincludeconf`, i.e.
76  ```
77  noincludeconf=1
78  includeconf=relative.conf
79  ```
80
81  as bitcoin.conf will still include `relative.conf`.
82
83GUI changes
84-----------
85
86- Block storage can be limited under Preferences, in the Main tab. Undoing this setting requires downloading the full blockchain again. This mode is incompatible with -txindex and -rescan.
87
88External wallet files
89---------------------
90
91The `-wallet=<path>` option now accepts full paths instead of requiring wallets
92to be located in the -walletdir directory.
93
94Newly created wallet format
95---------------------------
96
97If `-wallet=<path>` is specified with a path that does not exist, it will now
98create a wallet directory at the specified location (containing a wallet.dat
99data file, a db.log file, and database/log.?????????? files) instead of just
100creating a data file at the path and storing log files in the parent
101directory. This should make backing up wallets more straightforward than
102before because the specified wallet path can just be directly archived without
103having to look in the parent directory for transaction log files.
104
105For backwards compatibility, wallet paths that are names of existing data files
106in the `-walletdir` directory will continue to be accepted and interpreted the
107same as before.
108
109Dynamic loading and creation of wallets
110---------------------------------------
111
112Previously, wallets could only be loaded or created at startup, by specifying `-wallet` parameters on the command line or in the bitcoin.conf file. It is now possible to load, create and unload wallets dynamically at runtime:
113
114- Existing wallets can be loaded by calling the `loadwallet` RPC. The wallet can be specified as file/directory basename (which must be located in the `walletdir` directory), or as an absolute path to a file/directory.
115- New wallets can be created (and loaded) by calling the `createwallet` RPC. The provided name must not match a wallet file in the `walletdir` directory or the name of a wallet that is currently loaded.
116- Loaded wallets can be unloaded by calling the `unloadwallet` RPC.
117
118This feature is currently only available through the RPC interface.
119
120Coin selection
121--------------
122
123### Partial spend avoidance
124
125When an address is paid multiple times the coins from those separate payments can be spent separately which hurts privacy due to linking otherwise separate addresses. A new `-avoidpartialspends` flag has been added (default=false). If enabled, the wallet will always spend existing UTXO to the same address together even if it results in higher fees. If someone were to send coins to an address after it was used, those coins will still be included in future coin selections.
126
127Configuration sections for testnet and regtest
128----------------------------------------------
129
130It is now possible for a single configuration file to set different
131options for different networks. This is done by using sections or by
132prefixing the option with the network, such as:
133
134    main.uacomment=bitcoin
135    test.uacomment=bitcoin-testnet
136    regtest.uacomment=regtest
137    [main]
138    mempoolsize=300
139    [test]
140    mempoolsize=100
141    [regtest]
142    mempoolsize=20
143
144If the following options are not in a section, they will only apply to mainnet:
145`addnode=`, `connect=`, `port=`, `bind=`, `rpcport=`, `rpcbind=` and `wallet=`.
146The options to choose a network (`regtest=` and `testnet=`) must be specified
147outside of sections.
148
149'label' and 'account' APIs for wallet
150-------------------------------------
151
152A new 'label' API has been introduced for the wallet. This is intended as a
153replacement for the deprecated 'account' API. The 'account' can continue to
154be used in V0.17 by starting bitcoind with the '-deprecatedrpc=accounts'
155argument, and will be fully removed in V0.18.
156
157The label RPC methods mirror the account functionality, with the following functional differences:
158
159- Labels can be set on any address, not just receiving addresses. This functionality was previously only available through the GUI.
160- Labels can be deleted by reassigning all addresses using the `setlabel` RPC method.
161- There isn't support for sending transactions _from_ a label, or for determining which label a transaction was sent from.
162- Labels do not have a balance.
163
164Here are the changes to RPC methods:
165
166| Deprecated Method       | New Method            | Notes       |
167| :---------------------- | :-------------------- | :-----------|
168| `getaccount`            | `getaddressinfo`      | `getaddressinfo` returns a json object with address information instead of just the name of the account as a string. |
169| `getaccountaddress`     | n/a                   | There is no replacement for `getaccountaddress` since labels do not have an associated receive address. |
170| `getaddressesbyaccount` | `getaddressesbylabel` | `getaddressesbylabel` returns a json object with the addresses as keys, instead of a list of strings. |
171| `getreceivedbyaccount`  | `getreceivedbylabel`  | _no change in behavior_ |
172| `listaccounts`          | `listlabels`          | `listlabels` does not return a balance or accept `minconf` and `watchonly` arguments. |
173| `listreceivedbyaccount` | `listreceivedbylabel` | Both methods return new `label` fields, along with `account` fields for backward compatibility. |
174| `move`                  | n/a                   | _no replacement_ |
175| `sendfrom`              | n/a                   | _no replacement_ |
176| `setaccount`            | `setlabel`            | Both methods now: <ul><li>allow assigning labels to any address, instead of raising an error if the address is not receiving address.<li>delete the previous label associated with an address when the final address using that label is reassigned to a different label, instead of making an implicit `getaccountaddress` call to ensure the previous label still has a receiving address. |
177
178| Changed Method         | Notes   |
179| :--------------------- | :------ |
180| `addmultisigaddress`   | Renamed `account` named parameter to `label`. Still accepts `account` for backward compatibility if running with '-deprecatedrpc=accounts'. |
181| `getnewaddress`        | Renamed `account` named parameter to `label`. Still accepts `account` for backward compatibility. if running with '-deprecatedrpc=accounts' |
182| `listunspent`          | Returns new `label` fields. `account` field will be returned for backward compatibility if running with '-deprecatedrpc=accounts' |
183| `sendmany`             | The `account` named parameter has been renamed to `dummy`. If provided, the `dummy` parameter must be set to the empty string, unless running with the `-deprecatedrpc=accounts` argument (in which case functionality is unchanged). |
184| `listtransactions`     | The `account` named parameter has been renamed to `dummy`. If provided, the `dummy` parameter must be set to the string `*`, unless running with the `-deprecatedrpc=accounts` argument (in which case functionality is unchanged). |
185| `getbalance`           | `account`, `minconf` and `include_watchonly` parameters are deprecated, and can only be used if running with '-deprecatedrpc=accounts' |
186
187BIP 174 Partially Signed Bitcoin Transactions support
188-----------------------------------------------------
189
190[BIP 174 PSBT](https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki) is an interchange format for Bitcoin transactions that are not fully signed
191yet, together with relevant metadata to help entities work towards signing it.
192It is intended to simplify workflows where multiple parties need to cooperate to
193produce a transaction. Examples include hardware wallets, multisig setups, and
194[CoinJoin](https://bitcointalk.org/?topic=279249) transactions.
195
196### Overall workflow
197
198Overall, the construction of a fully signed Bitcoin transaction goes through the
199following steps:
200
201- A **Creator** proposes a particular transaction to be created. He constructs
202  a PSBT that contains certain inputs and outputs, but no additional metadata.
203- For each input, an **Updater** adds information about the UTXOs being spent by
204  the transaction to the PSBT.
205- A potentially other Updater adds information about the scripts and public keys
206  involved in each of the inputs (and possibly outputs) of the PSBT.
207- **Signers** inspect the transaction and its metadata to decide whether they
208  agree with the transaction. They can use amount information from the UTXOs
209  to assess the values and fees involved. If they agree, they produce a
210  partial signature for the inputs for which they have relevant key(s).
211- A **Finalizer** is run for each input to convert the partial signatures and
212  possibly script information into a final `scriptSig` and/or `scriptWitness`.
213- An **Extractor** produces a valid Bitcoin transaction (in network format)
214  from a PSBT for which all inputs are finalized.
215
216Generally, each of the above (excluding Creator and Extractor) will simply
217add more and more data to a particular PSBT. In a naive workflow, they all have
218to operate sequentially, passing the PSBT from one to the next, until the
219Extractor can convert it to a real transaction. In order to permit parallel
220operation, **Combiners** can be employed which merge metadata from different
221PSBTs for the same unsigned transaction.
222
223The names above in bold are the names of the roles defined in BIP174. They're
224useful in understanding the underlying steps, but in practice, software and
225hardware implementations will typically implement multiple roles simultaneously.
226
227### RPCs
228
229- **`converttopsbt` (Creator)** is a utility RPC that converts an
230  unsigned raw transaction to PSBT format. It ignores existing signatures.
231- **`createpsbt` (Creator)** is a utility RPC that takes a list of inputs and
232  outputs and converts them to a PSBT with no additional information. It is
233  equivalent to calling `createrawtransaction` followed by `converttopsbt`.
234- **`walletcreatefundedpsbt` (Creator, Updater)** is a wallet RPC that creates a
235  PSBT with the specified inputs and outputs, adds additional inputs and change
236  to it to balance it out, and adds relevant metadata. In particular, for inputs
237  that the wallet knows about (counting towards its normal or watch-only
238  balance), UTXO information will be added. For outputs and inputs with UTXO
239  information present, key and script information will be added which the wallet
240  knows about. It is equivalent to running `createrawtransaction`, followed by
241  `fundrawtransaction`, and `converttopsbt`.
242- **`walletprocesspsbt` (Updater, Signer, Finalizer)** is a wallet RPC that takes as
243  input a PSBT, adds UTXO, key, and script data to inputs and outputs that miss
244  it, and optionally signs inputs. Where possible it also finalizes the partial
245  signatures.
246- **`finalizepsbt` (Finalizer, Extractor)** is a utility RPC that finalizes any
247  partial signatures, and if all inputs are finalized, converts the result to a
248  fully signed transaction which can be broadcast with `sendrawtransaction`.
249- **`combinepsbt` (Combiner)** is a utility RPC that implements a Combiner. It
250  can be used at any point in the workflow to merge information added to
251  different versions of the same PSBT. In particular it is useful to combine the
252  output of multiple Updaters or Signers.
253- **`decodepsbt`** is a diagnostic utility RPC which will show all information in
254  a PSBT in human-readable form, as well as compute its eventual fee if known.
255
256Upgrading non-HD wallets to HD wallets
257--------------------------------------
258
259Since Bitcoin Core 0.13.0, creating new BIP 32 Hierarchical Deterministic wallets has been supported by Bitcoin Core but old non-HD wallets could not be upgraded to HD. Now non-HD wallets can be upgraded to HD using the `-upgradewallet` command line option. This upgrade will result in the all keys in the keypool being marked as used and a new keypool generated. **A new backup must be made when this upgrade is performed.**
260
261Additionally, `-upgradewallet` can be used to upgraded from a non-split HD chain (all keys generated with `m/0'/0'/i'`) to a split HD chain (receiving keys generated with `'m/0'/0'/i'` and change keys generated with `m'/0'/1'/i'`). When this upgrade occurs, all keys already in the keypool will remain in the keypool to be used until all keys from before the upgrade are exhausted. This is to avoid issues with backups and downgrades when some keys may come from the change key keypool. Users can begin using the new split HD chain keypools by using the `newkeypool` RPC to mark all keys in the keypool as used and begin using a new keypool generated from the split HD chain.
262
263HD Master key rotation
264----------------------
265
266A new RPC, `sethdseed`, has been introduced which allows users to set a new HD seed or set their own HD seed. This allows for a new HD seed to be used. **A new backup must be made when a new HD seed is set.**
267
268Low-level RPC changes
269---------------------
270
271- The new RPC `scantxoutset` can be used to scan the UTXO set for entries
272  that match certain output descriptors. Refer to the [output descriptors
273  reference documentation](/doc/descriptors.md) for more details. This call
274  is similar to `listunspent` but does not use a wallet, meaning that the
275  wallet can be disabled at compile or run time. This call is experimental,
276  as such, is subject to changes or removal in future releases.
277
278- The `createrawtransaction` RPC will now accept an array or dictionary (kept for compatibility) for the `outputs` parameter. This means the order of transaction outputs can be specified by the client.
279- The `fundrawtransaction` RPC will reject the previously deprecated `reserveChangeKey` option.
280- `sendmany` now shuffles outputs to improve privacy, so any previously expected behavior with regards to output ordering can no longer be relied upon.
281- The new RPC `testmempoolaccept` can be used to test acceptance of a transaction to the mempool without adding it.
282- JSON transaction decomposition now includes a `weight` field which provides
283  the transaction's exact weight. This is included in REST /rest/tx/ and
284  /rest/block/ endpoints when in json mode. This is also included in `getblock`
285  (with verbosity=2), `listsinceblock`, `listtransactions`, and
286  `getrawtransaction` RPC commands.
287- New `fees` field introduced in `getrawmempool`, `getmempoolancestors`, `getmempooldescendants` and
288   `getmempoolentry` when verbosity is set to `true` with sub-fields `ancestor`, `base`, `modified`
289   and `descendant` denominated in BTC. This new field deprecates previous fee fields, such as
290   `fee`, `modifiedfee`, `ancestorfee` and `descendantfee`.
291- The new RPC `getzmqnotifications` returns information about active ZMQ
292  notifications.
293- When bitcoin is not started with any `-wallet=<path>` options, the name of
294  the default wallet returned by `getwalletinfo` and `listwallets` RPCs is
295  now the empty string `""` instead of `"wallet.dat"`. If bitcoin is started
296  with any `-wallet=<path>` options, there is no change in behavior, and the
297  name of any wallet is just its `<path>` string.
298- Passing an empty string (`""`) as the `address_type` parameter to
299  `getnewaddress`, `getrawchangeaddress`, `addmultisigaddress`,
300  `fundrawtransaction` RPCs is now an error. Previously, this would fall back
301  to using the default address type. It is still possible to pass null or leave
302  the parameter unset to use the default address type.
303
304- Bare multisig outputs to our keys are no longer automatically treated as
305  incoming payments. As this feature was only available for multisig outputs for
306  which you had all private keys in your wallet, there was generally no use for
307  them compared to single-key schemes. Furthermore, no address format for such
308  outputs is defined, and wallet software can't easily send to it. These outputs
309  will no longer show up in `listtransactions`, `listunspent`, or contribute to
310  your balance, unless they are explicitly watched (using `importaddress` or
311  `importmulti` with hex script argument). `signrawtransaction*` also still
312  works for them.
313
314- The `getwalletinfo` RPC method now returns an `hdseedid` value, which is always the same as the incorrectly-named `hdmasterkeyid` value. `hdmasterkeyid` will be removed in V0.18.
315- The `getaddressinfo` RPC method now returns an `hdseedid` value, which is always the same as the incorrectly-named `hdmasterkeyid` value. `hdmasterkeyid` will be removed in V0.18.
316
317- Parts of the `validateaddress` RPC method have been deprecated and moved to
318  `getaddressinfo`. Clients must transition to using `getaddressinfo` to access
319  this information before upgrading to v0.18. The following deprecated fields
320  have moved to `getaddressinfo` and will only be shown with
321  `-deprecatedrpc=validateaddress`: `ismine`, `iswatchonly`, `script`, `hex`,
322  `pubkeys`, `sigsrequired`, `pubkey`, `addresses`, `embedded`, `iscompressed`,
323  `account`, `timestamp`, `hdkeypath`, `hdmasterkeyid`.
324- `signrawtransaction` is deprecated and will be fully removed in v0.18. To use
325  `signrawtransaction` in v0.17, restart bitcoind with
326  `-deprecatedrpc=signrawtransaction`. Projects should transition to using
327  `signrawtransactionwithkey` and `signrawtransactionwithwallet` before
328  upgrading to v0.18.
329
330Other API changes
331-----------------
332
333- The `inactivehdmaster` property in the `dumpwallet` output has been corrected to `inactivehdseed`
334
335### Logging
336
337- The log timestamp format is now ISO 8601 (e.g. "2018-02-28T12:34:56Z").
338
339- When running bitcoind with `-debug` but without `-daemon`, logging to stdout
340  is now the default behavior. Setting `-printtoconsole=1` no longer implicitly
341  disables logging to debug.log. Instead, logging to file can be explicitly disabled
342  by setting `-debuglogfile=0`.
343
344Transaction index changes
345-------------------------
346
347The transaction index is now built separately from the main node procedure,
348meaning the `-txindex` flag can be toggled without a full reindex. If bitcoind
349is run with `-txindex` on a node that is already partially or fully synced
350without one, the transaction index will be built in the background and become
351available once caught up. When switching from running `-txindex` to running
352without the flag, the transaction index database will *not* be deleted
353automatically, meaning it could be turned back on at a later time without a full
354resync.
355
356Miner block size removed
357------------------------
358
359The `-blockmaxsize` option for miners to limit their blocks' sizes was
360deprecated in V0.15.1, and has now been removed. Miners should use the
361`-blockmaxweight` option if they want to limit the weight of their blocks.
362
363Python Support
364--------------
365
366Support for Python 2 has been discontinued for all test files and tools.
367
3680.17.0 change log
369=================
370
371### Consensus
372- #12204 `3fa24bb` Fix overly eager BIP30 bypass (morcos)
373
374### Policy
375- #12568 `ed6ae80` Allow dustrelayfee to be set to zero (luke-jr)
376- #13120 `ca2a233` Treat segwit as always active (MarcoFalke)
377- #13096 `062738c` Fix `MAX_STANDARD_TX_WEIGHT` check (jl2012)
378
379### Mining
380- #12693 `df529dc` Remove unused variable in SortForBlock (drewx2)
381- #12448 `84efa9a` Interrupt block generation on shutdown request (promag)
382
383### Block and transaction handling
384- #12225 `67447ba` Mempool cleanups (sdaftuar)
385- #12356 `fd65937` Fix 'mempool min fee not met' debug output (Empact)
386- #12287 `bf3353d` Optimise lock behaviour for GuessVerificationProgress() (jonasschnelli)
387- #11889 `47a7666` Drop extra script variable in ProduceSignature (ryanofsky)
388- #11880 `d59b8d6` Stop special-casing phashBlock handling in validation for TBV (TheBlueMatt)
389- #12431 `947c25e` Only call NotifyBlockTip when chainActive changes (jamesob)
390- #12653 `534b8fa` Allow to optional specify the directory for the blocks storage (jonasschnelli)
391- #12172 `3b62a91` Bugfix: RPC: savemempool: Don't save until LoadMempool() is finished (jtimon)
392- #12167 `88430cb` Make segwit failure due to `CLEANSTACK` violation return a `SCRIPT_ERR_CLEANSTACK` error code (maaku)
393- #12561 `24133b1` Check for block corruption in ConnectBlock() (sdaftuar)
394- #11617 `1b5723e` Avoid lock: Call FlushStateToDisk(…) regardless of fCheckForPruning (practicalswift)
395- #11739 `0a8b7b4` Enforce `SCRIPT_VERIFY_P2SH` and `SCRIPT_VERIFY_WITNESS` from genesis (sdaftuar)
396- #12885 `a49381d` Reduce implementation code inside CScript (sipa)
397- #13032 `34dd1a6` Output values for "min relay fee not met" error (kristapsk)
398- #13033 `a07e8ca` Build txindex in parallel with validation (jimpo)
399- #13080 `66cc47b` Add compile time checking for ::mempool.cs runtime locking assertions (practicalswift)
400- #13185 `08c1caf` Bugfix: the end of a reorged chain is invalid when connect fails (sipa)
401- #11689 `0264836` Fix missing locking in CTxMemPool::check(…) and CTxMemPool::setSanityCheck(…) (practicalswift)
402- #13011 `3c2a41a` Cache witness hash in CTransaction (MarcoFalke)
403- #13191 `0de7cc8` Specialized double-SHA256 with 64 byte inputs with SSE4.1 and AVX2 (sipa)
404- #13243 `ea263e1` Make reusable base class for auxiliary indices (jimpo)
405- #13393 `a607d23` Enable double-SHA256-for-64-byte code on 32-bit x86 (sipa)
406- #13428 `caabdea` validation: check the specified number of blocks (off-by-one) (kallewoof)
407- #13438 `450055b` Improve coverage of SHA256 SelfTest code (sipa)
408- #13431 `954f4a9` validation: count blocks correctly for check level < 3 (kallewoof)
409- #13386 `3a3eabe` SHA256 implementations based on Intel SHA Extensions (sipa)
410- #11658 `9a1ad2c` During IBD, when doing pruning, prune 10% extra to avoid pruning again soon after (luke-jr)
411- #13794 `8ce55df` chainparams: Update with data from assumed valid chain (MarcoFalke)
412- #13527 `e7ea858` Remove promiscuousmempoolflags (MarcoFalke)
413
414### P2P protocol and network code
415- #12342 `eaeaa2d` Extend #11583 ("Do not make it trivial for inbound peers to generate log entries") to include "version handshake timeout" message (clemtaylor)
416- #12218 `9a32114` Move misbehaving logging to net logging category (laanwj)
417- #10387 `5c2aff8` Eventually connect to `NODE_NETWORK_LIMITED` peers (jonasschnelli)
418- #9037 `a36834f` Add test-before-evict discipline to addrman (EthanHeilman)
419- #12622 `e1d6e2a` Correct addrman logging (laanwj)
420- #11962 `0a01843` add seed.bitcoin.sprovoost.nl to DNS seeds (Sjors)
421- #12569 `23e7fe8` Increase signal-to-noise ratio in debug.log by adjusting log level when logging failed non-manual connect():s (practicalswift)
422- #12855 `c199869` Minor accumulated cleanups (tjps)
423- #13153 `ef46c99` Add missing newlines to debug logging (laanwj)
424- #13162 `a174702` Don't incorrectly log that REJECT messages are unknown (jnewbery)
425- #13151 `7f4db9a` Serve blocks directly from disk when possible (laanwj)
426- #13134 `70d3541` Add option `-enablebip61` to configure sending of BIP61 notifications (laanwj)
427- #13532 `7209fec` Log warning when deprecated network name 'tor' is used (wodry)
428- #13615 `172f984` Remove unused interrupt from SendMessages (fanquake)
429- #13417 `1e90862` Tighten scope in `net_processing` (skeees)
430- #13298 `f8d470e` Bucketing INV delays (1 bucket) for incoming connections to hide tx time (naumenkogs)
431- #13672 `0d8d6be` Modified `in_addr6` cast in CConman class to work with msvc (sipsorcery)
432- #11637 `c575260` Remove dead service bits code (MarcoFalke)
433- #13212 `a6f00ce` Fixed a race condition when disabling the network (lmanners)
434- #13656 `1211b15` Remove the boost/algorithm/string/predicate.hpp dependency (251Labs)
435- #13423 `f58674a` Thread safety annotations in `net_processing` (skeees)
436- #13776 `7d36237` Add missing verification of IPv6 address in CNetAddr::GetIn6Addr(…) (practicalswift)
437- #13907 `48bf8ff` Introduce a maximum size for locators (gmaxwell)
438- #13951 `8a9ffec` Hardcoded seeds update pre-0.17 branch (laanwj)
439
440### Wallet
441- #12330 `2a30e67` Reduce scope of `cs_main` and `cs_wallet` locks in listtransactions (promag)
442- #12298 `a1ffddb` Refactor HaveKeys to early return on false result (promag)
443- #12282 `663911e` Disallow abandon of conflicted txes (MarcoFalke)
444- #12333 `d405bee` Make CWallet::ListCoins atomic (promag)
445- #12296 `8e6f9f4` Only fee-bump non-conflicted/non-confirmed txes (MarcoFalke)
446- #11866 `6bb9c13` Do not un-mark fInMempool on wallet txn if ATMP fails (TheBlueMatt)
447- #11882 `987a809` Disable default fallbackfee on mainnet (jonasschnelli)
448- #9991 `4ca7c1e` listreceivedbyaddress Filter Address (NicolasDorier)
449- #11687 `98bc27f` External wallet files (ryanofsky)
450- #12658 `af88094` Sanitize some wallet serialization (sipa)
451- #9680 `6acd870` Unify CWalletTx construction (ryanofsky)
452- #10637 `e057589` Coin Selection with Murch's algorithm (achow101, Xekyo)
453- #12408 `c39dd2e` Change output type globals to members (MarcoFalke)
454- #12694 `9552dfb` Actually disable BnB when there are preset inputs (achow101)
455- #11536 `cead84b` Rename account to label where appropriate (ryanofsky)
456- #12709 `02b7e83` shuffle sendmany recipients ordering (instagibbs)
457- #12699 `c948dc8` Shuffle transaction inputs before signing (instagibbs)
458- #10762 `6d53663` Remove Wallet dependencies from init.cpp (jnewbery)
459- #12857 `821980c` Avoid travis lint-include-guards error (ken2812221)
460- #12702 `dab0d68` importprivkey: hint about importmulti (kallewoof)
461- #12836 `9abdb7c` Make WalletInitInterface and DummyWalletInit private, fix nullptr deref (promag)
462- #12785 `215158a` Initialize `m_last_block_processed` to nullptr (practicalswift)
463- #12932 `8d651ae` Remove redundant lambda function arg in handleTransactionChanged (laanwj)
464- #12749 `a84b056` feebumper: discard change outputs below discard rate (instagibbs)
465- #12892 `9b3370d` introduce 'label' API for wallet (jnewbery)
466- #12925 `6d3de17` Logprint the start of a rescan (jonasschnelli)
467- #12888 `39439e5` debug log number of unknown wallet records on load (instagibbs)
468- #12977 `434150a` Refactor `g_wallet_init_interface` to const reference (promag)
469- #13017 `65d7083` Add wallets management functions (promag)
470- #12953 `d1d54ae` Deprecate accounts (jnewbery)
471- #12909 `476cb35` Make fee settings to be non-static members (MarcoFalke)
472- #13002 `487dcbe` Do not treat bare multisig outputs as IsMine unless watched (sipa)
473- #13028 `783bb64` Make vpwallets usage thread safe (promag)
474- #12507 `2afdc29` Interrupt rescan on shutdown request (promag)
475- #12729 `979150b` Get rid of ambiguous OutputType::NONE value (ryanofsky)
476- #13079 `5778d44` Fix rescanblockchain rpc to properly report progress (Empact)
477- #12560 `e03c0db` Upgrade path for non-HD wallets to HD (achow101)
478- #13161 `7cc1bd3` Reset BerkeleyDB handle after connection fails (real-or-random)
479- #13081 `0dec5b5` Add compile time checking for `cs_wallet` runtime locking assertions (practicalswift)
480- #13127 `19a3a9e` Add Clang thread safety annotations for variables guarded by `cs_db` (practicalswift)
481- #10740 `4cfe17c` `loadwallet` RPC - load wallet at runtime (jnewbery)
482- #12924 `6738813` Fix hdmaster-key / seed-key confusion (scripted diff) (jnewbery)
483- #13297 `d82c5d1` Fix incorrect comment for DeriveNewSeed (jnewbery)
484- #13063 `6378eef` Use shared pointer to retain wallet instance (promag)
485- #13142 `56fe3dc` Separate IsMine from solvability (sipa)
486- #13194 `fd96d54` Remove template matching and pseudo opcodes (sipa)
487- #13252 `c4cc8d9` Refactor ReserveKeyFromKeyPool for safety (Empact)
488- #13058 `343d4e4` `createwallet` RPC - create new wallet at runtime (jnewbery)
489- #13351 `2140f6c` Prevent segfault when sending to unspendable witness (MarcoFalke)
490- #13060 `3f0f394` Remove getlabeladdress RPC (jnewbery)
491- #13111 `000abbb` Add unloadwallet RPC (promag)
492- #13160 `868cf43` Unlock spent outputs (promag)
493- #13498 `f54f373` Fixups from account API deprecation (jnewbery)
494- #13491 `61a044a` Improve handling of INVALID in IsMine (sipa)
495- #13425 `028b0d9` Moving final scriptSig construction from CombineSignatures to ProduceSignature (PSBT signer logic) (achow101)
496- #13564 `88a15eb` loadwallet shouldn't create new wallets (jnewbery)
497- #12944 `619cd29` ScanforWalletTransactions should mark input txns as dirty (instagibbs)
498- #13630 `d6b2235` Drop unused pindexRet arg to CMerkleTx::GetDepthInMainChain (Empact)
499- #13566 `ad552a5` Fix get balance (jnewbery)
500- #13500 `4a3e8c5` Decouple wallet version from client version (achow101)
501- #13712 `aba2e66` Fix non-determinism in ParseHDKeypath(…). Avoid using an uninitialized variable in path calculation (practicalswift)
502- #9662 `6b6e854` Add createwallet "disableprivatekeys" option: a sane mode for watchonly-wallets (jonasschnelli)
503- #13683 `e8c7434` Introduce assertion to document the assumption that cache and cache_used are always set in tandem (practicalswift)
504- #12257 `5f7575e` Use destination groups instead of coins in coin select (kallewoof)
505- #13773 `89a116d` Fix accidental use of the comma operator (practicalswift)
506- #13805 `c88529a` Correctly limit output group size (sdaftuar)
507- #12992 `26f59f5` Add wallet name to log messages (PierreRochard)
508- #13667 `b81a8a5` Fix backupwallet for multiwallets (domob1812)
509- #13657 `51c693d` assert to ensure accuracy of CMerkleTx::GetBlocksToMaturity (Empact)
510- #13812 `9d86aad` sum ancestors rather than taking max in output groups (kallewoof)
511- #13876 `8eb9870` Catch `filesystem_error` and raise `InitError` (MarcoFalke)
512- #13808 `13d51a2` shuffle coins before grouping, where warranted (kallewoof)
513- #13666 `2115cba` Always create signatures with Low R values (achow101)
514- #13917 `0333914` Additional safety checks in PSBT signer (sipa)
515- #13968 `65e7a8b` couple of walletcreatefundedpsbt fixes (instagibbs)
516- #14055 `2307a6e` fix walletcreatefundedpsbt deriv paths, add test (instagibbs)
517
518### RPC and other APIs
519- #12336 `3843780` Remove deprecated rpc options (jnewbery)
520- #12193 `5dc00f6` Consistently use UniValue.pushKV instead of push_back(Pair()) (karel-3d) (MarcoFalke)
521- #12409 `0cc45ed` Reject deprecated reserveChangeKey in fundrawtransaction (MarcoFalke)
522- #10583 `8a98dfe` Split part of validateaddress into getaddressinfo (achow101)
523- #10579 `ffc6e48` Split signrawtransaction into wallet and non-wallet RPC command (achow101)
524- #12494 `e4ffcac` Declare CMutableTransaction a struct in rawtransaction.h (Empact)
525- #12503 `0e26591` createmultisig no longer takes addresses (instagibbs)
526- #12083 `228b086` Improve getchaintxstats test coverage (promag)
527- #12479 `cd5e438` Add child transactions to getrawmempool verbose output (conscott)
528- #11872 `702e8b7` createrawtransaction: Accept sorted outputs (MarcoFalke)
529- #12700 `ebdf84c` Document RPC method aliasing (ryanofsky)
530- #12727 `8ee5c7b` Remove unreachable help conditions in rpcwallet.cpp (lutangar)
531- #12778 `b648974` Add username and ip logging for RPC method requests (GabrielDav)
532- #12717 `ac898b6` rest: Handle utxo retrieval when ignoring the mempool (romanz)
533- #12787 `cd99e5b` Adjust ifdef to avoid unreachable code (practicalswift)
534- #11742 `18815b4` Add testmempoolaccept (MarcoFalke)
535- #12942 `fefb817` Drop redundant testing of signrawtransaction prevtxs args (Empact)
536- #11200 `5f2a399` Allow for aborting rescans in the GUI (achow101)
537- #12791 `3a8a4dc` Expose a transaction's weight via RPC (TheBlueMatt)
538- #12436 `6e67754` Adds a functional test to validate the transaction version number in the RPC output (251Labs)
539- #12240 `6f8b345` Introduced a new `fees` structure that aggregates all sub-field fee types denominated in BTC (mryandao)
540- #12321 `eac067a` p2wsh and p2sh-p2wsh address in decodescript (fivepiece)
541- #13090 `17266a1` Remove Safe mode (achow101, laanwj)
542- #12639 `7eb7076` Reduce `cs_main` lock in listunspent (promag)
543- #10267 `7b966d9` New -includeconf argument for including external configuration files (kallewoof)
544- #10757 `b9551d3` Introduce getblockstats to plot things (jtimon)
545- #13288 `a589f53` Remove the need to include rpc/blockchain.cpp in order to put `GetDifficulty` under test (Empact)
546- #13394 `e1f8dce` cli: Ignore libevent warnings (theuni)
547- #13439 `3f398d7` Avoid "duplicate" return value for invalid submitblock (TheBlueMatt)
548- #13570 `a247594` Add new "getzmqnotifications" method (domob1812)
549- #13072 `b25a4c2` Update createmultisig RPC to support segwit (ajtowns)
550- #12196 `8fceae0` Add scantxoutset RPC method (jonasschnelli)
551- #13557 `b654723` BIP 174 PSBT Serializations and RPCs (achow101)
552- #13697 `f030410` Support output descriptors in scantxoutset (sipa)
553- #13927 `bced8ea` Use pushKV in some new PSBT RPCs (domob1812)
554- #13918 `a9c56b6` Replace median fee rate with feerate percentiles in getblockstats (marcinja)
555- #13721 `9f23c16` Bugfixes for BIP 174 combining and deserialization (achow101)
556- #13960 `517010e` Fix PSBT deserialization of 0-input transactions (achow101)
557
558### GUI
559- #12416 `c997f88` Fix Windows build errors introduced in #10498 (practicalswift)
560- #11733 `e782099` Remove redundant locks (practicalswift)
561- #12426 `bfa3911` Initialize members in WalletModel (MarcoFalke)
562- #12489 `e117cfe` Bugfix: respect user defined configuration file (-conf) in QT settings (jonasschnelli)
563- #12421 `be263fa` navigate to  transaction history page after send (Sjors)
564- #12580 `ce56fdd` Show a transaction's virtual size in its details dialog (dooglus)
565- #12501 `c8ea91a` Improved "custom fee" explanation in tooltip (randolf)
566- #12616 `cff95a6` Set modal overlay hide button as default (promag)
567- #12620 `8a43bdc` Remove TransactionTableModel::TxIDRole (promag)
568- #12080 `56cc022` Add support to search the address book (promag)
569- #12621 `2bac3e4` Avoid querying unnecessary model data when filtering transactions (promag)
570- #12721 `e476826` remove "new" button during receive-mode in addressbook (jonasschnelli)
571- #12723 `310dc61` Qt5: Warning users about invalid-BIP21 URI bitcoin:// (krab)
572- #12610 `25cf18f` Multiwallet for the GUI (jonasschnelli)
573- #12779 `f4353da` Remove unused method setupAmountWidget(…) (practicalswift)
574- #12795 `68484d6` do not truncate .dat extension for wallets in gui (instagibbs)
575- #12870 `1d54004` make clean removes `src/qt/moc_` files (Sjors)
576- #13055 `bdda14d` Don't log to console by default (laanwj)
577- #13141 `57c57df` fixes broken link on readme (marcoagner)
578- #12928 `ef006d9` Initialize non-static class members that were previously neither initialized where defined nor in constructor (practicalswift)
579- #13158 `81c533c` Improve sendcoinsdialog readability (marcoagner)
580- #11491 `40c34a0` Add proxy icon in statusbar (mess110)
581- #13264 `2a7c53b` Satoshi unit (GreatSock)
582- #13097 `e545503` Support wallets loaded dynamically (promag)
583- #13284 `f8be434` fix visual "overflow" of amount input (brandonrninefive)
584- #13275 `a315b79` use `[default wallet]` as name for wallet with no name (jonasschnelli)
585- #13273 `3fd0c23` Qt/Bugfix: fix handling default wallet with no name (jonasschnelli)
586- #13341 `25d2df2` Stop translating command line options (laanwj)
587- #13043 `6e249e4` OptionsDialog: add prune setting (Sjors)
588- #13506 `6579d80` load wallet in UI after possible init aborts (jonasschnelli)
589- #13458 `dc53f7f` Drop qt4 support (laanwj)
590- #13528 `b877c39` Move BitcoinGUI initializers to class, fix initializer order warning (laanwj)
591- #13536 `baf3a3a` coincontrol: Remove unused qt4 workaround (MarcoFalke)
592- #13537 `10ffca7` Peer table: Visualize inbound/outbound state for every row (wodry)
593- #13791 `2c14c1f` Reject dialogs if key escape is pressed (promag)
594
595### Build system
596- #12371 `c9ca4f6` Add gitian PGP key: akx20000 (ghost)
597- #11966 `f4f4f51` clientversion: Use full commit hash for commit-based version descriptions (luke-jr)
598- #12417 `ae0fbf0` Upgrade `mac_alias` to 2.0.7 (droark)
599- #12444 `1f055ef` gitian: Bump descriptors for (0.)17 (theuni)
600- #12402 `59e032b` expat 2.2.5, ccache 3.4.1, miniupnpc 2.0.20180203 (fanquake)
601- #12029 `daa84b3` Add a makefile target for Doxygen documentation (Ov3rlo4d)
602- #12466 `6645eaf` Only use `D_DARWIN_C_SOURCE` when building miniupnpc on darwin (fanquake)
603- #11986 `765a3eb` zeromq 4.2.3 (fanquake)
604- #12373 `f13d756` Add build support for profiling (murrayn)
605- #12631 `a312e20` gitian: Alphabetize signing keys & add kallewoof key (kallewoof)
606- #12607 `29fad97` Remove ccache (fanquake)
607- #12625 `c4219ff` biplist 1.0.3 (fanquake)
608- #12666 `05042d3` configure: UniValue 1.0.4 is required for pushKV(, bool) (luke-jr)
609- #12678 `6324c68` Fix a few compilation issues with Clang 7 and -Werror (vasild)
610- #12692 `de6bdfd` Add configure options for various -fsanitize flags (eklitzke)
611- #12901 `7e23972` Show enabled sanitizers in configure output (practicalswift)
612- #12899 `3076993` macOS: Prevent Xcode 9.3 build warnings (AkioNak)
613- #12715 `8fd6243` Add 'make clean' rule (hkjn)
614- #13133 `a024a18` Remove python2 from configure.ac (ken2812221)
615- #13005 `cb088b1` Make --enable-debug to pick better options (practicalswift)
616- #13254 `092b366` Remove improper `qt/moc_*` cleaning glob from the general Makefile (Empact)
617- #13306 `f5a7733` split warnings out of CXXFLAGS (theuni)
618- #13385 `7c7508c` Guard against accidental introduction of new Boost dependencies (practicalswift)
619- #13041 `5779dc4` Add linter checking for accidental introduction of locale dependence (practicalswift)
620- #13408 `70a03c6` crypto: cleanup sha256 build (theuni)
621- #13435 `cf7ca60` When build fails due to lib missing, indicate which one (Empact)
622- #13445 `8eb76f3` Reset default -g -O2 flags when enable debug (ken2812221)
623- #13465 `81069a7` Avoid concurrency issue when make multiple target (ken2812221)
624- #13454 `45c00f8` Make sure `LC_ALL=C` is set in all shell scripts (practicalswift)
625- #13480 `31145a3` Avoid copies in range-for loops and add a warning to detect them (theuni)
626- #13486 `66e1a08` Move rpc/util.cpp from libbitcoin-util to libbitcoin-server (ken2812221)
627- #13580 `40334c7` Detect if char equals `int8_t` (ken2812221)
628- #12788 `287e4ed` Tune wildcards for LIBSECP256K1 target (kallewoof)
629- #13611 `b55f0c3` bugfix: Use `__cpuid_count` for gnu C to avoid gitian build fail (ken2812221)
630- #12971 `a6d14b1` Upgrade Qt to 5.9.6 (TheCharlatan)
631- #13543 `6c6a300` Add RISC-V support (laanwj)
632- #13177 `dcb154e` GCC-7 and glibc-2.27 back compat code (ken2812221)
633- #13659 `90b1c7e` add missing leveldb defines (theuni)
634- #13368 `c0f1569` Update gitian-build.sh for docker (achow101)
635- #13171 `19d8ca5` Change gitian-descriptors to use bionic instead (ken2812221)
636- #13604 `75bea05` Add depends 32-bit arm support for bitcoin-qt (TheCharlatan)
637- #13623 `9cdb19f` Migrate gitian-build.sh to python (ken2812221)
638- #13689 `8c36432` disable Werror when building zmq (greenaddress)
639- #13617 `cf7f9ae` release: Require macos 10.10+ (fanquake)
640- #13750 `c883653` use MacOS friendly sed syntax in qt.mk (Sjors)
641- #13095 `415f2bf` update `ax_boost_chrono`/`unit_test_framework` (fanquake)
642- #13732 `e8ffec6` Fix Qt's rcc determinism (Fuzzbawls)
643- #13782 `8284f1d` Fix osslsigncode compile issue in gitian-build (ken2812221)
644- #13696 `2ab7208` Add aarch64 qt depends support for cross compiling bitcoin-qt (TheCharlatan)
645- #13705 `b413ba0` Add format string linter (practicalswift)
646- #14000 `48c8459` fix qt determinism (theuni)
647- #14018 `3e4829a` Bugfix: NSIS: Exclude `Makefile*` from docs (luke-jr)
648- #12906 `048ac83` Avoid `interface` keyword to fix windows gitian build (ryanofsky)
649- #13314 `a9b6957` Fix FreeBSD build by including utilstrencodings.h (laanwj)
650
651### Tests and QA
652- #12252 `8d57319` Require all tests to follow naming convention (ajtowns)
653- #12295 `935eb8d` Enable flake8 warnings for all currently non-violated rules (practicalswift)
654- #11858 `b4d8549` Prepare tests for Windows (MarcoFalke)
655- #11771 `2dbc4a4` Change invalidtxrequest to use BitcoinTestFramework (jnewbery)
656- #12200 `d09968f` Bind functional test nodes to 127.0.0.1 (Sjors)
657- #12425 `26dc2da` Add some script tests (richardkiss)
658- #12455 `23481fa` Fix bip68 sequence test to reflect updated rpc error message (Empact)
659- #12477 `acd1e61` Plug memory leaks and stack-use-after-scope (MarcoFalke)
660- #12443 `07090c5` Move common args to bitcoin.conf (MarcoFalke)
661- #12570 `39dcac2` Add test cases for HexStr (`std::reverse_iterator` and corner cases) (kostaz)
662- #12582 `6012f1c` Fix ListCoins test failure due to unset `g_wallet_allow_fallback_fee` (ryanofsky)
663- #12516 `7f99964` Avoid unintentional unsigned integer wraparounds in tests (practicalswift)
664- #12512 `955fd23` Don't test against the mempool min fee information in mempool_limit.py (Empact)
665- #12600 `29088b1` Add a test for large tx output scripts with segwit input (richardkiss)
666- #12627 `791c3ea` Fix some tests to work on native windows (MarcoFalke)
667- #12405 `0f58d7f` travis: Full clone for git subtree check (MarcoFalke)
668- #11772 `0630974` Change invalidblockrequest to use BitcoinTestFramework (jnewbery)
669- #12681 `1846296` Fix ComputeTimeSmart test failure with `-DDEBUG_LOCKORDER` (ryanofsky)
670- #12682 `9f04c8e` travis: Clone depth 1 unless `$check_doc` (MarcoFalke)
671- #12710 `00d1680` Append scripts to new `test_list` array to fix bad assignment (jeffrade)
672- #12720 `872c921` Avoiding 'file' function name from python2 (jeffrade)
673- #12728 `4ba3d4f` rename TestNode to TestP2PConn in tests (jnewbery)
674- #12746 `2405ce1` Remove unused argument `max_invalid` from `check_estimates(…)` (practicalswift)
675- #12718 `185d484` Require exact match in `assert_start_raises_init_eror` (jnewbery, MarcoFalke)
676- #12076 `6d36f59` Use node.datadir instead of tmpdir in test framework (MarcoFalke)
677- #12772 `b43aba8` ci: Bump travis timeout for make check to 50m (jnewbery)
678- #12806 `18606eb` Fix function names in `feature_blocksdir` (MarcoFalke)
679- #12811 `0d8fc8d` Make summary row bold-red if any test failed and show failed tests at end of table (laanwj)
680- #12790 `490644d` Use blockmaxweight where tests previously had blockmaxsize (conscott)
681- #11773 `f0f9732` Change `feature_block.py` to use BitcoinTestFramework (jnewbery)
682- #12839 `40f4baf` Remove travis checkout depth (laanwj)
683- #11817 `2a09a78` Change `feature_csv_activation.py` to use BitcoinTestFramework (jnewbery)
684- #12284 `fa5825d` Remove assigned but never used local variables. Enable Travis checking for unused local variables (practicalswift)
685- #12719 `9beded5` Add note about test suite naming convention in developer-notes.md (practicalswift)
686- #12861 `c564424` Stop `feature_block.py` from blowing up memory (jnewbery)
687- #12851 `648252e` travis: Run verify-commits only on cron jobs (MarcoFalke)
688- #12853 `2106c4c` Match full plain text by default (MarcoFalke)
689- #11818 `9a2db3b` I accidentally (deliberately) killed it (the ComparisonTestFramework) (jnewbery)
690- #12766 `69310a3` Tidy up REST interface functional tests (romanz)
691- #12849 `83c7533` Add logging in loops in `p2p_sendhears.py` (ccdle12)
692- #12895 `d6f10b2` Add note about test suite name uniqueness requirement to developer notes (practicalswift)
693- #12856 `27278df` Add Metaclass for BitcoinTestFramework (WillAyd)
694- #12918 `6fc5a05` Assert on correct variable (kallewoof)
695- #11878 `a04440f` Add Travis check for duplicate includes (practicalswift)
696- #12917 `cf8073f` Windows fixups for functional tests (MarcoFalke)
697- #12926 `dd1ca9e` Run unit tests in parallel (sipa)
698- #12920 `b1fdfc1` Fix sign for expected values (kallewoof)
699- #12947 `979f598` Wallet hd functional test speedup and clarification (instagibbs)
700- #12993 `0d69921` Remove compatibility code not needed now when we're on Python 3 (practicalswift)
701- #12996 `6a278e0` Remove redundant bytes(…) calls (practicalswift)
702- #12949 `6b46288` Avoid copies of CTransaction (MarcoFalke)
703- #13007 `0d12570` Fix dangling wallet pointer in vpwallets (promag)
704- #13048 `cac6d11` Fix `feature_block` flakiness (jnewbery)
705- #12510 `d5b2e98` Add `rpc_bind` test to default-run tests (laanwj)
706- #13022 `896a9d0` Attach node index to `test_node` AssertionError and print messages (jamesob)
707- #13024 `018c7e5` Add rpcauth pair that generated by rpcauth.py (ken2812221)
708- #13013 `a0079d4` bench: Amend `mempool_eviction` test for witness txs (MarcoFalke)
709- #13051 `e074097` Normalize executable location (MarcoFalke)
710- #13056 `106d929` Make rpcauth.py testable and add unit tests (nixbox)
711- #13073 `a785bc3` add rpcauth-test to `AC_CONFIG_LINKS` to fix out-of-tree make check (laanwj)
712- #12830 `25ad2f7` Clarify address book error messages, add tests (jamesob)
713- #13082 `24106a8` don't test against min relay fee information in `mining_prioritisetransaction.py` (kristapsk)
714- #13003 `8d045a0` Add test for orphan handling (MarcoFalke)
715- #13105 `9e9b48d` Add --failfast option to functional test runner (jamesob)
716- #13130 `3186ad4` Fix race in `rpc_deprecated.py` (jnewbery)
717- #13136 `baf6b4e` Fix flake8 warnings in several wallet functional tests (jnewbery)
718- #13094 `bf9b03d` Add test for 64-bit Windows PE, modify 32-bit test results (ken2812221)
719- #13183 `9458b05` travis: New travis job for `check_docs` steps (glaksmono)
720- #12265 `1834d4d` fundrawtransaction: lock watch-only shared address (kallewoof)
721- #13188 `4a50ec0` Remove unused option --srcdir (MarcoFalke)
722- #12755 `612ba35` Better stderr testing (jnewbery)
723- #13198 `196c5a9` Avoid printing to console during cache creation (sdaftuar)
724- #13075 `cb9bbf7` Remove 'account' API from wallet functional tests (jnewbery)
725- #13221 `ffa86af` travis: Rename the build stage `check_doc` to `lint` (practicalswift)
726- #13205 `3cbd25f` Remove spurious error log in `p2p_segwit.py` (jnewbery)
727- #13291 `536120e` Don't include torcontrol.cpp into the test file (Empact)
728- #13281 `2ac6315` Move linters to test/lint, add readme (MarcoFalke)
729- #13215 `f8a29ca` travis: Build tests on ubuntu 18.04 with docker (ken2812221)
730- #13349 `24f7011` bench: Don't return a bool from main (laanwj)
731- #13347 `87a9d03` travis: Skip cache for lint stage (MarcoFalke)
732- #13355 `0b1c0c4` Fix "gmake check" under OpenBSD 6.3 (probably `*BSD`): Avoid using GNU grep specific regexp handling (practicalswift)
733- #13353 `d4f6dac` Fixup setting of PATH env var (MarcoFalke)
734- #13352 `e24bf1c` Avoid checking reject code for now (MarcoFalke)
735- #13383 `2722a1f` bench: Use non-throwing parsedouble(…) instead of throwing boost::lexical_cast<double>(…) (practicalswift)
736- #13367 `264efdc` Increase includeconf test coverage (MarcoFalke)
737- #13404 `3d3d8ae` speed up of `tx_validationcache_tests` by reusing of CTransaction (lucash-dev)
738- #13421 `531a033` Remove `portseed_offset` from test runner (MarcoFalke)
739- #13440 `5315660` Log as utf-8 (MarcoFalke)
740- #13066 `fa4b906` Migrate verify-commits script to python, run in travis (ken2812221)
741- #13447 `4b1edd3` travis: Increase `travis_wait` time while verifying commits (ken2812221)
742- #13350 `f532d52` Add logging to provide anchor points when debugging p2p_sendheaders (lmanners)
743- #13406 `4382f19` travis: Change mac goal to all deploy (ken2812221)
744- #13457 `b222138` Drop variadic macro (MarcoFalke)
745- #13512 `3a45493` mininode: Expose connection state through `is_connected` (MarcoFalke)
746- #13496 `9ab4c2a` Harden lint-filenames.sh (wodry)
747- #13219 `08516e0` bench: Add block assemble benchmark (MarcoFalke)
748- #13530 `b1dc39d` bench: Add missing pow.h header (laanwj)
749- #12686 `2643fa5` Add -ftrapv to CFLAGS and CXXFLAGS when --enable-debug is used. Enable -ftrapv in Travis (practicalswift)
750- #12882 `d96bdd7` Make `test_bitcoin` pass under ThreadSanitzer (clang). Fix lock-order-inversion (potential deadlock) (practicalswift)
751- #13535 `2328039` `wallet_basic`: Specify minimum required amount for listunspent (MarcoFalke)
752- #13551 `c93c360` Fix incorrect documentation for test case `cuckoocache_hit_rate_ok` (practicalswift)
753- #13563 `b330f3f` bench: Simplify coinselection (promag)
754- #13517 `a6ed99a` Remove need to handle the network thread in tests (MarcoFalke)
755- #13522 `686e97a` Fix `p2p_sendheaders` race (jnewbery)
756- #13467 `3dc2dcf` Make `p2p_segwit` easier to debug (jnewbery)
757- #13598 `0212187` bench: Fix incorrect behaviour in prevector.cpp (AkioNak)
758- #13565 `b05ded1` Fix AreInputsStandard test to reference the proper scriptPubKey (Empact)
759- #13145 `d3dae3d` Use common getPath method to create temp directory in tests (winder)
760- #13645 `2ea7eb6` skip `rpc_zmq` functional test as necessary (jamesob)
761- #13626 `8f1106d` Fix some TODOs in `p2p_segwit` (MarcoFalke)
762- #13138 `8803c91` Remove accounts from `wallet_importprunedfunds.py` (jnewbery)
763- #13663 `cbc9b50` Avoid read/write to default datadir (MarcoFalke)
764- #13682 `f8a32a3` bench: Remove unused variable (practicalswift)
765- #13638 `6fcdb5e` Use `MAX_SCRIPT_ELEMENT_SIZE` from script.py (domob1812)
766- #13687 `9d26b69` travis: Check that ~/.bitcoin is never created (MarcoFalke)
767- #13715 `e1260a7` fixes mininode's P2PConnection sending messages on closing transport (marcoagner)
768- #13729 `aa9429a` travis: Avoid unnecessarily setting env variables on the lint build (Empact)
769- #13747 `ab28b5b` Skip P2PConnection's `is_closing()` check when not available (domob1812)
770- #13650 `7a9bca6` travis: Don't store debug info if --enable-debug is set (ken2812221)
771- #13711 `f98d1e0` bench: Add benchmark for unserialize prevector (AkioNak)
772- #13771 `365384f` travis: Retry to fetch docker image (MarcoFalke)
773- #13806 `4d550ff` Fix `bench/block_assemble` assert failure (jamesob)
774- #13779 `d25079a` travis: Improve readability of travis.yml and log outputs (scravy)
775- #13822 `0fb9c87` bench: Make coinselection output groups pass eligibility filter (achow101)
776- #13247 `e83d82a` Add tests to SingleThreadedSchedulerClient() and document the memory model (skeees)
777- #13811 `660abc1` travis: Run `bench_bitcoin` once (MarcoFalke)
778- #13837 `990e182` Extract `rpc_timewait` as test param (MarcoFalke)
779- #13851 `9c4324d` fix locale for lint-shell (scravy)
780- #13823 `489b51b` quote path in authproxy for external multiwallets (MarcoFalke)
781- #13849 `2b67354` travis: Use only travis jobs: instead of mix of jobs+matrix (scravy)
782- #13859 `2384323` Add emojis to `test_runner` path and wallet filename (MarcoFalke)
783- #13916 `8ac7125` `wait_for_verack` by default (MarcoFalke)
784- #13669 `f66e1c7` Cleanup `create_transaction` implementations (conscott)
785- #13924 `09ada21` Simplify comparison in `rpc_blockchain.py` (domob1812)
786- #13913 `a08533c` Remove redundant checkmempool/checkblockindex `extra_args` (MarcoFalke)
787- #13915 `a04888a` Add test for max number of entries in locator (MarcoFalke)
788- #13867 `1b04b55` Make extended tests pass on native Windows (MarcoFalke)
789- #13944 `0df7a6c` Port usage of deprecated optparse module to argparse module (Kvaciral)
790- #13928 `b8eb0df` blocktools enforce named args for amount (MarcoFalke)
791- #13054 `bffb35f` Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports (practicalswift)
792- #14069 `cf3d7f9` Use assert not `BOOST_CHECK_*` from multithreaded tests (skeees)
793- #14071 `fab0fbe` Stop txindex thread before calling destructor (MarcoFalke)
794
795### Miscellaneous
796- #11909 `8897135` contrib: Replace developer keys with list of pgp fingerprints (MarcoFalke)
797- #12394 `fe53d5f` gitian-builder.sh: fix --setup doc, since lxc is default (Sjors)
798- #12468 `294a766` Add missing newline in init.cpp log message (Aesti)
799- #12308 `dcfe218` contrib: Add support for out-of-tree builds in gen-manpages.sh (laanwj)
800- #12451 `aae64a2` Bump leveldb subtree (MarcoFalke)
801- #12527 `d77b4a7` gitian-build.sh: fix signProg being recognized as two parameters (ken2812221)
802- #12588 `d74b01d` utils: Remove deprecated pyzmq call from python zmq example (kosciej)
803- #10271 `bc67982` Use `std::thread::hardware_concurrency`, instead of Boost, to determine available cores (fanquake)
804- #12097 `14475e2` scripts: Lint-whitespace: use perl instead of grep -p (Sjors)
805- #12098 `17c44b2` scripts: Lint-whitespace: add param to check last n commits (Sjors)
806- #11900 `842f61a` script: Simplify checkminimalpush checks, add safety assert (instagibbs)
807- #12567 `bb98aec` util: Print timestamp strings in logs using iso 8601 formatting (practicalswift)
808- #12572 `d8d9162` script: Lint-whitespace: find errors more easily (AkioNak)
809- #10694 `ae5bcc7` Remove redundant code in MutateTxSign(CMutableTransaction&, const std::string&) (practicalswift)
810- #12659 `3d16f58` Improve Fatal LevelDB Log Messages (eklitzke)
811- #12643 `0f0229d` util: Remove unused `sync_chain` (MarcoFalke)
812- #12102 `7fb8fb4` Apply hardening measures in bitcoind systemd service file (Flowdalic)
813- #12652 `55f490a` bitcoin-cli: Provide a better error message when bitcoind is not running (practicalswift)
814- #12630 `c290508` Provide useful error message if datadir is not writable (murrayn)
815- #11881 `624bee9` Remove Python2 support (jnewbery)
816- #12821 `082e26c` contrib: Remove unused import string (MarcoFalke)
817- #12829 `252c1b0` Python3 fixup (jnewbery)
818- #12822 `ff48f62` Revert 7deba93bdc76616011a9f493cbc203d60084416f and fix expired-key-sigs properly (TheBlueMatt)
819- #12820 `5e53b80` contrib: Fix check-doc script regexes (MarcoFalke)
820- #12713 `4490871` Track negated options in the option parser (eklitzke)
821- #12708 `b2e5fe8` Make verify-commits.sh test that merges are clean (sipa)
822- #12891 `3190785` logging: Add lint-logs.sh to check for newline termination (jnewbery)
823- #12923 `a7cbe38` util: Pass `pthread_self()` to `pthread_setschedparam` instead of 0 (laanwj)
824- #12871 `fb17fae` Add shell script linting: Check for shellcheck warnings in shell scripts (practicalswift)
825- #12970 `5df84de` logging: Bypass timestamp formatting when not logging (theuni)
826- #12987 `fe8fa22` tests/tools: Enable additional Python flake8 rules for automatic linting via Travis (practicalswift)
827- #12972 `0782508` Add python3 script shebang lint (ken2812221)
828- #13004 `58bbc55` Print to console by default when not run with -daemon (practicalswift)
829- #13039 `8b4081a` Add logging and error handling for file syncing (laanwj)
830- #13020 `4741ca5` Consistently log CValidationState on call failure (Empact)
831- #13031 `826acc9` Fix for utiltime to compile with msvc (sipsorcery)
832- #13119 `81743b5` Remove script to clean up datadirs (MarcoFalke)
833- #12954 `5a66642` util: Refactor logging code into a global object (jimpo)
834- #12769 `35eb9d6` Add systemd service to bitcoind in debian package (ghost)
835- #13146 `0bc980b` rpcauth: Make it possible to provide a custom password (laanwj)
836- #13148 `b62b437` logging: Fix potential use-after-free in logprintstr(…) (practicalswift)
837- #13214 `0612d96` Enable Travis checking for two Python linting rules we are currently not violating (practicalswift)
838- #13197 `6826989` util: Warn about ignored recursive -includeconf calls (kallewoof)
839- #13176 `d9ebb63` Improve CRollingBloomFilter performance: replace modulus with FastMod (martinus)
840- #13228 `d792e47` Add script to detect circular dependencies between source modules (sipa)
841- #13320 `e08c130` Ensure gitian-build.sh uses bash (jhfrontz)
842- #13301 `e4082d5` lint: Add linter to error on `#include <*.cpp>` (Empact)
843- #13374 `56f6936` utils and libraries: checking for bitcoin address in translations (kaplanmaxe)
844- #13230 `7c32b41` Simplify include analysis by enforcing the developer guide's include syntax (practicalswift)
845- #13450 `32bf4c6` Add linter: Enforce the source code file naming convention described in the developer notes (practicalswift)
846- #13479 `fa2ea37` contrib: Fix cve-2018-12356 by hardening the regex (loganaden)
847- #13448 `a90ca40` Add linter: Make sure we explicitly open all text files using UTF-8 encoding in Python (practicalswift)
848- #13494 `d67eff8` Follow-up to #13454: Fix broken build by exporting `LC_ALL=C` (practicalswift)
849- #13510 `03f3925` Scripts and tools: Obsolete #!/bin/bash shebang (DesWurstes)
850- #13577 `c9eb8d1` logging: Avoid nstart may be used uninitialized in appinitmain warning (mruddy)
851- #13603 `453ae5e` bitcoin-tx: Stricter check for valid integers (domob1812)
852- #13118 `c05c93c` RPCAuth Detection in Logs (Linrono)
853- #13647 `4027ec1` Scripts and tools: Fix `BIND_NOW` check in security-check.py (conradoplg)
854- #13692 `f5d166a` contrib: Clone core repo in gitian-build (MarcoFalke)
855- #13699 `4c6d1b9` contrib: Correct version check (kallewoof)
856- #13695 `dcc0cff` lint: Add linter for circular dependencies (Empact)
857- #13733 `0d1ebf4` utils: Refactor argsmanager a little (AtsukiTak)
858- #13714 `29b4ee6` contrib: Add lxc network setup for bionic host (ken2812221)
859- #13764 `f8685f4` contrib: Fix test-security-check fail in ubuntu 18.04 (ken2812221)
860- #13809 `77168f7` contrib: Remove debian and rpm subfolder (MarcoFalke)
861- #13799 `230652c` Ignore unknown config file options; warn instead of error (sipa)
862- #13894 `df9f712` shutdown: Stop threads before resetting ptrs (MarcoFalke)
863- #13925 `71dec5c` Merge leveldb subtree (MarcoFalke)
864- #13939 `ef86f26` lint: Make format string linter understand basic template parameter syntax (practicalswift)
865- #14105 `eb202ea` util: Report parse errors in configuration file (laanwj)
866- #12604 `9903537` Add DynamicMemoryUsage() to CDBWrapper to estimate LevelDB memory use (eklitzke)
867- #12495 `047865e` Increase LevelDB `max_open_files` (eklitzke)
868- #12784 `e80716d` Fix bug in memory usage calculation (unintended integer division) (practicalswift)
869- #12618 `becd8dd` Set `SCHED_BATCH` priority on the loadblk thread (eklitzke)
870- #12854 `5ca1509` Add P2P, Network, and Qt categories to the desktop icon (luke-jr)
871- #11862 `4366f61` Network specific conf sections (ajtowns)
872- #13441 `4a7e64f` Prevent shared conf files from failing with different available options in different binaries (achow101)
873- #13471 `5eca4e8` For AVX2 code, also check for AVX, XSAVE, and OS support (sipa)
874- #13503 `c655b2c` Document FreeBSD quirk. Fix FreeBSD build: Use std::min<int>(…) to allow for compilation under certain FreeBSD versions (practicalswift)
875- #13725 `07ce278` Fix bitcoin-cli --version (Empact)
876
877### Documentation
878- #12306 `216f9a4` Improvements to UNIX documentation (axvr)
879- #12309 `895fbd7` Explain how to update chainTxData in release process (laanwj)
880- #12317 `85123be` Document method for reviewers to verify chainTxData (jnewbery)
881- #12331 `d32528e` Properly alphabetize output of CLI --help option (murrayn)
882- #12322 `c345148` Remove step making cloned repository world-writable for Windows build (murrayn)
883- #12354 `b264528` add gpg key for fivepiece (fivepiece)
884- #11761 `89005dd` initial QT documentation (Sjors)
885- #12232 `fdc2188` Improve "Turn Windows Features On or Off" step (MCFX2)
886- #12487 `4528f74` init: Remove translation for `-blockmaxsize` option help (laanwj)
887- #12546 `a4a5fc7` Minor improvements to Compatibility Notes (randolf)
888- #12434 `21e2670` dev-notes: Members should be initialized (MarcoFalke)
889- #12452 `71f56da` clarified systemd installation instructions in init.md for Ubuntu users (DaveFromBinary)
890- #12615 `1f93491` allow for SIGNER containing spaces (ken2812221)
891- #12603 `85424d7` PeerLogicValidation interface (jamesob)
892- #12581 `12ac2f0` Mention configure without wallet in FreeBSD instructions (dbolser)
893- #12619 `8a709fb` Give hint about gitian not able to download (kallewoof)
894- #12668 `de2fcaa` do update before fetching packages in WSL build guide (nvercamm)
895- #12586 `e7721e6` Update osx brew install instruction (fanquake)
896- #12760 `7466a26` Improve documentation on standard communication channels (jimpo)
897- #12797 `0415b1e` init: Fix help message for checkblockindex (MarcoFalke)
898- #12800 `2d97611` Add note about our preference for scoped enumerations ("enum class") (practicalswift)
899- #12798 `174d016` Refer to witness reserved value as spec. in the BIP (MarcoFalke)
900- #12759 `d3908e2` Improve formatting of developer notes (eklitzke)
901- #12877 `2b54155` Use bitcoind in Tor documentation (knoxcard)
902- #12896 `b15485e` Fix conflicting statements about initialization in developer notes (practicalswift)
903- #12850 `319991d` add qrencode to brew install instructions (buddilla)
904- #12007 `cd8e45b` Clarify the meaning of fee delta not being a fee rate in prioritisetransaction RPC (honzik666)
905- #12927 `06ead15` fixed link, replaced QT with Qt (trulex)
906- #12852 `ebd786b` devtools: Setup ots git integration (MarcoFalke)
907- #12933 `3cf76c2` Refine header include policy (MarcoFalke)
908- #12951 `6df0c6c` Fix comment in FindForkInGlobalIndex (jamesob)
909- #12982 `a63b4e3` Fix inconsistent namespace formatting guidelines (ryanofsky)
910- #13026 `9b3a67e` Fix include comment in src/interfaces/wallet.h (promag)
911- #13012 `d1e3c5e` Add comments for chainparams.h, validation.cpp (jamesob)
912- #13064 `569e381` List support for BIP173 in bips.md (sipa)
913- #12997 `646b7f6` build-windows: Switch to Artful, since Zesty is EOL (MarcoFalke)
914- #12384 `c5f7efe` Add version footnote to tor.md (Willtech)
915- #13165 `627c376` Mention good first issue list in CONTRIBUTING.md (fanquake)
916- #13295 `fb77310` Update OpenBSD build instructions for OpenBSD 6.3 (practicalswift)
917- #13340 `3a8e3f4` remove leftover check-doc documentation (fanquake)
918- #13346 `60f0358` update bitcoin-dot-org links in release-process.md (fanquake)
919- #13372 `f014933` split FreeBSD build instructions out of build-unix.md (steverusso)
920- #13366 `861de3b` Rename “OS X” to the newer “macOS” convention (giulio92)
921- #13369 `f8bcef3` update transifex doc link (mess110)
922- #13312 `b22115d` Add a note about the source code filename naming convention (practicalswift)
923- #13460 `1939536` Remove note to install all boost dev packages (MarcoFalke)
924- #13476 `9501938` Fix incorrect shell quoting in FreeBSD build instructions (murrayn)
925- #13402 `43fa355` Document validationinterace callback blocking deadlock potential (TheBlueMatt)
926- #13488 `d6cf4bd` Improve readability of "Squashing commits" (wodry)
927- #13531 `ee02deb` Clarify that mempool txiter is `const_iterator` (MarcoFalke)
928- #13418 `01f9098` More precise explanation of parameter onlynet (wodry)
929- #13592 `1756cb4` Modify policy to not translate command-line help (ken2812221)
930- #13588 `b77c38e` Improve doc of options addnode, connect, seednode (wodry)
931- #13614 `17e9106` Update command line help for -printtoconsole and -debuglogfile (satwo, fanquake)
932- #13605 `8cc048e` corrected text to reflect new(er) process of specifying fingerprints (jhfrontz)
933- #13481 `b641f60` Rewrite some validation docs as lock annotations (MarcoFalke)
934- #13680 `30640f8` Remove outdated comment about miner ignoring CPFP (jamesob)
935- #13625 `7146672` Add release notes for -printtoconsole and -debuglogfile changes (satwo)
936- #13718 `f7f574d` Specify preferred Python string formatting technique (masonicboom)
937- #12764 `10b9a81` Remove field in getblocktemplate help that has never been used (conscott)
938- #13742 `d2186b3` Adjust bitcoincore.org links (MarcoFalke)
939- #13706 `94dd89e` Minor improvements to release-process.md (MitchellCash)
940- #13775 `ef4fac0` Remove newlines from error message (practicalswift)
941- #13803 `feb7dd9` add note to contributor docs about warranted PR's (kallewoof)
942- #13814 `67af7ef` Add BIP174 to list of implemented BIPs (sipa)
943- #13835 `c1cba35` Fix memory consistency model in comment (skeees)
944- #13824 `aa30e4b` Remove outdated net comment (MarcoFalke)
945- #13853 `317477a` correct versions in dependencies.md (fanquake)
946- #13872 `37ab117` Reformat -help output for help2man (real-or-random)
947- #13717 `8c3c402` Link to python style guidelines from developer notes (masonicboom)
948- #13895 `1cd5f2c` fix GetWarnings docs to reflect behavior (Empact)
949- #13911 `3e3a50a` Revert translated string change, clarify wallet log messages (PierreRochard)
950- #13908 `d6faea4` upgrade rescan time warning from minutes to >1 hour (masonicboom)
951- #13905 `73a09b4` fixed bitcoin-cli -help output for help2man (hebasto)
952- #14100 `2936dbc` Change documentation for =0 for non-boolean options (laanwj)
953- #14096 `465a583` Add reference documentation for descriptors language (sipa)
954- #12757 `0c5f67b` Clarify include guard naming convention (practicalswift)
955- #13844 `d3325b0` Correct the help output for `-prune` (hebasto)
956
957Credits
958=======
959
960Thanks to everyone who directly contributed to this release:
961
962- 251
963- 532479301
964- Aaron Clauson
965- Akio Nakamura
966- Akira Takizawa
967- Alex Morcos
968- Alex Vear
969- Alexey Ivanov
970- Alin Rus
971- Andrea Comand
972- Andrew Chow
973- Anthony Towns
974- AtsukiTak
975- Ben Woosley
976- Bernhard M. Wiedemann
977- Brandon Ruggles
978- buddilla
979- ccdle12
980- Chris Moore
981- Chun Kuan Lee
982- Clem Taylor
983- Conor Scott
984- Conrado Gouvea
985- Cory Fields
986- Cristian Mircea Messel
987- ctp-tsteenholdt
988- Damian Williamson
989- Dan Bolser
990- Daniel Kraft
991- Darko Janković
992- DaveFromBinary
993- David A. Harding
994- DesWurstes
995- Dimitris Apostolou
996- donaloconnor
997- Douglas Roark
998- DrahtBot
999- Drew Rasmussen
1000- e0
1001- Ernest Hemingway
1002- Ethan Heilman
1003- Evan Klitzke
1004- fanquake
1005- Felix Wolfsteller
1006- fivepiece
1007- Florian Schmaus
1008- Fuzzbawls
1009- Gabriel Davidian
1010- Giulio Lombardo
1011- Gleb
1012- Grady Laksmono
1013- GreatSock
1014- Gregory Maxwell
1015- Gregory Sanders
1016- Hennadii Stepanov
1017- Henrik Jonsson
1018- Indospace.io
1019- James O'Beirne
1020- Jan Čapek
1021- Jeff Frontz
1022- Jeff Rade
1023- Jeremy Rubin
1024- JeremyRand
1025- Jesse Cohen
1026- Jim Posen
1027- joemphilips
1028- John Bampton
1029- John Newbery
1030- johnlow95
1031- Johnson Lau
1032- Jonas Nick
1033- Jonas Schnelli
1034- João Barbosa
1035- Jorge Timón
1036- Josh Hartshorn
1037- Julian Fleischer
1038- kallewoof
1039- Karel Bilek
1040- Karl-Johan Alm
1041- Ken Lee
1042- Kevin Pan
1043- Kosta Zertsekel
1044- Kristaps Kaupe
1045- Kvaciral
1046- Lawrence Nahum
1047- Linrono
1048- lmanners
1049- Loganaden Velvindron
1050- Lowell Manners
1051- lucash.dev@gmail.com
1052- Luke Dashjr
1053- lutangar
1054- Marcin Jachymiak
1055- marcoagner
1056- MarcoFalke
1057- Mark Erhardt
1058- Mark Friedenbach
1059- Martin Ankerl
1060- Mason Simon
1061- Matt Corallo
1062- Matteo Sumberaz
1063- Max Kaplan
1064- MeshCollider
1065- Michał Zabielski
1066- Mitchell Cash
1067- mruddy
1068- mryandao
1069- murrayn
1070- Nick Vercammen
1071- Nicolas Dorier
1072- Nikolay Mitev
1073- okayplanet
1074- Pierre Rochard
1075- Pieter Wuille
1076- practicalswift
1077- Qasim Javed
1078- Randolf Richardson
1079- Richard Kiss
1080- Roman Zeyde
1081- Russell Yanofsky
1082- Samuel B. Atwood
1083- Sebastian Kung
1084- Sjors Provoost
1085- Steve Lee
1086- steverusso
1087- Suhas Daftuar
1088- Tamas Blummer
1089- TheCharlatan
1090- Thomas Kerin
1091- Thomas Snider
1092- Tim Ruffing
1093- Varunram
1094- Vasil Dimov
1095- Will Ayd
1096- William Robinson
1097- winder
1098- Wladimir J. van der Laan
1099- wodry
1100
1101And to those that reported security issues:
1102
1103- awemany (for CVE-2018-17144, previously credited as "anonymous reporter")
1104
1105As well as everyone that helped translating on [Transifex](https://www.transifex.com/projects/p/bitcoin/).
1106