|
| 1 | +--- |
| 2 | +title: Bitcoin Core 28.3 |
| 3 | +id: en-release-28.3 |
| 4 | +name: release-28.3 |
| 5 | +permalink: /en/releases/28.3/ |
| 6 | +excerpt: Bitcoin Core version 28.3 is now available |
| 7 | +date: 2025-10-17 |
| 8 | + |
| 9 | +## Use a YAML array for the version number to allow other parts of the |
| 10 | +## site to correctly sort in "natural sort of version numbers". |
| 11 | +## Use the same number of elements as decimal places, e.g. "0.1.2 => [0, |
| 12 | +## 1, 2]" versus "1.2 => [1, 2]" |
| 13 | +release: [28, 3] |
| 14 | + |
| 15 | +## Optional magnet link. To get it, open the torrent in a good BitTorrent client |
| 16 | +## and View Details, or install the transmission-cli Debian/Ubuntu package |
| 17 | +## and run: transmission-show -m <torrent file> |
| 18 | +# |
| 19 | +## Link should be enclosed in quotes and start with: "magnet:? |
| 20 | +optional_magnetlink: "TODO" |
| 21 | + |
| 22 | +# Note: it is recommended to check all links to ensure they use |
| 23 | +# absolute urls (https://github.com/bitcoin/bitcoin/doc/foo) |
| 24 | +# rather than relative urls (/bitcoin/bitcoin/doc/foo). |
| 25 | +--- |
| 26 | +{% include download.html %} |
| 27 | +{% githubify https://github.com/bitcoin/bitcoin %} |
| 28 | +28.3 Release Notes |
| 29 | +===================== |
| 30 | + |
| 31 | +Bitcoin Core version 28.3 is now available from: |
| 32 | + |
| 33 | + <https://bitcoincore.org/bin/bitcoin-core-28.3/> |
| 34 | + |
| 35 | +This release includes various bug fixes and performance |
| 36 | +improvements, as well as updated translations. |
| 37 | + |
| 38 | +Please report bugs using the issue tracker at GitHub: |
| 39 | + |
| 40 | + <https://github.com/bitcoin/bitcoin/issues> |
| 41 | + |
| 42 | +To receive security and update notifications, please subscribe to: |
| 43 | + |
| 44 | + <https://bitcoincore.org/en/list/announcements/join/> |
| 45 | + |
| 46 | +How to Upgrade |
| 47 | +============== |
| 48 | + |
| 49 | +If you are running an older version, shut it down. Wait until it has completely |
| 50 | +shut down (which might take a few minutes in some cases), then run the |
| 51 | +installer (on Windows) or just copy over `/Applications/Bitcoin-Qt` (on macOS) |
| 52 | +or `bitcoind`/`bitcoin-qt` (on Linux). |
| 53 | + |
| 54 | +Upgrading directly from a version of Bitcoin Core that has reached its EOL is |
| 55 | +possible, but it might take some time if the data directory needs to be migrated. Old |
| 56 | +wallet versions of Bitcoin Core are generally supported. |
| 57 | + |
| 58 | +Compatibility |
| 59 | +============== |
| 60 | + |
| 61 | +Bitcoin Core is supported and extensively tested on operating systems |
| 62 | +using the Linux Kernel 3.17+, macOS 11.0+, and Windows 7 and newer. Bitcoin |
| 63 | +Core should also work on most other UNIX-like systems but is not as |
| 64 | +frequently tested on them. It is not recommended to use Bitcoin Core on |
| 65 | +unsupported systems. |
| 66 | + |
| 67 | +Notable changes |
| 68 | +=============== |
| 69 | + |
| 70 | +### Mempool & Policy |
| 71 | + |
| 72 | + The minimum block feerate (`-blockmintxfee`) has been changed to 1 satoshi per kvB. It can still be changed using the |
| 73 | +configuration option. |
| 74 | + |
| 75 | +- The default minimum relay feerate (`-minrelaytxfee`) and incremental relay feerate (`-incrementalrelayfee`) have been |
| 76 | +changed to 100 satoshis per kvB. They can still be changed using their respective configuration options, but it is |
| 77 | +recommended to change both together if you decide to do so. |
| 78 | + - Other minimum feerates (e.g. the dust feerate, the minimum returned by the fee estimator, and all feerates used by |
| 79 | + the wallet) remain unchanged. The mempool minimum feerate still changes in response to high volume. |
| 80 | + - Note that unless these lower defaults are widely adopted across the network, transactions created with lower fee |
| 81 | + rates are not guaranteed to propagate or confirm. The wallet feerates remain unchanged; `-mintxfee` must be changed |
| 82 | + before attempting to create transactions with lower feerates using the wallet. |
| 83 | + |
| 84 | +- #33106 policy: lower the default blockmintxfee, incrementalrelayfee, minrelaytxfee |
| 85 | +- #33504 mempool: Do not enforce TRUC checks on reorg |
| 86 | + |
| 87 | +### P2P |
| 88 | + |
| 89 | +- #33395 net: do not apply whitelist permissions to onion inbounds |
| 90 | + |
| 91 | +### Test |
| 92 | + |
| 93 | +- #32765 test: Fix list index out of range error in feature_bip68_sequence.py |
| 94 | +- #33001 test: Do not pass tests on unhandled exceptions |
| 95 | +- #30125 test: improve BDB parser (handle internal/overflow pages, support all page sizes) |
| 96 | +- #30948 test: Add missing sync_mempools() to fill_mempool() |
| 97 | +- #30784 test: add BulkTransaction helper to unit test transaction utils |
| 98 | + |
| 99 | +### Build |
| 100 | + |
| 101 | +- #32678 guix: warn and abort when SOURCE_DATE_EPOCH is set |
| 102 | +- #32943 depends: Force CMAKE_EXPORT_NO_PACKAGE_REGISTRY=TRUE |
| 103 | +- #33073 guix: warn SOURCE_DATE_EPOCH set in guix-codesign |
| 104 | +- #33563 build: fix depends Qt download link |
| 105 | + |
| 106 | +### Doc |
| 107 | + |
| 108 | +- #32776 doc: taproot became always active in v24.0 |
| 109 | +- #32777 doc: fix Transifex 404s |
| 110 | +- #33070 doc/zmq: fix unix socket path example |
| 111 | +- #33133 rpc: fix getpeerinfo ping duration unit docs |
| 112 | +- #33236 doc: Remove wrong and redundant doxygen tag |
| 113 | + |
| 114 | +### Misc |
| 115 | + |
| 116 | +- #33340 Fix benchmark CSV output |
| 117 | +- #33482 contrib: fix macOS deployment with no translations |
| 118 | +- #33581 ci: Properly include $FILE_ENV in DEPENDS_HASH |
| 119 | + |
| 120 | +Credits |
| 121 | +======= |
| 122 | + |
| 123 | +Thanks to everyone who directly contributed to this release: |
| 124 | +- 0xB10C |
| 125 | +- amisha |
| 126 | +- Ava Chow |
| 127 | +- fanquake |
| 128 | +- glozow |
| 129 | +- Hennadii Stepanov |
| 130 | +- MarcoFalke |
| 131 | +- Martin Zumsande |
| 132 | +- romanz |
| 133 | +- Sjors Provoost |
| 134 | +- theStack |
| 135 | +- Vasil Dimov |
| 136 | +- willcl-ark |
| 137 | +- zaidmstrr |
| 138 | + |
| 139 | +As well as to everyone that helped with translations on |
| 140 | +[Transifex](https://explore.transifex.com/bitcoin/bitcoin/). |
| 141 | + |
| 142 | +{% endgithubify %} |
0 commit comments