10.20.0 Release Notes
2====================
3
4Bitcoin Core version 0.20.0 is now available from:
5
6  <https://bitcoincore.org/bin/bitcoin-core-0.20.0/>
7
8This release includes new features, various bug fixes and performance
9improvements, as well as updated translations.
10
11Please report bugs using the issue tracker at GitHub:
12
13  <https://github.com/bitcoin/bitcoin/issues>
14
15To receive security and update notifications, please subscribe to:
16
17  <https://bitcoincore.org/en/list/announcements/join/>
18
19How to Upgrade
20==============
21
22If you are running an older version, shut it down. Wait until it has completely
23shut down (which might take a few minutes in some cases), then run the
24installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on Mac)
25or `bitcoind`/`bitcoin-qt` (on Linux).
26
27Upgrading directly from a version of Bitcoin Core that has reached its EOL is
28possible, but it might take some time if the data directory needs to be migrated. Old
29wallet versions of Bitcoin Core are generally supported.
30
31Compatibility
32==============
33
34Bitcoin Core is supported and extensively tested on operating systems
35using the Linux kernel, macOS 10.12+, and Windows 7 and newer.  Bitcoin
36Core should also work on most other Unix-like systems but is not as
37frequently tested on them.  It is not recommended to use Bitcoin Core on
38unsupported systems.
39
40From Bitcoin Core 0.20.0 onwards, macOS versions earlier than 10.12 are no
41longer supported. Additionally, Bitcoin Core does not yet change appearance
42when macOS "dark mode" is activated.
43
44Known Bugs
45==========
46
47The process for generating the source code release ("tarball") has changed in an
48effort to make it more complete, however, there are a few regressions in
49this release:
50
51- The generated `configure` script is currently missing, and you will need to
52  install autotools and run `./autogen.sh` before you can run
53  `./configure`. This is the same as when checking out from git.
54
55- Instead of running `make` simply, you should instead run
56  `BITCOIN_GENBUILD_NO_GIT=1 make`.
57
58Notable changes
59===============
60
61P2P and network changes
62-----------------------
63
64#### Removal of BIP61 reject network messages from Bitcoin Core
65
66The `-enablebip61` command line option to enable BIP61 has been removed.
67(#17004)
68
69This feature has been disabled by default since Bitcoin Core version 0.18.0.
70Nodes on the network can not generally be trusted to send valid messages
71(including reject messages), so this should only ever be used when
72connected to a trusted node.  Please use the alternatives recommended
73below if you rely on this removed feature:
74
75- Testing or debugging of implementations of the Bitcoin P2P network protocol
76  should be done by inspecting the log messages that are produced by a recent
77  version of Bitcoin Core. Bitcoin Core logs debug messages
78  (`-debug=<category>`) to a stream (`-printtoconsole`) or to a file
79  (`-debuglogfile=<debug.log>`).
80
81- Testing the validity of a block can be achieved by specific RPCs:
82
83  - `submitblock`
84
85  - `getblocktemplate` with `'mode'` set to `'proposal'` for blocks with
86    potentially invalid POW
87
88- Testing the validity of a transaction can be achieved by specific RPCs:
89
90  - `sendrawtransaction`
91
92  - `testmempoolaccept`
93
94- Wallets should not assume a transaction has propagated to the network
95  just because there are no reject messages.  Instead, listen for the
96  transaction to be announced by other peers on the network.  Wallets
97  should not assume a lack of reject messages means a transaction pays
98  an appropriate fee.  Instead, set fees using fee estimation and use
99  replace-by-fee to increase a transaction's fee if it hasn't confirmed
100  within the desired amount of time.
101
102The removal of BIP61 reject message support also has the following minor RPC
103and logging implications:
104
105- `testmempoolaccept` and `sendrawtransaction` no longer return the P2P reject
106  code when a transaction is not accepted to the mempool. They still return the
107  verbal reject reason.
108
109- Log messages that previously reported the reject code when a transaction was
110  not accepted to the mempool now no longer report the reject code. The reason
111  for rejection is still reported.
112
113Updated RPCs
114------------
115
116- The RPCs which accept descriptors now accept the new `sortedmulti(...)` descriptor
117  type which supports multisig scripts where the public keys are sorted
118  lexicographically in the resulting script.  (#17056)
119
120- The `walletprocesspsbt` and `walletcreatefundedpsbt` RPCs now include
121  BIP32 derivation paths by default for public keys if we know them.
122  This can be disabled by setting the `bip32derivs` parameter to
123  `false`.  (#17264)
124
125- The `bumpfee` RPC's parameter `totalFee`, which was deprecated in
126  0.19, has been removed.  (#18312)
127
128- The `bumpfee` RPC will return a PSBT when used with wallets that have
129  private keys disabled.  (#16373)
130
131- The `getpeerinfo` RPC now includes a `mapped_as` field to indicate the
132  mapped Autonomous System used for diversifying peer selection. See the
133  `-asmap` configuration option described below in _New Settings_.  (#16702)
134
135- The `createmultisig` and `addmultisigaddress` RPCs now return an
136  output script descriptor for the newly created address.  (#18032)
137
138Build System
139------------
140
141- OpenSSL is no longer used by Bitcoin Core.  (#17265)
142
143- BIP70 support has been fully removed from Bitcoin Core. The
144  `--enable-bip70` option remains, but it will throw an error during configure.
145  (#17165)
146
147- glibc 2.17 or greater is now required to run the release binaries. This
148  retains compatibility with RHEL 7, CentOS 7, Debian 8 and Ubuntu 14.04 LTS. (#17538)
149
150- The source code archives that are provided with gitian builds no longer contain
151  any autotools artifacts. Therefore, to build from such source, a user
152  should run the `./autogen.sh` script from the root of the unpacked archive.
153  This implies that `autotools` and other required packages are installed on the
154  user's system. (#18331)
155
156New settings
157------------
158
159- New `rpcwhitelist` and `rpcwhitelistdefault` configuration parameters
160  allow giving certain RPC users permissions to only some RPC calls.
161  (#12763)
162
163- A new `-asmap` configuration option has been added to diversify the
164  node's network connections by mapping IP addresses Autonomous System
165  Numbers (ASNs) and then limiting the number of connections made to any
166  single ASN.  See [issue #16599](https://github.com/bitcoin/bitcoin/issues/16599),
167  [PR #16702](https://github.com/bitcoin/bitcoin/pull/16702), and the
168  `bitcoind help` for more information.  This option is experimental and
169  subject to removal or breaking changes in future releases, so the
170  legacy /16 prefix mapping of IP addresses remains the default.  (#16702)
171
172Updated settings
173----------------
174
175- All custom settings configured when Bitcoin Core starts are now
176  written to the `debug.log` file to assist troubleshooting.  (#16115)
177
178- Importing blocks upon startup via the `bootstrap.dat` file no longer
179  occurs by default. The file must now be specified with
180  `-loadblock=<file>`.  (#17044)
181
182- The `-debug=db` logging category has been renamed to
183  `-debug=walletdb` to distinguish it from `coindb`.  The `-debug=db`
184  option has been deprecated and will be removed in the next major
185  release.  (#17410)
186
187- The `-walletnotify` configuration parameter will now replace any `%w`
188  in its argument with the name of the wallet generating the
189  notification.  This is not supported on Windows. (#13339)
190
191Removed settings
192----------------
193
194- The `-whitelistforcerelay` configuration parameter has been removed after
195  it was discovered that it was rendered ineffective in version 0.13 and
196  hasn't actually been supported for almost four years.  (#17985)
197
198GUI changes
199-----------
200
201- The "Start Bitcoin Core on system login" option has been removed on macOS.
202  (#17567)
203
204- In the Peers window, the details for a peer now displays a `Mapped AS`
205  field to indicate the mapped Autonomous System used for diversifying
206  peer selection. See the `-asmap` configuration option in _New
207  Settings_, above.  (#18402)
208
209- A "known bug" [announced](https://bitcoincore.org/en/releases/0.18.0/#wallet-gui)
210  in the release notes of version 0.18 has been fixed.  The issue
211  affected anyone who simultaneously used multiple Bitcoin Core wallets
212  and the GUI coin control feature. (#18894)
213
214- For watch-only wallets, creating a new transaction in the Send screen
215  or fee bumping an existing transaction in the Transactions screen will
216  automatically copy a Partially-Signed Bitcoin Transaction (PSBT) to
217  the system clipboard.  This can then be pasted into an external
218  program such as [HWI](https://github.com/bitcoin-core/HWI) for
219  signing.  Future versions of Bitcoin Core should support a GUI option
220  for finalizing and broadcasting PSBTs, but for now the debug console
221  may be used with the `finalizepsbt` and `sendrawtransaction` RPCs.
222  (#16944, #17492)
223
224Wallet
225------
226
227- The wallet now by default uses bech32 addresses when using RPC, and
228  creates native segwit change outputs.  (#16884)
229
230- The way that output trust was computed has been fixed, which affects
231  confirmed/unconfirmed balance status and coin selection.  (#16766)
232
233- The `gettransaction`, `listtransactions` and `listsinceblock` RPC
234  responses now also include the height of the block that contains the
235  wallet transaction, if any.  (#17437)
236
237- The `getaddressinfo` RPC has had its `label` field deprecated
238  (re-enable for this release using the configuration parameter
239  `-deprecatedrpc=label`).  The `labels` field is altered from returning
240  JSON objects to returning a JSON array of label names (re-enable
241  previous behavior for this release using the configuration parameter
242  `-deprecatedrpc=labelspurpose`).  Backwards compatibility using the
243  deprecated configuration parameters is expected to be dropped in the
244  0.21 release.  (#17585, #17578)
245
246Documentation changes
247---------------------
248
249- Bitcoin Core's automatically-generated source code documentation is
250  now available at https://doxygen.bitcoincore.org.  (#17596)
251
252Low-level changes
253=================
254
255Utilities
256---------
257
258- The `bitcoin-cli` utility used with the `-getinfo` parameter now
259  returns a `headers` field with the number of downloaded block headers
260  on the best headers chain (similar to the `blocks` field that is also
261  returned) and a `verificationprogress` field that estimates how much
262  of the best block chain has been synced by the local node.  The
263  information returned no longer includes the `protocolversion`,
264  `walletversion`, and `keypoololdest` fields.  (#17302, #17650)
265
266- The `bitcoin-cli` utility now accepts a `-stdinwalletpassphrase`
267  parameter that can be used when calling the `walletpassphrase` and
268  `walletpassphrasechange` RPCs to read the passphrase from standard
269  input without echoing it to the terminal, improving security against
270  anyone who can look at your screen.  The existing `-stdinrpcpass`
271  parameter is also updated to not echo the passphrase. (#13716)
272
273Command line
274------------
275
276- Command line options prefixed with main/test/regtest network names like
277  `-main.port=8333` `-test.server=1` previously were allowed but ignored. Now
278  they trigger "Invalid parameter" errors on startup. (#17482)
279
280New RPCs
281--------
282
283- The `dumptxoutset` RPC outputs a serialized snapshot of the current
284  UTXO set.  A script is provided in the `contrib/devtools` directory
285  for generating a snapshot of the UTXO set at a particular block
286  height.  (#16899)
287
288- The `generatetodescriptor` RPC allows testers using regtest mode to
289  generate blocks that pay an arbitrary output script descriptor.
290  (#16943)
291
292Updated RPCs
293------------
294
295- The `verifychain` RPC default values are now static instead of
296  depending on the command line options or configuration file
297  (`-checklevel`, and `-checkblocks`). Users can pass in the RPC
298  arguments explicitly when they don't want to rely on the default
299  values. (#18541)
300
301- The `getblockchaininfo` RPC's `verificationprogress` field will no
302  longer report values higher than 1.  Previously it would occasionally
303  report the chain was more than 100% verified.  (#17328)
304
305Tests
306-----
307
308- It is now an error to use an unqualified `walletdir=path` setting in
309  the config file if running on testnet or regtest networks. The setting
310  now needs to be qualified as `chain.walletdir=path` or placed in the
311  appropriate `[chain]` section. (#17447)
312
313- `-fallbackfee` was 0 (disabled) by default for the main chain, but
314  0.0002 by default for the test chains. Now it is 0 by default for all
315  chains. Testnet and regtest users will have to add
316  `fallbackfee=0.0002` to their configuration if they weren't setting it
317  and they want it to keep working like before. (#16524)
318
319Build system
320------------
321
322- Support is provided for building with the Android Native Development
323  Kit (NDK).  (#16110)
324
3250.20.0 change log
326=================
327
328### Mining
329- #18742 miner: Avoid stack-use-after-return in validationinterface (MarcoFalke)
330
331### Block and transaction handling
332- #15283 log: Fix UB with bench on genesis block (instagibbs)
333- #16507 feefilter: Compute the absolute fee rather than stored rate (instagibbs)
334- #16688 log: Add validation interface logging (jkczyz)
335- #16805 log: Add timing information to FlushStateToDisk() (jamesob)
336- #16902 O(1) `OP_IF/NOTIF/ELSE/ENDIF` script implementation (sipa)
337- #16945 introduce CChainState::GetCoinsCacheSizeState (jamesob)
338- #16974 Walk pindexBestHeader back to ChainActive().Tip() if it is invalid (TheBlueMatt)
339- #17004 Remove REJECT code from CValidationState (jnewbery)
340- #17080 Explain why `fCheckDuplicateInputs` can not be skipped and remove it (MarcoFalke)
341- #17328 GuessVerificationProgress: cap the ratio to 1 (darosior)
342- #17399 Templatize ValidationState instead of subclassing (jkczyz)
343- #17407 node: Add reference to mempool in NodeContext (MarcoFalke)
344- #17708 prevector: Avoid misaligned member accesses (ajtowns)
345- #17850,#17896,#17957,#18021,#18021,#18112 Serialization improvements (sipa)
346- #17925 Improve UpdateTransactionsFromBlock with Epochs (JeremyRubin)
347- #18002 Abstract out script execution out of `VerifyWitnessProgram()` (sipa)
348- #18388 Make VerifyWitnessProgram use a Span stack (sipa)
349- #18433 serialization: prevent int overflow for big Coin::nHeight (pierreN)
350- #18500 chainparams: Bump assumed valid hash (MarcoFalke)
351- #18551 Do not clear validationinterface entries being executed (sipa)
352
353### P2P protocol and network code
354- #15437 Remove BIP61 reject messages (MarcoFalke)
355- #16702 Supply and use asmap to improve IP bucketing in addrman (naumenkogs)
356- #16851 Continue relaying transactions after they expire from mapRelay (ajtowns)
357- #17164 Avoid allocating memory for addrKnown where we don't need it (naumenkogs)
358- #17243 tools: add PoissonNextSend method that returns mockable time (amitiuttarwar)
359- #17251 SocketHandler logs peer id for close and disconnect (Sjors)
360- #17573 Seed RNG with precision timestamps on receipt of net messages (TheBlueMatt)
361- #17624 Fix an uninitialized read in ProcessMessage(…, "tx", …) when receiving a transaction we already have (practicalswift)
362- #17754 Don't allow resolving of std::string with embedded NUL characters. Add tests (practicalswift)
363- #17758 Fix CNetAddr::IsRFC2544 comment + tests (tynes)
364- #17812 config, net, test: Asmap feature refinements and functional tests (jonatack)
365- #17951 Use rolling bloom filter of recent block txs for AlreadyHave() check (sdaftuar)
366- #17985 Remove forcerelay of rejected txs (MarcoFalke)
367- #18023 Fix some asmap issues (sipa)
368- #18054 Reference instead of copy in BlockConnected range loop (jonatack)
369- #18376 Fix use-after-free in tests (vasild)
370- #18454 Make addr relay mockable, add test (MarcoFalke)
371- #18458 Add missing `cs_vNodes` lock (MarcoFalke)
372- #18506 Hardcoded seeds update for 0.20 (laanwj)
373- #18808 Drop unknown types in getdata (jnewbery)
374- #18962 Only send a getheaders for one block in an INV (jnewbery)
375
376### Wallet
377- #13339 Replace %w by wallet name in -walletnotify script (promag)
378- #15931 Remove GetDepthInMainChain dependency on locked chain interface (ariard)
379- #16373 bumpfee: Return PSBT when wallet has privkeys disabled (instagibbs)
380- #16524 Disable -fallbackfee by default (jtimon)
381- #16766 Make IsTrusted scan parents recursively (JeremyRubin)
382- #16884 Change default address type to bech32 (instagibbs)
383- #16911 Only check the hash of transactions loaded from disk (achow101)
384- #16923 Handle duplicate fileid exception (promag)
385- #17056 descriptors: Introduce sortedmulti descriptor (achow101)
386- #17070 Avoid showing GUI popups on RPC errors (MarcoFalke)
387- #17138 Remove wallet access to some node arguments (jnewbery)
388- #17237 LearnRelatedScripts only if KeepDestination (promag)
389- #17260 Split some CWallet functions into new LegacyScriptPubKeyMan (achow101)
390- #17261 Make ScriptPubKeyMan an actual interface and the wallet to have multiple (achow101)
391- #17290 Enable BnB coin selection for preset inputs and subtract fee from outputs (achow101)
392- #17373 Various fixes and cleanup to keypool handling in LegacyScriptPubKeyMan and CWallet (achow101)
393- #17410 Rename `db` log category to `walletdb` (like `coindb`) (laanwj)
394- #17444 Avoid showing GUI popups on RPC errors (take 2) (MarcoFalke)
395- #17447 Make -walletdir network only (promag)
396- #17537 Cleanup and move opportunistic and superfluous TopUp()s (achow101)
397- #17553 Remove out of date comments for CalculateMaximumSignedTxSize (instagibbs)
398- #17568 Fix when sufficient preset inputs and subtractFeeFromOutputs (achow101)
399- #17677 Activate watchonly wallet behavior for LegacySPKM only (instagibbs)
400- #17719 Document better -keypool as a look-ahead safety mechanism (ariard)
401- #17843 Reset reused transactions cache (fjahr)
402- #17889 Improve CWallet:MarkDestinationsDirty (promag)
403- #18034 Get the OutputType for a descriptor (achow101)
404- #18067 Improve LegacyScriptPubKeyMan::CanProvide script recognition (ryanofsky)
405- #18115 Pass in transactions and messages for signing instead of exporting the private keys (achow101)
406- #18192,#18546 Bugfix: Wallet: Safely deal with change in the address book (luke-jr)
407- #18204 descriptors: Improve descriptor cache and cache xpubs (achow101)
408- #18274 rpc/wallet: Initialize nFeeRequired to avoid using garbage value on failure (kallewoof)
409- #18312 Remove deprecated fee bumping by totalFee (jonatack)
410- #18338 Fix wallet unload race condition (promag)
411
412### RPC and other APIs
413- #12763 Add RPC Whitelist Feature from #12248 (JeremyRubin)
414- #13716 cli: `-stdinwalletpassphrase` and non-echo stdin passwords (kallewoof)
415- #16689 Add missing fields to wallet rpc help output (ariard)
416- #16821 Fix bug where duplicate PSBT keys are accepted (erasmospunk)
417- #16899 UTXO snapshot creation (dumptxoutset)
418- #17156 psbt: Check that various indexes and amounts are within bounds (achow101)
419- #17264 Set default bip32derivs to true for psbt methods (Sjors)
420- #17283 improve getaddressinfo test coverage, help, code docs (jonatack)
421- #17302 cli: Add "headers" and "verificationprogress" to -getinfo (laanwj)
422- #17318 replace asserts in RPC code with `CHECK_NONFATAL` and add linter (adamjonas)
423- #17437 Expose block height of wallet transactions (promag)
424- #17519 Remove unused `COINBASE_FLAGS` (narula)
425- #17578 Simplify getaddressinfo labels, deprecate previous behavior (jonatack)
426- #17585 deprecate getaddressinfo label (jonatack)
427- #17746 Remove vector copy from listtransactions (promag)
428- #17809 Auto-format RPCResult (MarcoFalke)
429- #18032 Output a descriptor in createmultisig and addmultisigaddress (achow101)
430- #18122 Update validateaddress RPCExamples to bech32 (theStack)
431- #18208 Change RPCExamples to bech32 (yusufsahinhamza)
432- #18268 Remove redundant types from descriptions (docallag)
433- #18346 Document an RPCResult for all calls; Enforce at compile time (MarcoFalke)
434- #18396 Add missing HelpExampleRpc for getblockfilter (theStack)
435- #18398 Fix broken RPCExamples for waitforblock(height) (theStack)
436- #18444 Remove final comma for last entry of fixed-size arrays/objects in RPCResult (luke-jr)
437- #18459 Remove unused getbalances() code (jonatack)
438- #18484 Correctly compute redeemScript from witnessScript for signrawtransaction (achow101)
439- #18487 Fix rpcRunLater race in walletpassphrase (promag)
440- #18499 Make rpc documentation not depend on call-time rpc args (MarcoFalke)
441- #18532 Avoid initialization-order-fiasco on static CRPCCommand tables (MarcoFalke)
442- #18541 Make verifychain default values static, not depend on global args (MarcoFalke)
443- #18809 Do not advertise dumptxoutset as a way to flush the chainstate (MarcoFalke)
444- #18814 Relock wallet only if most recent callback (promag)
445
446### GUI
447- #15023 Restore RPC Console to non-wallet tray icon menu (luke-jr)
448- #15084 Don't disable the sync overlay when wallet is disabled (benthecarman)
449- #15098 Show addresses for "SendToSelf" transactions (hebasto)
450- #15756 Add shortcuts for tab tools (promag)
451- #16944 create PSBT with watch-only wallet (Sjors)
452- #16964 Change sendcoins dialogue Yes to Send (instagibbs)
453- #17068 Always generate `bitcoinstrings.cpp` on `make translate` (D4nte)
454- #17096 Rename debug window (Zero-1729)
455- #17105 Make RPCConsole::TabTypes an enum class (promag)
456- #17125 Add toolTip and placeholderText to sign message fields (dannmat)
457- #17165 Remove BIP70 support (fanquake)
458- #17180 Improved tooltip for send amount field (JeremyCrookshank)
459- #17186 Add placeholder text to the sign message field (Danny-Scott)
460- #17195 Send amount placeholder value (JeremyCrookshank)
461- #17226 Fix payAmount tooltip in SendCoinsEntry (promag)
462- #17360 Cleaning up hide button tool tip (Danny-Scott)
463- #17446 Changed tooltip for 'Label' & 'Message' text fields to be more clear (dannmat)
464- #17453 Fix intro dialog labels when the prune button is toggled (hebasto)
465- #17474 Bugfix: GUI: Recognise `NETWORK_LIMITED` in formatServicesStr (luke-jr)
466- #17492 Bump fee returns PSBT on clipboard for watchonly-only wallets (instagibbs)
467- #17567 Remove macOS start on login code (fanquake)
468- #17587 Show watch-only balance in send screen (Sjors)
469- #17694 Disable 3rd-party tx-urls when wallet disabled (brakmic)
470- #17696 Force set nPruneSize in QSettings after the intro dialog (hebasto)
471- #17702 Move static placeholder texts to forms (laanwj)
472- #17826 Log Qt related info (hebasto)
473- #17886 Restore English translation option (achow101)
474- #17906 Set CConnman byte counters earlier to avoid uninitialized reads (ryanofsky)
475- #17935 Hide HD & encryption icons when no wallet loaded (brakmic)
476- #17998 Shortcut to close ModalOverlay (emilengler)
477- #18007 Bugfix: GUI: Hide the HD/encrypt icons earlier so they get re-shown if another wallet is open (luke-jr)
478- #18060 Drop PeerTableModel dependency to ClientModel (promag)
479- #18062 Fix unintialized WalletView::progressDialog (promag)
480- #18091 Pass clientmodel changes from walletframe to walletviews (jonasschnelli)
481- #18101 Fix deprecated QCharRef usage (hebasto)
482- #18121 Throttle GUI update pace when -reindex (hebasto)
483- #18123 Fix race in WalletModel::pollBalanceChanged (ryanofsky)
484- #18160 Avoid Wallet::GetBalance in WalletModel::pollBalanceChanged (promag)
485- #18360 Bump transifex slug and update English translations for 0.20 (laanwj)
486- #18402 Display mapped AS in peers info window (jonatack)
487- #18492 Translations update pre-branch (laanwj)
488- #18549 Fix Window -> Minimize menu item (hebasto)
489- #18578 Fix leak in CoinControlDialog::updateView (promag)
490- #18894 Fix manual coin control with multiple wallets loaded (promag)
491
492### Build system
493- #16667 Remove mingw linker workaround from win gitian descriptor (fanquake)
494- #16669 Use new fork of osslsigncode for windows gitian signing (fanquake)
495- #16949 Only pass --disable-dependency-tracking to packages that understand it (fanquake)
496- #17008 Bump libevent to 2.1.11 in depends (stefanwouldgo)
497- #17029 gitian: Various improvements for windows descriptor (dongcarl)
498- #17033 Disable _FORTIFY_SOURCE when enable-debug (achow101)
499- #17057 Switch to upstream libdmg-hfsplus (fanquake)
500- #17066 Remove workaround for ancient libtool (hebasto)
501- #17074 Added double quotes (mztriz)
502- #17087 Add variable printing target to Makefiles (dongcarl)
503- #17118 depends macOS: point --sysroot to SDK (Sjors)
504- #17231 Fix boost mac cross build with clang 9+ (theuni)
505- #17265 Remove OpenSSL (fanquake)
506- #17284 Update retry to current version (RandyMcMillan)
507- #17308 nsis: Write to correct filename in first place (dongcarl)
508- #17324,#18099 Update univalue subtree (MarcoFalke)
509- #17398 Update leveldb to 1.22+ (laanwj)
510- #17409 Avoid hardcoded libfaketime dir in gitian (MarcoFalke)
511- #17466 Fix C{,XX} pickup (dongcarl)
512- #17483 Set gitian arch back to amd64 (MarcoFalke)
513- #17486 Make Travis catch unused variables (Sjors)
514- #17538 Bump minimum libc to 2.17 for release binaries (fanquake)
515- #17542 Create test utility library from src/test/util/ (brakmic)
516- #17545 Remove libanl.so.1 from ALLOWED_LIBRARIES (fanquake)
517- #17547 Fix configure report about qr (hebasto)
518- #17569 Allow export of environ symbols and work around rv64 toolchain issue (laanwj)
519- #17647 lcov: filter depends from coverage reports (nijynot)
520- #17658 Add ability to skip building qrencode (fanquake)
521- #17678 Support for S390X and POWER targets (MarcoFalke)
522- #17682 util: Update tinyformat to upstream (laanwj)
523- #17698 Don't configure `xcb_proto` (fanquake)
524- #17730 Remove Qt networking features (fanquake)
525- #17738 Remove linking librt for backwards compatibility (fanquake)
526- #17740 Remove configure checks for win libraries we don't link against (fanquake)
527- #17741 Included `test_bitcoin-qt` in msvc build (sipsorcery)
528- #17756 Remove `WINDOWS_BITS` from build system (fanquake)
529- #17769 Set `AC_PREREQ` to 2.69 (fanquake)
530- #17880 Add -Wdate-time to Werror flags (fanquake)
531- #17910 Remove double `LIBBITCOIN_SERVER` linking (fanquake)
532- #17928 Consistent use of package variable (Bushstar)
533- #17933 guix: Pin Guix using `guix time-machine` (dongcarl)
534- #17948 pass -fno-ident in Windows gitian descriptor (fanquake)
535- #18003 Remove --large-address-aware linker flag (fanquake)
536- #18004 Don't embed a build-id when building libdmg-hfsplus (fanquake)
537- #18051 Fix behavior when `ALLOW_HOST_PACKAGES` unset (hebasto)
538- #18059 Add missing attributes to Win installer (fanquake)
539- #18104 Skip i686 build by default in guix and gitian (MarcoFalke)
540- #18107 Add `cov_fuzz` target (MarcoFalke)
541- #18135 Add --enable-determinism configure flag (fanquake)
542- #18145 Add Wreturn-type to Werror flags, check on more Travis machines (Sjors)
543- #18264 Remove Boost Chrono (fanquake)
544- #18290 Set minimum Automake version to 1.13 (hebasto)
545- #18320 guix: Remove now-unnecessary gcc make flag (dongcarl)
546- #18331 Use git archive as source tarball (hebasto)
547- #18397 Fix libevent linking for `bench_bitcoin` binary (hebasto)
548- #18426 scripts: `Previous_release`: improve behaviour on failed download (theStack)
549- #18429 Remove double `LIBBITCOIN_SERVER` from bench-Makefile (brakmic)
550- #18528 Create `test_fuzz` library from src/test/fuzz/fuzz.cpp (brakmic)
551- #18558 Fix boost detection for arch armv7l (hebasto)
552- #18598 gitian: Add missing automake package to gitian-win-signer.yml (achow101)
553- #18676 Check libevent minimum version in configure script (hebasto)
554- #18945 Ensure source tarball has leading directory name (laanwj)
555
556### Platform support
557- #16110 Add Android NDK support (icota)
558- #16392 macOS toolchain update (fanquake)
559- #16569 Increase init file stop timeout (setpill)
560- #17151 Remove OpenSSL PRNG seeding (Windows, Qt only) (fanquake)
561- #17365 Update README.md with working Android targets and API levels (icota)
562- #17521 Only use D-Bus with Qt on linux (fanquake)
563- #17550 Set minimum supported macOS to 10.12 (fanquake)
564- #17592 Appveyor install libevent[thread] vcpkg (sipsorcery)
565- #17660 Remove deprecated key from macOS Info.plist (fanquake)
566- #17663 Pass `-dead_strip_dylibs` to ld on macOS (fanquake)
567- #17676 Don't use OpenGL in Qt on macOS (fanquake)
568- #17686 Add `-bind_at_load` to macOS hardened LDFLAGS (fanquake)
569- #17787 scripts: Add macho pie check to security-check.py (fanquake)
570- #17800 random: don't special case clock usage on macOS (fanquake)
571- #17863 scripts: Add macho dylib checks to symbol-check.py (fanquake)
572- #17899 msvc: Ignore msvc linker warning and update to msvc build instructions (sipsorcery)
573- #17916 windows: Enable heap terminate-on-corruption (fanquake)
574- #18082 logging: Enable `thread_local` usage on macos (fanquake)
575- #18108 Fix `.gitignore` policy in `build_msvc` directory (hebasto)
576- #18295 scripts: Add macho lazy bindings check to security-check.py (fanquake)
577- #18358 util: Fix compilation with mingw-w64 7.0.0 (fanquake)
578- #18359 Fix sysctl() detection on macOS (fanquake)
579- #18364 random: remove getentropy() fallback for macOS < 10.12 (fanquake)
580- #18395 scripts: Add pe dylib checking to symbol-check.py (fanquake)
581- #18415 scripts: Add macho tests to test-security-check.py (fanquake)
582- #18425 releases: Update with new Windows code signing certificate (achow101)
583- #18702 Fix ASLR for bitcoin-cli on Windows (fanquake)
584
585### Tests and QA
586- #12134 Build previous releases and run functional tests (Sjors)
587- #13693 Add coverage to estimaterawfee and estimatesmartfee (Empact)
588- #13728 lint: Run the ci lint stage on mac (Empact)
589- #15443 Add getdescriptorinfo functional test (promag)
590- #15888 Add `wallet_implicitsegwit` to test the ability to transform keys between address types (luke-jr)
591- #16540 Add `ASSERT_DEBUG_LOG` to unit test framework (MarcoFalke)
592- #16597 travis: Run full test suite on native macos (Sjors)
593- #16681 Use self.chain instead of 'regtest' in all current tests (jtimon)
594- #16786 add unit test for wallet watch-only methods involving PubKeys (theStack)
595- #16943 Add generatetodescriptor RPC (MarcoFalke)
596- #16973 Fix `combine_logs.py` for AppVeyor build (mzumsande)
597- #16975 Show debug log on unit test failure (MarcoFalke)
598- #16978 Seed test RNG context for each test case, print seed (MarcoFalke)
599- #17009, #17018, #17050, #17051, #17071, #17076, #17083, #17093, #17109, #17113, #17136, #17229, #17291, #17357, #17771, #17777, #17917, #17926, #17972, #17989, #17996, #18009, #18029, #18047, #18126, #18176, #18206, #18353, #18363, #18407, #18417, #18423, #18445, #18455, #18565 Add fuzzing harnesses (practicalswift)
600- #17011 ci: Use busybox utils for one build (MarcoFalke)
601- #17030 Fix Python Docstring to include all Args (jbampton)
602- #17041 ci: Run tests on arm (MarcoFalke)
603- #17069 Pass fuzzing inputs as constant references (practicalswift)
604- #17091 Add test for loadblock option and linearize scripts (fjahr)
605- #17108 fix "tx-size-small" errors after default address change (theStack)
606- #17121 Speed up `wallet_backup` by whitelisting peers (immediate tx relay) (theStack)
607- #17124 Speed up `wallet_address_types` by whitelisting peers (immediate tx relay) (theStack)
608- #17140 Fix bug in `blockfilter_index_tests` (jimpo)
609- #17199 use default address type (bech32) for `wallet_bumpfee` tests (theStack)
610- #17205 ci: Enable address sanitizer (asan) stack-use-after-return checking (practicalswift)
611- #17206 Add testcase to simulate bitcoin schema in leveldb (adamjonas)
612- #17209 Remove no longer needed UBSan suppressions (issues fixed). Add documentation (practicalswift)
613- #17220 Add unit testing for the CompressScript function (adamjonas)
614- #17225 Test serialisation as part of deserialisation fuzzing. Test round-trip equality where possible (practicalswift)
615- #17228 Add RegTestingSetup to `setup_common` (MarcoFalke)
616- #17233 travis: Run unit and functional tests on native arm (MarcoFalke)
617- #17235 Skip unnecessary fuzzer initialisation. Hold ECCVerifyHandle only when needed (practicalswift)
618- #17240 ci: Disable functional tests on mac host (MarcoFalke)
619- #17254 Fix `script_p2sh_tests` `OP_PUSHBACK2/4` missing (adamjonas)
620- #17267 bench: Fix negative values and zero for -evals flag (nijynot)
621- #17275 pubkey: Assert CPubKey's ECCVerifyHandle precondition (practicalswift)
622- #17288 Added TestWrapper class for interactive Python environments (jachiang)
623- #17292 Add new mempool benchmarks for a complex pool (JeremyRubin)
624- #17299 add reason checks for non-standard txs in `test_IsStandard` (theStack)
625- #17322 Fix input size assertion in `wallet_bumpfee.py` (instagibbs)
626- #17327 Add `rpc_fundrawtransaction` logging (jonatack)
627- #17330 Add `shrinkdebugfile=0` to regtest bitcoin.conf (sdaftuar)
628- #17340 Speed up fundrawtransaction test (jnewbery)
629- #17345 Do not instantiate CAddrDB for static call CAddrDB::Read() (hebasto)
630- #17362 Speed up `wallet_avoidreuse`, add logging (jonatack)
631- #17363 add "diamond" unit test to MempoolAncestryTests (theStack)
632- #17366 Reset global args between test suites (MarcoFalke)
633- #17367 ci: Run non-cross-compile builds natively (MarcoFalke)
634- #17378 TestShell: Fix typos & implement cleanups (jachiang)
635- #17384 Create new test library (MarcoFalke)
636- #17387 `wallet_importmulti`: use addresses of the same type as being imported (achow101)
637- #17388 Add missing newline in `util_ChainMerge` test (ryanofsky)
638- #17390 Add `util_ArgParsing` test (ryanofsky)
639- #17420 travis: Rework `cache_err_msg` (MarcoFalke)
640- #17423 ci: Make ci system read-only on the git work tree (MarcoFalke)
641- #17435 check custom ancestor limit in `mempool_packages.py` (theStack)
642- #17455 Update valgrind suppressions (practicalswift)
643- #17461 Check custom descendant limit in `mempool_packages.py` (theStack)
644- #17469 Remove fragile `assert_memory_usage_stable` (MarcoFalke)
645- #17470 ci: Use clang-8 for fuzzing to run on aarch64 ci systems (MarcoFalke)
646- #17480 Add unit test for non-standard txs with too large scriptSig (theStack)
647- #17497 Skip tests when utils haven't been compiled (fanquake)
648- #17502 Add unit test for non-standard bare multisig txs (theStack)
649- #17511 Add bounds checks before base58 decoding (sipa)
650- #17517 ci: Bump to clang-8 for asan build to avoid segfaults on ppc64le (MarcoFalke)
651- #17522 Wait until mempool is loaded in `wallet_abandonconflict` (MarcoFalke)
652- #17532 Add functional test for non-standard txs with too large scriptSig (theStack)
653- #17541 Add functional test for non-standard bare multisig txs (theStack)
654- #17555 Add unit test for non-standard txs with wrong nVersion (dspicher)
655- #17571 Add `libtest_util` library to msvc build configuration (sipsorcery)
656- #17591 ci: Add big endian platform - s390x (elichai)
657- #17593 Move more utility functions into test utility library (mzumsande)
658- #17633 Add option --valgrind to run the functional tests under Valgrind (practicalswift)
659- #17635 ci: Add centos 7 build (hebasto)
660- #17641 Add unit test for leveldb creation with unicode path (sipsorcery)
661- #17674 Add initialization order fiasco detection in Travis (practicalswift)
662- #17675 Enable tests which are incorrectly skipped when running `test_runner.py --usecli` (practicalswift)
663- #17685 Fix bug in the descriptor parsing fuzzing harness (`descriptor_parse`) (practicalswift)
664- #17705 re-enable CLI test support by using EncodeDecimal in json.dumps() (fanquake)
665- #17720 add unit test for non-standard "scriptsig-not-pushonly" txs (theStack)
666- #17767 ci: Fix qemu issues (MarcoFalke)
667- #17793 ci: Update github actions ci vcpkg cache on msbuild update (hebasto)
668- #17806 Change filemode of `rpc_whitelist.py` (emilengler)
669- #17849 ci: Fix brew python link (hebasto)
670- #17851 Add `std::to_string` to list of locale dependent functions (practicalswift)
671- #17893 Fix double-negative arg test (hebasto)
672- #17900 ci: Combine 32-bit build with centos 7 build (theStack)
673- #17921 Test `OP_CSV` empty stack fail in `feature_csv_activation.py` (theStack)
674- #17931 Fix `p2p_invalid_messages` failing in Python 3.8 because of warning (elichai)
675- #17947 add unit test for non-standard txs with too large tx size (theStack)
676- #17959 Check specific reject reasons in `feature_csv_activation.py` (theStack)
677- #17984 Add p2p test for forcerelay permission (MarcoFalke)
678- #18001 Updated appveyor job to checkout a specific vcpkg commit ID (sipsorcery)
679- #18008 fix fuzzing using libFuzzer on macOS (fanquake)
680- #18013 bench: Fix benchmarks filters (elichai)
681- #18018 reset fIsBareMultisigStd after bare-multisig tests (fanquake)
682- #18022 Fix appveyor `test_bitcoin` build of `*.raw` (MarcoFalke)
683- #18037 util: Allow scheduler to be mocked (amitiuttarwar)
684- #18056 ci: Check for submodules (emilengler)
685- #18069 Replace 'regtest' leftovers by self.chain (theStack)
686- #18081 Set a name for CI Docker containers (fanquake)
687- #18109 Avoid hitting some known minor tinyformat issues when fuzzing strprintf(…) (practicalswift)
688- #18155 Add harness which fuzzes EvalScript and VerifyScript using a fuzzed signature checker (practicalswift)
689- #18159 Add --valgrind option to `test/fuzz/test_runner.py` for running fuzzing test cases under valgrind (practicalswift)
690- #18166 ci: Run fuzz testing test cases (bitcoin-core/qa-assets) under valgrind to catch memory errors (practicalswift)
691- #18172 Transaction expiry from mempool (0xB10C)
692- #18181 Remove incorrect assumptions in `validation_flush_tests` (MarcoFalke)
693- #18183 Set `catch_system_errors=no` on boost unit tests (MarcoFalke)
694- #18195 Add `cost_of_change` parameter assertions to `bnb_search_test` (yancyribbens)
695- #18209 Reduce unneeded whitelist permissions in tests (MarcoFalke)
696- #18211 Disable mockforward scheduler unit test for now (MarcoFalke)
697- #18213 Fix race in `p2p_segwit` (MarcoFalke)
698- #18224 Make AnalyzePSBT next role calculation simple, correct (instagibbs)
699- #18228 Add missing syncwithvalidationinterfacequeue (MarcoFalke)
700- #18247 Wait for both veracks in `add_p2p_connection` (MarcoFalke)
701- #18249 Bump timeouts to accomodate really slow disks (MarcoFalke)
702- #18255 Add `bad-txns-*-toolarge` test cases to `invalid_txs` (MarcoFalke)
703- #18263 rpc: change setmocktime check to use IsMockableChain (gzhao408)
704- #18285 Check that `wait_until` returns if time point is in the past (MarcoFalke)
705- #18286 Add locale fuzzer to `FUZZERS_MISSING_CORPORA` (practicalswift)
706- #18292 fuzz: Add `assert(script == decompressed_script)` (MarcoFalke)
707- #18299 Update `FUZZERS_MISSING_CORPORA` to enable regression fuzzing for all harnesses in master (practicalswift)
708- #18300 fuzz: Add option to merge input dir to test runner (MarcoFalke)
709- #18305 Explain why test logging should be used (MarcoFalke)
710- #18306 Add logging to `wallet_listsinceblock.py` (jonatack)
711- #18311 Bumpfee test fix (instagibbs)
712- #18314 Add deserialization fuzzing of SnapshotMetadata (`utxo_snapshot`) (practicalswift)
713- #18319 fuzz: Add missing `ECC_Start` to `key_io` test (MarcoFalke)
714- #18334 Add basic test for BIP 37 (MarcoFalke)
715- #18350 Fix mining to an invalid target + ensure that a new block has the correct hash internally (TheQuantumPhysicist)
716- #18378 Bugfix & simplify bn2vch using `int.to_bytes` (sipa)
717- #18393 Don't assume presence of `__builtin_mul_overflow(…)` in `MultiplicationOverflow(…)` fuzzing harness (practicalswift)
718- #18406 add executable flag for `rpc_estimatefee.py` (theStack)
719- #18420 listsinceblock block height checks (jonatack)
720- #18430 ci: Only clone bitcoin-core/qa-assets when fuzzing (MarcoFalke)
721- #18438 ci: Use homebrew addon on native macos (hebasto)
722- #18447 Add coverage for script parse error in ParseScript (pierreN)
723- #18472 Remove unsafe `BOOST_TEST_MESSAGE` (MarcoFalke)
724- #18474 check that peer is connected when calling sync_* (MarcoFalke)
725- #18477 ci: Use focal for fuzzers (MarcoFalke)
726- #18481 add BIP37 'filterclear' test to p2p_filter.py (theStack)
727- #18496 Remove redundant `sync_with_ping` after `add_p2p_connection` (jonatack)
728- #18509 fuzz: Avoid running over all inputs after merging them (MarcoFalke)
729- #18510 fuzz: Add CScriptNum::getint coverage (MarcoFalke)
730- #18514 remove rapidcheck integration and tests (fanquake)
731- #18515 Add BIP37 remote crash bug [CVE-2013-5700] test to `p2p_filter.py` (theStack)
732- #18516 relax bumpfee `dust_to_fee` txsize an extra vbyte (jonatack)
733- #18518 fuzz: Extend descriptor fuzz test (MarcoFalke)
734- #18519 fuzz: Extend script fuzz test (MarcoFalke)
735- #18521 fuzz: Add `process_messages` harness (MarcoFalke)
736- #18529 Add fuzzer version of randomized prevector test (sipa)
737- #18534 skip backwards compat tests if not compiled with wallet (fanquake)
738- #18540 `wallet_bumpfee` assertion fixup (jonatack)
739- #18543 Use one node to avoid a race due to missing sync in `rpc_signrawtransaction` (MarcoFalke)
740- #18561 Properly raise FailedToStartError when rpc shutdown before warmup finished (MarcoFalke)
741- #18562 ci: Run unit tests sequential once (MarcoFalke)
742- #18563 Fix `unregister_all_during_call` cleanup (ryanofsky)
743- #18566 Set `-use_value_profile=1` when merging fuzz inputs (MarcoFalke)
744- #18757 Remove enumeration of expected deserialization exceptions in ProcessMessage(…) fuzzer (practicalswift)
745- #18878 Add test for conflicted wallet tx notifications (ryanofsky)
746- #18975 Remove const to work around compiler error on xenial (laanwj)
747
748### Documentation
749- #16947 Doxygen-friendly script/descriptor.h comments (ch4ot1c)
750- #16983 Add detailed info about Bitcoin Core files (hebasto)
751- #16986 Doxygen-friendly CuckooCache comments (ch4ot1c)
752- #17022 move-only: Steps for "before major release branch-off" (MarcoFalke)
753- #17026 Update bips.md for default bech32 addresses in 0.20.0 (MarcoFalke)
754- #17081 Fix Makefile target in benchmarking.md (theStack)
755- #17102 Add missing indexes/blockfilter/basic to doc/files.md (MarcoFalke)
756- #17119 Fix broken bitcoin-cli examples (andrewtoth)
757- #17134 Add switch on enum example to developer notes (hebasto)
758- #17142 Update macdeploy README to include all files produced by `make deploy` (za-kk)
759- #17146 github: Add warning for bug reports (laanwj)
760- #17157 Added instructions for how to add an upsteam to forked repo (dannmat)
761- #17159 Add a note about backporting (carnhofdaki)
762- #17169 Correct function name in ReportHardwareRand() (fanquake)
763- #17177 Describe log files + consistent paths in test READMEs (fjahr)
764- #17239 Changed miniupnp links to https (sandakersmann)
765- #17281 Add developer note on `c_str()` (laanwj)
766- #17285 Bip70 removal follow-up (fjahr)
767- #17286 Fix help-debug -checkpoints (ariard)
768- #17309 update MSVC instructions to remove Qt OpenSSL linking (fanquake)
769- #17339 Add template for good first issues (michaelfolkson)
770- #17351 Fix some misspellings (RandyMcMillan)
771- #17353 Add ShellCheck to lint tests dependencies (hebasto)
772- #17370 Update doc/bips.md with recent changes in master (MarcoFalke)
773- #17393 Added regtest config for linearize script (gr0kchain)
774- #17411 Add some better examples for scripted diff (laanwj)
775- #17503 Remove bitness from bitcoin-qt help message and manpage (laanwj)
776- #17539 Update and improve Developer Notes (hebasto)
777- #17561 Changed MiniUPnPc link to https in dependencies.md (sandakersmann)
778- #17596 Change doxygen URL to doxygen.bitcoincore.org (laanwj)
779- #17598 Update release process with latest changes (MarcoFalke)
780- #17617 Unify unix epoch time descriptions (jonatack)
781- #17637 script: Add keyserver to verify-commits readme (emilengler)
782- #17648 Rename wallet-tool references to bitcoin-wallet (hel-o)
783- #17688 Add "ci" prefix to CONTRIBUTING.md (hebasto)
784- #17751 Use recommended shebang approach in documentation code block (hackerrdave)
785- #17752 Fix directory path for secp256k1 subtree in developer-notes (hackerrdave)
786- #17772 Mention PR Club in CONTRIBUTING.md (emilengler)
787- #17804 Misc RPC help fixes (MarcoFalke)
788- #17819 Developer notes guideline on RPCExamples addresses (jonatack)
789- #17825 Update dependencies.md (hebasto)
790- #17873 Add to Doxygen documentation guidelines (jonatack)
791- #17907 Fix improper Doxygen inline comments (Empact)
792- #17942 Improve fuzzing docs for macOS users (fjahr)
793- #17945 Fix doxygen errors (Empact)
794- #18025 Add missing supported rpcs to doc/descriptors.md (andrewtoth)
795- #18070 Add note about `brew doctor` (givanse)
796- #18125 Remove PPA note from release-process.md (fanquake)
797- #18170 Minor grammatical changes and flow improvements (travinkeith)
798- #18212 Add missing step in win deployment instructions (dangershony)
799- #18219 Add warning against wallet.dat re-use (corollari)
800- #18253 Correct spelling errors in comments (Empact)
801- #18278 interfaces: Describe and follow some code conventions (ryanofsky)
802- #18283 Explain rebase policy in CONTRIBUTING.md (MarcoFalke)
803- #18340 Mention MAKE=gmake workaround when building on a BSD (fanquake)
804- #18341 Replace remaining literal BTC with `CURRENCY_UNIT` (domob1812)
805- #18342 Add fuzzing quickstart guides for libFuzzer and afl-fuzz (practicalswift)
806- #18344 Fix nit in getblockchaininfo (stevenroose)
807- #18379 Comment fix merkle.cpp (4d55397500)
808- #18382 note the costs of fetching all pull requests (vasild)
809- #18391 Update init and reduce-traffic docs for -blocksonly (glowang)
810- #18464 Block-relay-only vs blocksonly (MarcoFalke)
811- #18486 Explain new test logging (MarcoFalke)
812- #18505 Update webchat URLs in README.md (SuriyaaKudoIsc)
813- #18513 Fix git add argument (HashUnlimited)
814- #18577 Correct scripted-diff example link (yahiheb)
815- #18589 Fix naming of macOS SDK and clarify version (achow101)
816
817### Miscellaneous
818- #15600 lockedpool: When possible, use madvise to avoid including sensitive information in core dumps (luke-jr)
819- #15934 Merge settings one place instead of five places (ryanofsky)
820- #16115 On bitcoind startup, write config args to debug.log (LarryRuane)
821- #16117 util: Replace boost sleep with std sleep (MarcoFalke)
822- #16161 util: Fix compilation errors in support/lockedpool.cpp (jkczyz)
823- #16802 scripts: In linearize, search for next position of magic bytes rather than fail (takinbo)
824- #16889 Add some general std::vector utility functions (sipa)
825- #17049 contrib: Bump gitian descriptors for 0.20 (MarcoFalke)
826- #17052 scripts: Update `copyright_header` script to include additional files (GChuf)
827- #17059 util: Simplify path argument for cblocktreedb ctor (hebasto)
828- #17191 random: Remove call to `RAND_screen()` (Windows only) (fanquake)
829- #17192 util: Add `check_nonfatal` and use it in src/rpc (MarcoFalke)
830- #17218 Replace the LogPrint function with a macro (jkczyz)
831- #17266 util: Rename decodedumptime to parseiso8601datetime (elichai)
832- #17270 Feed environment data into RNG initializers (sipa)
833- #17282 contrib: Remove accounts from bash completion (fanquake)
834- #17293 Add assertion to randrange that input is not 0 (JeremyRubin)
835- #17325 log: Fix log message for -par=1 (hebasto)
836- #17329 linter: Strip trailing / in path for git-subtree-check (jnewbery)
837- #17336 scripts: Search for first block file for linearize-data with some block files pruned (Rjected)
838- #17361 scripts: Lint gitian descriptors with shellcheck (hebasto)
839- #17482 util: Disallow network-qualified command line options (ryanofsky)
840- #17507 random: mark RandAddPeriodic and SeedPeriodic as noexcept (fanquake)
841- #17527 Fix CPUID subleaf iteration (sipa)
842- #17604 util: Make schedulebatchpriority advisory only (fanquake)
843- #17650 util: Remove unwanted fields from bitcoin-cli -getinfo (malevolent)
844- #17671 script: Fixed wget call in gitian-build.py (willyko)
845- #17699 Make env data logging optional (sipa)
846- #17721 util: Don't allow base58 decoding of non-base58 strings. add base58 tests (practicalswift)
847- #17750 util: Change getwarnings parameter to bool (jnewbery)
848- #17753 util: Don't allow base32/64-decoding or parsemoney(…) on strings with embedded nul characters. add tests (practicalswift)
849- #17823 scripts: Read suspicious hosts from a file instead of hardcoding (sanjaykdragon)
850- #18162 util: Avoid potential uninitialized read in `formatiso8601datetime(int64_t)` by checking `gmtime_s`/`gmtime_r` return value (practicalswift)
851- #18167 Fix a violation of C++ standard rules where unions are used for type-punning (TheQuantumPhysicist)
852- #18225 util: Fail to parse empty string in parsemoney (MarcoFalke)
853- #18270 util: Fail to parse whitespace-only strings in parsemoney(…) (instead of parsing as zero) (practicalswift)
854- #18316 util: Helpexamplerpc formatting (jonatack)
855- #18357 Fix missing header in sync.h (promag)
856- #18412 script: Fix `script_err_sig_pushonly` error string (theStack)
857- #18416 util: Limit decimal range of numbers parsescript accepts (pierreN)
858- #18503 init: Replace `URL_WEBSITE` with `PACKAGE_URL` (MarcoFalke)
859- #18526 Remove PID file at the very end (hebasto)
860- #18553 Avoid non-trivial global constants in SHA-NI code (sipa)
861- #18665 Do not expose and consider `-logthreadnames` when it does not work (hebasto)
862
863Credits
864=======
865
866Thanks to everyone who directly contributed to this release:
867
868- 0xb10c
869- 251
870- 4d55397500
871- Aaron Clauson
872- Adam Jonas
873- Albert
874- Amiti Uttarwar
875- Andrew Chow
876- Andrew Toth
877- Anthony Towns
878- Antoine Riard
879- Ava Barron
880- Ben Carman
881- Ben Woosley
882- Block Mechanic
883- Brian Solon
884- Bushstar
885- Carl Dong
886- Carnhof Daki
887- Cory Fields
888- Daki Carnhof
889- Dan Gershony
890- Daniel Kraft
891- dannmat
892- Danny-Scott
893- darosior
894- David O'Callaghan
895- Dominik Spicher
896- Elichai Turkel
897- Emil Engler
898- emu
899- Fabian Jahr
900- fanquake
901- Filip Gospodinov
902- Franck Royer
903- Gastón I. Silva
904- gchuf
905- Gleb Naumenko
906- Gloria Zhao
907- glowang
908- Gr0kchain
909- Gregory Sanders
910- hackerrdave
911- Harris
912- hel0
913- Hennadii Stepanov
914- ianliu
915- Igor Cota
916- James Chiang
917- James O'Beirne
918- Jan Beich
919- Jan Sarenik
920- Jeffrey Czyz
921- Jeremy Rubin
922- JeremyCrookshank
923- Jim Posen
924- John Bampton
925- John L. Jegutanis
926- John Newbery
927- Jon Atack
928- Jon Layton
929- Jonas Schnelli
930- João Barbosa
931- Jorge Timón
932- Karl-Johan Alm
933- kodslav
934- Larry Ruane
935- Luke Dashjr
936- malevolent
937- MapleLaker
938- marcaiaf
939- MarcoFalke
940- Marius Kjærstad
941- Mark Erhardt
942- Mark Tyneway
943- Martin Erlandsson
944- Martin Zumsande
945- Matt Corallo
946- Matt Ward
947- Michael Folkson
948- Michael Polzer
949- Micky Yun Chan
950- Neha Narula
951- nijynot
952- naumenkogs
953- NullFunctor
954- Peter Bushnell
955- pierrenn
956- Pieter Wuille
957- practicalswift
958- randymcmillan
959- Rjected
960- Russell Yanofsky
961- Samer Afach
962- Samuel Dobson
963- Sanjay K
964- Sebastian Falbesoner
965- setpill
966- Sjors Provoost
967- Stefan Richter
968- stefanwouldgo
969- Steven Roose
970- Suhas Daftuar
971- Suriyaa Sundararuban
972- TheCharlatan
973- Tim Akinbo
974- Travin Keith
975- tryphe
976- Vasil Dimov
977- Willy Ko
978- Wilson Ccasihue S
979- Wladimir J. van der Laan
980- Yahia Chiheb
981- Yancy Ribbens
982- Yusuf Sahin HAMZA
983- Zakk
984- Zero
985
986As well as to everyone that helped with translations on
987[Transifex](https://www.transifex.com/bitcoin/bitcoin/).
988