Skip to content

Commit 425e06a

Browse files
committed
Bitcoin Core 28.3
1 parent a648bcc commit 425e06a

File tree

2 files changed

+172
-0
lines changed

2 files changed

+172
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: Bitcoin Core 28.3 released
3+
name: blog-release-28.3
4+
id: en-blog-release-28.3
5+
lang: en
6+
type: posts
7+
layout: post
8+
9+
## If this is a new post, reset this counter to 1.
10+
version: 1
11+
12+
## Only true if release announcement or security annoucement. English posts only
13+
announcement: 1
14+
15+
excerpt: >
16+
Bitcoin Core 28.3 is now available.
17+
---
18+
Bitcoin Core version 28.3 is now available for [download][download
19+
page]. See the [release notes][] for more information about the
20+
bug fixes in this release.
21+
22+
If you have any questions, please stop by the #bitcoin IRC chatroom
23+
([IRC][irc], [web][web irc]) and we’ll do our best to help you.
24+
25+
[release notes]: /en/releases/28.3/
26+
[IRC]: irc://irc.libera.chat/bitcoin
27+
[web irc]: https://web.libera.chat/#bitcoin
28+
[download page]: /en/download
29+
30+
{% include references.md %}

_releases/28.3.md

Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
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

Comments
 (0)